update u-boot

This commit is contained in:
Travis Staton 2024-01-23 14:36:53 -05:00
parent efdc6f6816
commit fac66459b1
2 changed files with 8 additions and 6 deletions

View file

@ -4,7 +4,7 @@
inputs = { inputs = {
u-boot-src = { u-boot-src = {
flake = false; flake = false;
url = "https://ftp.denx.de/pub/u-boot/u-boot-2023.01.tar.bz2"; url = "https://ftp.denx.de/pub/u-boot/u-boot-2024.01.tar.bz2";
}; };
rpi-linux-6_1-src = { rpi-linux-6_1-src = {
flake = false; flake = false;

View file

@ -67,7 +67,9 @@ in
defconfig = "rpi_arm64_defconfig"; defconfig = "rpi_arm64_defconfig";
extraMeta.platforms = [ "aarch64-linux" ]; extraMeta.platforms = [ "aarch64-linux" ];
filesToInstall = [ "u-boot.bin" ]; filesToInstall = [ "u-boot.bin" ];
version = "2023.01"; version = "2024.01";
patches = [ ];
makeFlags = [ ];
src = u-boot-src; src = u-boot-src;
# In raspberry pi sbcs the firmware manipulates the device tree in # In raspberry pi sbcs the firmware manipulates the device tree in
# a variety of ways before handing it off to the linux kernel. [1] # a variety of ways before handing it off to the linux kernel. [1]
@ -79,10 +81,10 @@ in
# firmware and attempt to mimic it. # firmware and attempt to mimic it.
# #
# 1. https://forums.raspberrypi.com/viewtopic.php?t=329799#p1974233 # 1. https://forums.raspberrypi.com/viewtopic.php?t=329799#p1974233
extraConfig = '' # extraConfig = ''
CONFIG_OF_HAS_PRIOR_STAGE=y # CONFIG_OF_HAS_PRIOR_STAGE=y
CONFIG_OF_BOARD=y # CONFIG_OF_BOARD=y
''; # '';
}; };
# default to latest firmware # default to latest firmware