ubootOrangePi5Plus: init

This adds the uboot version used for the Xunlong Orange Pi 5 Plus.
This commit is contained in:
Florian Klink 2024-09-10 14:18:38 +07:00
parent 98c8fd9549
commit cb714bfbd4

View File

@ -389,6 +389,14 @@ in {
filesToInstall = [ "u-boot.itb" "idbloader.img" "u-boot-rockchip.bin" "u-boot-rockchip-spi.bin" ]; filesToInstall = [ "u-boot.itb" "idbloader.img" "u-boot-rockchip.bin" "u-boot-rockchip-spi.bin" ];
}; };
ubootOrangePi5Plus = buildUBoot {
defconfig = "orangepi-5-plus-rk3588_defconfig";
extraMeta.platforms = ["aarch64-linux"];
BL31 = "${armTrustedFirmwareRK3588}/bl31.elf";
ROCKCHIP_TPL = rkbin.TPL_RK3588;
filesToInstall = [ "u-boot.itb" "idbloader.img" "u-boot-rockchip.bin" "u-boot-rockchip-spi.bin" ];
};
ubootOrangePiPc = buildUBoot { ubootOrangePiPc = buildUBoot {
defconfig = "orangepi_pc_defconfig"; defconfig = "orangepi_pc_defconfig";
extraMeta.platforms = ["armv7l-linux"]; extraMeta.platforms = ["armv7l-linux"];