diff options
Diffstat (limited to 'openwrt/include')
| -rw-r--r-- | openwrt/include/package.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/openwrt/include/package.mk b/openwrt/include/package.mk index cf8756e..0996574 100644 --- a/openwrt/include/package.mk +++ b/openwrt/include/package.mk @@ -74,6 +74,7 @@ define Package/Default PRIORITY:=optional DEFAULT:= MENU:= + SUBMENU:= TITLE:= DESCRIPTION:= endef @@ -124,6 +125,11 @@ define BuildPackage echo "Menu: $(MENU)"; endif + ifneq ($(SUBMENU),) + DUMPINFO += \ + echo "Submenu: $(SUBMENU)"; + endif + ifneq ($(DEFAULT),) DUMPINFO += \ echo "Default: $(DEFAULT)"; |
