initramfs-tools: do not compress with -9, simply use defaults (takes a lot of memory otherwise).

This commit is contained in:
Juan RP 2012-03-08 23:58:39 +01:00
parent ed299a0f7b
commit 8abfb0c934
2 changed files with 2 additions and 3 deletions

View File

@ -144,9 +144,8 @@ if ! `grep -q -i ^config_rd_${COMPRESS%p} /boot/config-${version}` ; then
echo "linux-2.6 misses ${COMPRESS} support, using gzip"
fi
# Always compress with best compression mode to save space.
[ "$compress" = xz ] && compress="xz --check=crc32"
compress="$compress -9"
compress="$compress"
if [ -d "${outfile}" ]; then
echo "${outfile} is a directory" >&2

View File

@ -1,6 +1,6 @@
# Template file for 'initramfs-tools'
pkgname=initramfs-tools
_localver=117 # This is the XBPS version
_localver=118 # This is the XBPS version
_distver=0.99 # This should match debian version
version=${_distver}.${_localver}
short_desc="Tools for generating an initramfs"