Import patches-unapplied version 2.373 to ubuntu/xenial-proposed

Imported using git-ubuntu import.

Changelog parent: 63154a9a2f

New changelog entries:
  * Set timeout options so ppc64el cloud images don't display a grub boot
    menu (matching the behaviour of other cloud images).
  * Specify a regex to run-parts so that cloud image extra scripts are found
    and executed.
impish
Daniel Watkins 9 years ago committed by usd-importer
parent 63154a9a2f
commit b668a9f9f9

9
debian/changelog vendored

@ -1,3 +1,12 @@
livecd-rootfs (2.373) xenial; urgency=medium
* Set timeout options so ppc64el cloud images don't display a grub boot
menu (matching the behaviour of other cloud images).
* Specify a regex to run-parts so that cloud image extra scripts are found
and executed.
-- Daniel Watkins <daniel.watkins@canonical.com> Thu, 28 Jan 2016 11:51:23 +0000
livecd-rootfs (2.372) xenial; urgency=medium
* Install grub in ppc64el cloud images so they are bootable (LP: #1538610)

@ -30,7 +30,13 @@ install_grub() {
mkdir -p mountpoint/etc/default/grub.d
cat << EOF > mountpoint/etc/default/grub.d/50-cloudimg-settings.cfg
${CLOUD_IMG_STR}
#
# Set the recordfail timeout
GRUB_RECORDFAIL_TIMEOUT=0
# Do not wait on grub prompt
GRUB_TIMEOUT=0
# Set the default commandline
GRUB_CMDLINE_LINUX_DEFAULT="console=hvc0 earlyprintk"
EOF

@ -12,4 +12,4 @@ fi
. /build/config/functions
# Cleaner execution
/bin/run-parts ${extra_d}
/bin/run-parts --regex ".*\.binary" "${extra_d}"

Loading…
Cancel
Save