mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-12 11:22:09 +00:00
Refactor ubuntu-cpc hooks to hard-code producing an 'ext4' rootfs, which
is used outside of the livecd-rootfs build process (specifically for EC2 publication).
This commit is contained in:
parent
02b79f5ef2
commit
6f6fb2834b
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
|||||||
|
livecd-rootfs (2.380) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Refactor ubuntu-cpc hooks to hard-code producing an 'ext4' rootfs, which
|
||||||
|
is used outside of the livecd-rootfs build process (specifically for EC2
|
||||||
|
publication).
|
||||||
|
|
||||||
|
-- Daniel Watkins <daniel.watkins@canonical.com> Mon, 22 Feb 2016 11:29:26 +0000
|
||||||
|
|
||||||
livecd-rootfs (2.379) xenial; urgency=medium
|
livecd-rootfs (2.379) xenial; urgency=medium
|
||||||
|
|
||||||
* add /var/lib/systemd/rfkill to pre-created dirs to use as writable
|
* add /var/lib/systemd/rfkill to pre-created dirs to use as writable
|
||||||
|
@ -103,7 +103,7 @@ add_binary_hook ()
|
|||||||
|
|
||||||
case $PROJECT in
|
case $PROJECT in
|
||||||
ubuntu-cpc)
|
ubuntu-cpc)
|
||||||
IMAGEFORMAT=plain
|
IMAGEFORMAT=ext4
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -116,11 +116,17 @@ case $IMAGEFORMAT in
|
|||||||
add_package install lupin-support
|
add_package install lupin-support
|
||||||
COMPONENTS='main restricted universe multiverse'
|
COMPONENTS='main restricted universe multiverse'
|
||||||
;;
|
;;
|
||||||
|
*)
|
||||||
|
case $PROJECT in
|
||||||
|
ubuntu-cpc)
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
add_package live jasper
|
add_package live jasper
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
|
||||||
plain)
|
plain)
|
||||||
OPTS="${OPTS:+$OPTS }--initramfs none --chroot-filesystem $IMAGEFORMAT"
|
OPTS="${OPTS:+$OPTS }--initramfs none --chroot-filesystem $IMAGEFORMAT"
|
||||||
|
@ -7,6 +7,9 @@ fi
|
|||||||
|
|
||||||
. /build/config/functions
|
. /build/config/functions
|
||||||
|
|
||||||
|
mkdir binary/boot/filesystem.dir
|
||||||
|
cp -a chroot/* binary/boot/filesystem.dir
|
||||||
|
|
||||||
setup_mountpoint binary/boot/filesystem.dir
|
setup_mountpoint binary/boot/filesystem.dir
|
||||||
|
|
||||||
chroot binary/boot/filesystem.dir dpkg-divert --local --rename /usr/sbin/grub-probe
|
chroot binary/boot/filesystem.dir dpkg-divert --local --rename /usr/sbin/grub-probe
|
||||||
|
Loading…
x
Reference in New Issue
Block a user