From: Felix Fietkau Date: Sat, 19 Nov 2005 14:07:32 +0000 (+0000) Subject: allow comment lines in the image builder X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=72d71423519295b5019fc36092a9f914298f9e97;p=15.05%2Fopenwrt.git allow comment lines in the image builder git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2533 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/imagebuilder/Makefile b/target/linux/imagebuilder/Makefile index c70fb11e93..0ec71199c7 100644 --- a/target/linux/imagebuilder/Makefile +++ b/target/linux/imagebuilder/Makefile @@ -36,7 +36,7 @@ build: mkdir -p $(LINUX_BUILD_DIR)/root echo -e 'dest root /\noption offline_root $(LINUX_BUILD_DIR)/root' > $(LINUX_BUILD_DIR)/ipkg.conf $(IPKG_KERNEL) install $(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)/kernel[-_]*.ipk - for package in `cat lists/$(LIST).$(BOARD)-$(KERNEL)`; do \ + for package in `grep -v '^#' lists/$(LIST).$(BOARD)-$(KERNEL)`; do \ $(IPKG_KERNEL) install `ls packages/$${package}_*`; \ done if [ -d ./files ]; then \