summaryrefslogtreecommitdiff
path: root/target/imagebuilder
diff options
context:
space:
mode:
authorAndy Boyett <agb@openwrt.org>2008-07-29 03:36:11 +0000
committerAndy Boyett <agb@openwrt.org>2008-07-29 03:36:11 +0000
commit6b045c7dc690a2626248c925cb80cc1717987cc7 (patch)
tree985a4834cff72616bc084ae5f544418486cf2898 /target/imagebuilder
parent28ddc0a2ae7a20aa81534dfa5ad3540fbb96e078 (diff)
downloadmtk-20170518-6b045c7dc690a2626248c925cb80cc1717987cc7.zip
mtk-20170518-6b045c7dc690a2626248c925cb80cc1717987cc7.tar.gz
mtk-20170518-6b045c7dc690a2626248c925cb80cc1717987cc7.tar.bz2
Generate gzipped package lists - Can be used by changing the src line in /etc/ipkg.conf to src/gz - Cannot be used by busybox ipkg
SVN-Revision: 11981
Diffstat (limited to 'target/imagebuilder')
-rw-r--r--target/imagebuilder/files/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile
index aa5b971..27a6c94 100644
--- a/target/imagebuilder/files/Makefile
+++ b/target/imagebuilder/files/Makefile
@@ -1,6 +1,6 @@
# Makefile for OpenWrt
#
-# Copyright (C) 2007 OpenWrt.org
+# Copyright (C) 2007-2008 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -112,7 +112,9 @@ endif
package_index: $(TOPDIR)/tmp/ipkg.conf FORCE
@echo
@echo Building package index...
- (cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages) >/dev/null 2>/dev/null
+ (cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages && \
+ gzip -9c Packages > Packages.gz \
+ ) >/dev/null 2>/dev/null
$(IPKG) update
package_install: FORCE