mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-03-26 02:11:15 +00:00
Import patches-unapplied version 1.115 to ubuntu/maverick
Imported using git-ubuntu import. Changelog parent: cb683e30d2e2eae3b000fa2fa29db436ce91073a New changelog entries: * use a tmpfs for the livefs root directory, to get some speed on the build machines. (ubuntu-dvd requires > 5GB, so use 8GB)
This commit is contained in:
parent
cb683e30d2
commit
f86a4e26d4
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
||||
livecd-rootfs (1.115) maverick; urgency=low
|
||||
|
||||
* use a tmpfs for the livefs root directory, to get some speed
|
||||
on the build machines. (ubuntu-dvd requires > 5GB, so use 8GB)
|
||||
|
||||
-- LaMont Jones <lamont@ubuntu.com> Wed, 05 May 2010 10:42:00 -0600
|
||||
|
||||
livecd-rootfs (1.114) lucid; urgency=low
|
||||
|
||||
* make sure STRIP_VMLINUZ=no is set for omap, also change the code to only
|
||||
|
@ -167,7 +167,13 @@ for FS in "$@"; do
|
||||
# Just in case there's some leftover junk here:
|
||||
cleanup 2>/dev/null || true
|
||||
|
||||
umount ${ROOT} || true
|
||||
rm -rf ${ROOT}
|
||||
mkdir ${ROOT}
|
||||
# if we have > 1GB of RAM, use a tmpfs
|
||||
if awk '/^MemTotal:/ { exit !(int($2/1024) > 1024)}' /proc/meminfo; then
|
||||
mount -t tmpfs -o size=8192M tmpfs ${ROOT} && echo using tmpfs
|
||||
fi
|
||||
|
||||
mkdir -p ${ROOT}var/cache/debconf
|
||||
cat << @@EOF > ${ROOT}var/cache/debconf/config.dat
|
||||
|
Loading…
x
Reference in New Issue
Block a user