mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-06-25 09:01:36 +00:00
resync with trunk
This commit is contained in:
commit
018525ba12
46
debian/changelog
vendored
46
debian/changelog
vendored
@ -1,12 +1,48 @@
|
|||||||
livecd-rootfs (2.472) UNRELEASED; urgency=medium
|
livecd-rootfs (2.477) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Purge initramfs-tools from minimized images.
|
||||||
|
|
||||||
|
-- Steve Langasek <steve.langasek@ubuntu.com> Fri, 13 Oct 2017 17:14:58 -0400
|
||||||
|
|
||||||
|
livecd-rootfs (2.476) artful; urgency=medium
|
||||||
|
|
||||||
|
* snap.subiquity.started.service must be RemainAfterExit=yes to satisfy
|
||||||
|
the service dependencies.
|
||||||
|
|
||||||
|
-- Steve Langasek <steve.langasek@ubuntu.com> Thu, 12 Oct 2017 09:23:52 -0400
|
||||||
|
|
||||||
|
livecd-rootfs (2.475) artful; urgency=medium
|
||||||
|
|
||||||
|
* Add the SNAP_REEXEC=0 enviroment to the subiquity service as well.
|
||||||
|
|
||||||
|
-- Steve Langasek <steve.langasek@ubuntu.com> Thu, 12 Oct 2017 00:32:46 -0400
|
||||||
|
|
||||||
|
livecd-rootfs (2.474) artful; urgency=medium
|
||||||
|
|
||||||
|
* Fix wrong variable name in systemd unit snippets.
|
||||||
|
|
||||||
|
-- Steve Langasek <steve.langasek@ubuntu.com> Wed, 11 Oct 2017 18:24:21 -0400
|
||||||
|
|
||||||
|
livecd-rootfs (2.473) artful; urgency=medium
|
||||||
|
|
||||||
|
[ Balint Reczey ]
|
||||||
|
* Clean up dangling /boot/initrd.img symlink when needed
|
||||||
|
* Revert ignoring failure of minimized autopkgtest on ppc64el
|
||||||
|
* Use kvm kernel only on amd64
|
||||||
|
* Skip installing server task when building minimial images
|
||||||
|
|
||||||
|
[ Steve Langasek ]
|
||||||
|
* export SNAP_REEXEC=0 to our snappy systemd units in the livefs overlay,
|
||||||
|
to work around apparmor not working reliably against aufs.
|
||||||
|
|
||||||
|
-- Steve Langasek <steve.langasek@ubuntu.com> Wed, 11 Oct 2017 12:46:14 -0400
|
||||||
|
|
||||||
|
livecd-rootfs (2.472) artful; urgency=medium
|
||||||
|
|
||||||
[ Michael Hudson-Doyle ]
|
[ Michael Hudson-Doyle ]
|
||||||
* Add snap.subiquity.started.service to subiquity.service's Requires=.
|
* Add snap.subiquity.started.service to subiquity.service's Requires=.
|
||||||
|
|
||||||
[ Steve Langasek ]
|
-- Steve Langasek <steve.langasek@ubuntu.com> Tue, 10 Oct 2017 18:41:01 -0400
|
||||||
* Purge initramfs-tools from minimized images.
|
|
||||||
|
|
||||||
-- Michael Hudson-Doyle <mwhudson@debian.org> Mon, 09 Oct 2017 15:09:56 +1300
|
|
||||||
|
|
||||||
livecd-rootfs (2.471) artful; urgency=medium
|
livecd-rootfs (2.471) artful; urgency=medium
|
||||||
|
|
||||||
|
10
debian/tests/minimized
vendored
10
debian/tests/minimized
vendored
@ -1,11 +1,3 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
ARCH=$(dpkg --print-architecture)
|
env SELECTED_TRIPLETS=ubuntu-cpc:minimized:ubuntu-cpc debian/tests/default-bootstraps
|
||||||
|
|
||||||
failure_code=1
|
|
||||||
if [ "$ARCH" = ppc64el ]; then
|
|
||||||
# not a regression; don't block while debugging
|
|
||||||
failure_code=0
|
|
||||||
fi
|
|
||||||
|
|
||||||
env SELECTED_TRIPLETS=ubuntu-cpc:minimized:ubuntu-cpc debian/tests/default-bootstraps || exit $failure_code
|
|
||||||
|
@ -540,7 +540,7 @@ case $PROJECT in
|
|||||||
# linux-kvm is available since you control the
|
# linux-kvm is available since you control the
|
||||||
# archive and can provide this metapackage as
|
# archive and can provide this metapackage as
|
||||||
# necessary.
|
# necessary.
|
||||||
if [ -z "$EXTRA_PPAS" ] && [ "$SUITE" != xenial ]; then
|
if [ "$ARCH" != "amd64" ] || ([ -z "$EXTRA_PPAS" ] && [ "$SUITE" != xenial ]); then
|
||||||
KERNEL_FLAVOURS=virtual
|
KERNEL_FLAVOURS=virtual
|
||||||
else
|
else
|
||||||
KERNEL_FLAVOURS=kvm
|
KERNEL_FLAVOURS=kvm
|
||||||
@ -549,6 +549,11 @@ case $PROJECT in
|
|||||||
add_task install minimal standard cloud-image
|
add_task install minimal standard cloud-image
|
||||||
add_package install ubuntu-minimal
|
add_package install ubuntu-minimal
|
||||||
KERNEL_FLAVOURS=virtual
|
KERNEL_FLAVOURS=virtual
|
||||||
|
case $ARCH in
|
||||||
|
armhf|arm64|ppc64el|powerpc)
|
||||||
|
add_task install server
|
||||||
|
;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
BINARY_REMOVE_LINUX=false
|
BINARY_REMOVE_LINUX=false
|
||||||
@ -557,17 +562,9 @@ case $PROJECT in
|
|||||||
armhf)
|
armhf)
|
||||||
KERNEL_FLAVOURS=generic-lpae
|
KERNEL_FLAVOURS=generic-lpae
|
||||||
add_package install flash-kernel
|
add_package install flash-kernel
|
||||||
add_task install server
|
|
||||||
;;
|
;;
|
||||||
arm64)
|
arm64)
|
||||||
add_package install flash-kernel
|
add_package install flash-kernel
|
||||||
add_task install server
|
|
||||||
;;
|
|
||||||
ppc64el)
|
|
||||||
add_task install server
|
|
||||||
;;
|
|
||||||
powerpc)
|
|
||||||
add_task install server
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
OPTS="${OPTS:+$OPTS }--system=normal"
|
OPTS="${OPTS:+$OPTS }--system=normal"
|
||||||
|
@ -130,6 +130,11 @@ if [ -f "${rootd}/etc/overlayroot.conf" ] &&
|
|||||||
} > "${rootd}/etc/overlayroot.local.conf"
|
} > "${rootd}/etc/overlayroot.local.conf"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# previous steps may have left a dangling symlink here with
|
||||||
|
# SUBPROJECT=minimized and that breaks lb_chroot_hacks step
|
||||||
|
if [ -L "${rootd}/boot/initrd.img" ] && [ ! -e "${rootd}/boot/initrd.img" ]; then
|
||||||
|
rm "${rootd}/boot/initrd.img"
|
||||||
|
fi
|
||||||
|
|
||||||
#### END COMMON ARCH FUNCTIONS
|
#### END COMMON ARCH FUNCTIONS
|
||||||
|
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
[Service]
|
||||||
|
RemainAfterExit=yes
|
||||||
|
Environment=SNAP_REEXEC=0
|
@ -0,0 +1,2 @@
|
|||||||
|
[Service]
|
||||||
|
Environment=SNAP_REEXEC=0
|
@ -9,6 +9,7 @@ ConditionPathExists=!/run/subiquity/complete
|
|||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Environment=PYTHONPATH=/usr/share/subiquity
|
Environment=PYTHONPATH=/usr/share/subiquity
|
||||||
|
Environment=SNAP_REEXEC=0
|
||||||
ExecStartPre=/bin/systemctl stop getty@tty1
|
ExecStartPre=/bin/systemctl stop getty@tty1
|
||||||
ExecStartPre=/bin/dmesg -n 1
|
ExecStartPre=/bin/dmesg -n 1
|
||||||
ExecStartPre=/snap/bin/subiquity.subiquity-loadkeys
|
ExecStartPre=/snap/bin/subiquity.subiquity-loadkeys
|
||||||
|
Loading…
x
Reference in New Issue
Block a user