u-boot: remove rpi ramdisk quirk for aarch64

the u-boot bug that destroy the ramdisk on aarch64 is fixed now

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2021-06-10 13:06:46 +00:00
parent 184cbf9b2a
commit 1b73728c55
2 changed files with 0 additions and 16 deletions

View File

@@ -34,14 +34,6 @@ if test "${board}" = "sunxi"; then
setenv fdtfile ${DTBSUNXI};
fi;
# Quirk for RPi on aarch64 becuase u-boot cannot use the
# initrd on aarch64 and without ramdisk no UUID
if test ${cpu} = "armv8"; then
if test ${board} = "rpi"; then
setenv root_dev /dev/mmcblk0p3;
fi;
fi;
# Check if serial console is enabled
if test "${SERIAL-CONSOLE}" = "ON"; then
if test ${console} = ""; then
@@ -97,14 +89,6 @@ else
setenv ramdisk_addr -;
fi;
# Quirk for RPi on aarch64 becuase u-boot cannot use the
# initrd on aarch64
if test ${cpu} = "armv8"; then
if test ${board} = "rpi"; then
setenv ramdisk_addr -;
fi;
fi;
bootz ${kernel_addr_r} ${ramdisk_addr} ${fdt_addr_r};
booti ${kernel_addr_r} ${ramdisk_addr} ${fdt_addr_r};

Binary file not shown.