diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-01-24 09:47:20 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-01-24 09:47:20 +0000 |
commit | 484156db8c164126627144accc138519a4c6bc2e (patch) | |
tree | 9823c48df05bec29f2cc0a0fee093272ab6c2e50 /target | |
parent | a7617236202092ad9d51f1737dd509087e3373c5 (diff) | |
download | upstream-484156db8c164126627144accc138519a4c6bc2e.tar.gz upstream-484156db8c164126627144accc138519a4c6bc2e.tar.bz2 upstream-484156db8c164126627144accc138519a4c6bc2e.zip |
ImageBuilder: respect the PROFILE parameter
Based on a patch from #10766
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29877 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/imagebuilder/files/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
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="<profilename>" # override the default target profile make image PACKAGES="<pkg1> [<pkg2> [<pkg3> ...]]" # include extra packages make image FILES="<path>" # include extra files from <path> @@ -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) |