1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-10 15:47:11 +02:00

allow comment lines in the image builder

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2533 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2005-11-19 14:07:32 +00:00
parent d71b83343a
commit 35a499ec9f

View File

@ -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 \