Import patches-unapplied version 0.101 to ubuntu/lucid

Imported using git-ubuntu import.

Changelog parent: 23d96b043a

New changelog entries:
  * Write out the total size of uncompressed squashfs to be used by
    partman and ubiquity.
impish
Evan Dandrea 15 years ago committed by usd-importer
parent 23d96b043a
commit 658b8ac3cc

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (0.101) lucid; urgency=low
* Write out the total size of uncompressed squashfs to be used by
partman and ubiquity.
-- Evan Dandrea <evand@ubuntu.com> Wed, 18 Nov 2009 12:11:10 -0600
livecd-rootfs (0.100) karmic; urgency=low livecd-rootfs (0.100) karmic; urgency=low
* UNR LIVELIST: list lupin-casper and laptop-detect explicitly and drop * UNR LIVELIST: list lupin-casper and laptop-detect explicitly and drop

@ -614,6 +614,12 @@ Pin-Priority: 550
# else needs to be run in the chroot (umounting it earlier breaks rm): # else needs to be run in the chroot (umounting it earlier breaks rm):
cleanup cleanup
# Squashfs does not report unpacked disk space usage, which is explained at
# <http://lkml.org/lkml/2006/6/16/163>. However, we would like to cache this
# number for partman's sufficient free space check and ubiquity's
# installation progress calculation.
du -sx --block-size=1 ${ROOT} | cut -f1 > livecd.${FSS}.size || true
livefs_squash() livefs_squash()
{ {
squashsort="http://people.ubuntu.com/~tfheen/livesort/${FSS}.list.${TARGETARCH}" squashsort="http://people.ubuntu.com/~tfheen/livesort/${FSS}.list.${TARGETARCH}"

Loading…
Cancel
Save