Switch from --binary-remove-linux to config/binary_rootfs/excludes.

ubuntu/precise
Colin Watson 14 years ago
parent fafd476b60
commit d6f42085fc

1
debian/changelog vendored

@ -2,6 +2,7 @@ livecd-rootfs (2.1) UNRELEASED; urgency=low
* Fix ordering of log file creation in BuildLiveCD. * Fix ordering of log file creation in BuildLiveCD.
* Fix permissions in BuildLiveCD when setting up auto directory. * Fix permissions in BuildLiveCD when setting up auto directory.
* Switch from --binary-remove-linux to config/binary_rootfs/excludes.
-- Colin Watson <cjwatson@ubuntu.com> Mon, 13 Jun 2011 19:42:59 +0100 -- Colin Watson <cjwatson@ubuntu.com> Mon, 13 Jun 2011 19:42:59 +0100

2
debian/control vendored

@ -8,7 +8,7 @@ Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-core-dev/livecd-rootfs/trunk
Package: livecd-rootfs Package: livecd-rootfs
Architecture: all Architecture: all
Depends: ${misc:Depends}, debootstrap, rsync, python-minimal | python, procps, squashfs-tools (>= 1:3.3-1), grep-dctrl, fdupes, lsb-release, lzma, e2fsprogs, live-build (>= 3.0~a20-1ubuntu1) Depends: ${misc:Depends}, debootstrap, rsync, python-minimal | python, procps, squashfs-tools (>= 1:3.3-1), grep-dctrl, fdupes, lsb-release, lzma, e2fsprogs, live-build (>= 3.0~a21-1ubuntu1)
Suggests: partimage Suggests: partimage
Description: construction script for the livecd rootfs Description: construction script for the livecd rootfs
livecd-rootfs provides the script used to create the root filesystem livecd-rootfs provides the script used to create the root filesystem

@ -44,7 +44,7 @@ add_package ()
OPTS= OPTS=
COMPONENTS= COMPONENTS=
BINARY_REMOVE_LINUX=true BINARY_REMOVE_LINUX=:
case $IMAGEFORMAT in case $IMAGEFORMAT in
ext2|ext3) ext2|ext3)
@ -141,7 +141,6 @@ lb config noauto \
--distribution "$SUITE" \ --distribution "$SUITE" \
--bootstrap-keyring ubuntu-keyring \ --bootstrap-keyring ubuntu-keyring \
--binary-images none \ --binary-images none \
--binary-remove-linux "$BINARY_REMOVE_LINUX" \
--memtest none \ --memtest none \
--source false \ --source false \
--build-with-chroot false \ --build-with-chroot false \
@ -153,6 +152,13 @@ lb config noauto \
--initramfs-compression lzma \ --initramfs-compression lzma \
$OPTS $OPTS
if $BINARY_REMOVE_LINUX; then
cat > config/binary_rootfs/excludes << EOF
boot/vmlinu?-*
boot/initrd.img-*
EOF
fi
case $PROJECT in case $PROJECT in
kubuntu|kubuntu-mobile) kubuntu|kubuntu-mobile)
ln -s /usr/share/live/build/examples/hooks/kubuntu_chroot_icon-theme.sh config/chroot_local-hooks/ ln -s /usr/share/live/build/examples/hooks/kubuntu_chroot_icon-theme.sh config/chroot_local-hooks/

Loading…
Cancel
Save