From: Gabor Juhos Date: Tue, 24 Jan 2012 18:08:02 +0000 (+0000) Subject: backfire: ImageBuilder: respect the PROFILE parameter (backport of r29877) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=271e30c20f70f7cd6469c76dcadd3ec868fef0b7 backfire: ImageBuilder: respect the PROFILE parameter (backport of r29877) SVN-Revision: 29892 --- diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index e8d282a8f0..f74b407896 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -38,7 +38,7 @@ Building images: By default 'make image' will create an image with the default target profile and package set. You can use the following parameters to change that: - + make image PROFILE="" # override the default target profile make image PACKAGES=" [ [ ...]]" # include extra packages make image FILES="" # include extra files from @@ -113,7 +113,7 @@ ifneq ($(USER_FILES),) endif $(MAKE) package_postinst $(MAKE) build_image - + package_index: FORCE @echo @echo Building package index... @@ -152,8 +152,9 @@ package_postinst: FORCE build_image: FORCE @echo @echo Building images... - $(NO_TRACE_MAKE) -C target/linux/$(BOARD)/image install TARGET_BUILD=1 IB=1 - + $(NO_TRACE_MAKE) -C target/linux/$(BOARD)/image install TARGET_BUILD=1 IB=1 \ + $(if $(USER_PROFILE),PROFILE="$(USER_PROFILE)") + clean: rm -rf $(TOPDIR)/tmp $(TOPDIR)/dl $(TARGET_DIR) $(BIN_DIR)