mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
Imported 2.717
No reason for CPC update specified.
This commit is contained in:
parent
2a6f076990
commit
e0f94f4532
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
||||
livecd-rootfs (2.717) hirsute; urgency=medium
|
||||
|
||||
* riscv64: generalise slightly how preinstalled server images are built,
|
||||
to allow using subarch to pick u-boot binaries to install.
|
||||
|
||||
-- Dimitri John Ledkov <xnox@ubuntu.com> Thu, 11 Mar 2021 17:08:56 +0000
|
||||
|
||||
livecd-rootfs (2.716) hirsute; urgency=medium
|
||||
|
||||
* Use the correct config keys in suppressing cloud-init output during boot
|
||||
|
@ -136,13 +136,17 @@ install_grub() {
|
||||
chroot mountpoint u-boot-update
|
||||
|
||||
if [ -n "${SUBARCH:-}" ]; then
|
||||
u_boot_arch="${SUBARCH}"
|
||||
if [ "${u_boot_arch}" = "hifive" ]; then
|
||||
u_boot_arch=sifive_fu540
|
||||
fi
|
||||
chroot mountpoint apt-get install -qqy u-boot-sifive
|
||||
# FSBL, which gets U-Boot SPL
|
||||
loader1="/dev/mapper${loop_device///dev/}p13"
|
||||
# The real U-Boot
|
||||
loader2="/dev/mapper${loop_device///dev/}p14"
|
||||
dd if=mountpoint/usr/lib/u-boot/sifive_fu540/u-boot-spl.bin of=$loader1
|
||||
dd if=mountpoint/usr/lib/u-boot/sifive_fu540/u-boot.itb of=$loader2
|
||||
dd if=mountpoint/usr/lib/u-boot/${u_boot_arch}/u-boot-spl.bin of=$loader1
|
||||
dd if=mountpoint/usr/lib/u-boot/${u_boot_arch}/u-boot.itb of=$loader2
|
||||
# Provide end-user modifyable CIDATA
|
||||
cidata_dev="/dev/mapper${loop_device///dev/}p12"
|
||||
setup_cidata "${cidata_dev}"
|
||||
|
@ -7,7 +7,7 @@ case $ARCH:$SUBARCH in
|
||||
xz -T4 -c binary/boot/disk.ext4 > livecd.ubuntu-cpc.disk1.img.xz
|
||||
exit 0
|
||||
;;
|
||||
riscv64:hifive)
|
||||
riscv64:hifive|riscv64:sifive_*)
|
||||
xz -T4 -c binary/boot/disk-uefi.ext4 > livecd.ubuntu-cpc.disk1.img.xz
|
||||
exit 0
|
||||
;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user