diff options
author | Andy Boyett <agb@openwrt.org> | 2008-07-29 03:36:11 +0000 |
---|---|---|
committer | Andy Boyett <agb@openwrt.org> | 2008-07-29 03:36:11 +0000 |
commit | 26e3c2d39a60c10c7283c8e68b18315138bf9fa2 (patch) | |
tree | 8c624c8621f7e076ca853b9fc146691de88007ab /target/imagebuilder/files | |
parent | fe34d714ae2cc448a71f61abb20f2fe6c138149c (diff) | |
download | upstream-26e3c2d39a60c10c7283c8e68b18315138bf9fa2.tar.gz upstream-26e3c2d39a60c10c7283c8e68b18315138bf9fa2.tar.bz2 upstream-26e3c2d39a60c10c7283c8e68b18315138bf9fa2.zip |
[ipkg] 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
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11981 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/imagebuilder/files')
-rw-r--r-- | target/imagebuilder/files/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index aa5b97150d..27a6c94f9d 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 |