X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/d78cca2d997115db3ba82de619bb573e79e2ad98..2a701a93d2b276c1e5e2f3710d449c55686f8034:/target/imagebuilder/files/Makefile diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index eae3697e8..0d997d620 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -20,6 +20,7 @@ ifeq ($(KBUILD_VERBOSE),99) MAKE:=3>/dev/null $(MAKE) endif export IS_TTY=$(shell tty -s && echo 1 || echo 0) +export IMAGEBUILDER=1 # override variables from rules.mk PACKAGE_DIR:=$(TOPDIR)/packages @@ -34,10 +35,11 @@ IPKG:= \ define Profile/Default ID:= NAME:= + KCONFIG:= PACKAGES:= endef -define Profile +define AddProfile $(eval $(call Profile/Default)) $(eval $(call Profile/$(1))) ifneq ($(ID),) @@ -46,8 +48,10 @@ define Profile endif $(ID)_NAME:=$(NAME) $(ID)_PACKAGES:=$(PACKAGES) - PROFILE_LIST += \ + ifneq ($(KCONFIG),) + PROFILE_LIST += \ echo '$(ID):'; [ -z '$(NAME)' ] || echo ' $(NAME)'; echo ' Packages: $(PACKAGES)'; + endif endif endef