From cd435382cb6324f02eeb2d0b5b8d8174a5844468 Mon Sep 17 00:00:00 2001 From: Andy Boyett Date: Mon, 23 Jun 2008 16:10:23 -0700 Subject: [PATCH] [ipkg] Move packages lists to the ramdisk to save flash space - Lists now stored in /tmp/ipkg-lists/, `ipkg update' after each boot before packages can be installed - Lists are now gzipped to ramdisk consumption. --- package/Makefile | 8 +++++--- package/base-files/files/etc/ipkg.conf | 3 ++- target/imagebuilder/files/Makefile | 6 ++++-- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/package/Makefile b/package/Makefile index a1f20b0..2a3354c 100644 --- a/package/Makefile +++ b/package/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2006-2007 OpenWrt.org +# +# Copyright (C) 2006-2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -45,7 +45,9 @@ $(curdir)/rootfs-prepare: $(TMP_DIR)/.build $(if $(CONFIG_CLEAN_IPKG),rm -rf $(TARGET_DIR)/usr/lib/ipkg) $(curdir)/index: FORCE - @(cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages) + @(cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages && \ + gzip -9c Packages > Packages.gz \ + ) $(curdir)/flags-install:= -j1 diff --git a/package/base-files/files/etc/ipkg.conf b/package/base-files/files/etc/ipkg.conf index 8c7c943..f31f02f 100644 --- a/package/base-files/files/etc/ipkg.conf +++ b/package/base-files/files/etc/ipkg.conf @@ -1,3 +1,4 @@ -src snapshots http://downloads.openwrt.org/snapshots/$S/packages +src/gz snapshots http://downloads.openwrt.org/snapshots/$S/packages dest root / dest ram /tmp +lists_dir ext /tmp/ipkg-lists 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 -- 1.5.5.3