qemu arm64: bump u-boot and fix wrong boot script parameter

Now it boots OOB: https://paste.armbian.com/ololipacam
This commit is contained in:
Igor Pecovnik
2025-03-24 07:15:46 +01:00
committed by Igor
parent 12f6e7c2d1
commit 62ffa66cc8
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ echo "INITRD LOAD ADDRESS: ramdisk_addr_r: ${ramdisk_addr_r}"
echo "FDT LOAD ADDRESS : fdt_addr : ${fdt_addr}"
# /vmlinuz and /initrd.img are standard Debian symlinks to the "latest installed kernel"
load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} /vmlinuz
load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} ${prefix}vmlinuz
# Attention, this is uInitrd for uboot/ARM; there's a symlink put there by Armbian hooks
load ${devtype} ${devnum}:${distro_bootpart} ${ramdisk_addr_r} ${prefix}uInitrd

View File

@@ -46,7 +46,7 @@ if [[ "${QEMU_UBOOT_BOOTCONFIG}" != "" ]]; then
declare -g ATF_COMPILE="no"
declare -g BOOTDIR="qemu-uboot-${LINUXFAMILY}"
declare -g BOOTBRANCH='tag:v2023.10'
declare -g BOOTBRANCH='tag:v2025.01'
declare -g BOOTSOURCE='https://github.com/u-boot/u-boot' # Gotta set this again, it is unset by grub extension
declare -g BOOTCONFIG="${QEMU_UBOOT_BOOTCONFIG}"