mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-08-16 19:24:06 +00:00
Imported 2.525.14
No reason for CPC update specified.
This commit is contained in:
parent
d200d987eb
commit
debf8ebb2b
29
debian/changelog
vendored
29
debian/changelog
vendored
@ -1,3 +1,32 @@
|
|||||||
|
livecd-rootfs (2.525.14) bionic; urgency=medium
|
||||||
|
|
||||||
|
* More changes for raspi3 build support (LP: #1805668):
|
||||||
|
- Fix 100-purge-grub-legacy-ec2-arm.chroot to not gate on ARCH as that's
|
||||||
|
not defined in .chroot hooks.
|
||||||
|
- Use the new linux-firmware-raspi2 for boot binary blobs as
|
||||||
|
raspi3-firmware includes upgrade hooks that conflict with our image
|
||||||
|
configuration.
|
||||||
|
|
||||||
|
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> Fri, 18 Jan 2019 16:56:58 +0100
|
||||||
|
|
||||||
|
livecd-rootfs (2.525.13) bionic; urgency=medium
|
||||||
|
|
||||||
|
[ Balint Reczey ]
|
||||||
|
* Update Vcs-* fields in debian/control to point to git.
|
||||||
|
|
||||||
|
[ Łukasz 'sil2100' Zemczak ]
|
||||||
|
* Another batch of cherry-picks for raspi3 support (LP: #1805668)
|
||||||
|
- Add wpasupplicant to the additional packages installed for the raspi2 and
|
||||||
|
raspi3 targets.
|
||||||
|
- Default to IMAGEFORMAT=ubuntu-image for raspi3 ubuntu-cpc builds.
|
||||||
|
- Link the resulting raspi3 image to a filename that cdimage expects from a
|
||||||
|
preinstalled image build.
|
||||||
|
* Add the 100-purge-grub-legacy-ec2-arm.chroot hook to remove
|
||||||
|
grub-legacy-ec2 from any ARM based ubuntu-cpc images we create. The package
|
||||||
|
is no longer in the server seed of newer series anyway.
|
||||||
|
|
||||||
|
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> Fri, 11 Jan 2019 14:53:10 +0100
|
||||||
|
|
||||||
livecd-rootfs (2.525.12) bionic; urgency=medium
|
livecd-rootfs (2.525.12) bionic; urgency=medium
|
||||||
|
|
||||||
* Key netplan delegation to NetworkManager on presence of
|
* Key netplan delegation to NetworkManager on presence of
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -4,7 +4,7 @@ Priority: optional
|
|||||||
Build-Depends: debhelper (>= 7)
|
Build-Depends: debhelper (>= 7)
|
||||||
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
|
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
|
||||||
Standards-Version: 3.9.6
|
Standards-Version: 3.9.6
|
||||||
Vcs-Bzr: lp:~ubuntu-core-dev/livecd-rootfs/bionic-proposed/
|
Vcs-Git: https://git.launchpad.net/livecd-rootfs -b ubuntu/bionic
|
||||||
|
|
||||||
Package: livecd-rootfs
|
Package: livecd-rootfs
|
||||||
Architecture: any
|
Architecture: any
|
||||||
|
@ -45,6 +45,8 @@ if [ "${IMAGEFORMAT:-}" = "ubuntu-image" ]; then
|
|||||||
# define those.
|
# define those.
|
||||||
mv output/*.img "$PREFIX".img
|
mv output/*.img "$PREFIX".img
|
||||||
xz -0 -T4 "$PREFIX".img
|
xz -0 -T4 "$PREFIX".img
|
||||||
|
# Also link the output image to a filename that cdimage expects
|
||||||
|
ln "$PREFIX".img.xz livecd.ubuntu-cpc.disk1.img.xz
|
||||||
mv output/filesystem.manifest "$PREFIX".manifest
|
mv output/filesystem.manifest "$PREFIX".manifest
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -114,7 +114,12 @@ add_binary_hook ()
|
|||||||
if [ -z "${IMAGEFORMAT:-}" ]; then
|
if [ -z "${IMAGEFORMAT:-}" ]; then
|
||||||
case $PROJECT:${SUBPROJECT:-} in
|
case $PROJECT:${SUBPROJECT:-} in
|
||||||
ubuntu-cpc:*)
|
ubuntu-cpc:*)
|
||||||
IMAGEFORMAT=ext4
|
if [ "$SUBARCH" = "raspi3" ]; then
|
||||||
|
# For now only raspi3, but others are soon to follow
|
||||||
|
IMAGEFORMAT=ubuntu-image
|
||||||
|
else
|
||||||
|
IMAGEFORMAT=ext4
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
ubuntu-server:live)
|
ubuntu-server:live)
|
||||||
IMAGEFORMAT=plain
|
IMAGEFORMAT=plain
|
||||||
@ -806,13 +811,13 @@ case $ARCH in
|
|||||||
;;
|
;;
|
||||||
raspi2)
|
raspi2)
|
||||||
COMPONENTS='main restricted universe multiverse'
|
COMPONENTS='main restricted universe multiverse'
|
||||||
add_package install linux-firmware-raspi2 u-boot-rpi flash-kernel u-boot-tools
|
add_package install linux-firmware-raspi2 u-boot-rpi flash-kernel u-boot-tools wpasupplicant
|
||||||
BINARY_REMOVE_LINUX=false
|
BINARY_REMOVE_LINUX=false
|
||||||
;;
|
;;
|
||||||
raspi3)
|
raspi3)
|
||||||
COMPONENTS='main restricted universe multiverse'
|
COMPONENTS='main restricted universe multiverse'
|
||||||
KERNEL_FLAVOURS=raspi2
|
KERNEL_FLAVOURS=raspi2
|
||||||
add_package install raspi3-firmware u-boot-rpi flash-kernel u-boot-tools
|
add_package install linux-firmware-raspi2 u-boot-rpi flash-kernel u-boot-tools wpasupplicant
|
||||||
BINARY_REMOVE_LINUX=false
|
BINARY_REMOVE_LINUX=false
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
13
live-build/ubuntu-cpc/hooks/100-purge-grub-legacy-ec2-arm.chroot
Executable file
13
live-build/ubuntu-cpc/hooks/100-purge-grub-legacy-ec2-arm.chroot
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/sh -eux
|
||||||
|
|
||||||
|
# Only execute the hack for ARM images
|
||||||
|
# ARCH is not available in .chroot hooks so we need to get the architecture
|
||||||
|
# manually.
|
||||||
|
arch=$(dpkg --print-architecture)
|
||||||
|
if [ "$arch" != "armhf" ] && [ "$arch" != "arm64" ]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
# Why is grub-legacy-ec2 even on the image?
|
||||||
|
apt-get remove --yes --purge grub-legacy-ec2 || true
|
0
live-build/ubuntu-server/includes.binary/boot/.keep
Normal file
0
live-build/ubuntu-server/includes.binary/boot/.keep
Normal file
Loading…
x
Reference in New Issue
Block a user