Skip to content

Commit 973cd92

Browse files
EvilOlafTheSnowfield
authored andcommitted
bump uboot to latest stable, simplify logic
1 parent 7be3ce0 commit 973cd92

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

config/boards/rock-3a.conf

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,15 @@ function post_family_config__rock-3a_use_mainline_uboot_except_vendor_and_add_sa
2222
BL31=$RKBIN_DIR/$BL31_BLOB $BOOTCONFIG_SATA spl/u-boot-spl.bin u-boot.dtb u-boot.itb;; rkspi_loader_sata.img"
2323

2424
# use mainline uboot for _current_ and _edge_
25-
if [[ "$BRANCH" != "current" && "$BRANCH" != "edge" ]]; then
26-
return 0
27-
fi
25+
[[ "$BRANCH" =="vendor" ]] && return 0
2826

2927
display_alert "$BOARD" "Mainline U-Boot overrides for $BOARD - $BRANCH" "info"
3028
unset BOOTFS_TYPE # fixes armbian-install and unneeded for modern uboot anyway
3129
declare -g BOOTCONFIG="rock-3a-rk3568_defconfig"
3230
declare -g BOOTDELAY=1
3331
declare -g BOOTSOURCE="https://github.com/u-boot/u-boot"
34-
declare -g BOOTBRANCH="tag:v2025.04"
35-
declare -g BOOTPATCHDIR="v2025.04"
32+
declare -g BOOTBRANCH="tag:v2025.10"
33+
declare -g BOOTPATCHDIR="v2025.10"
3634
declare -g BOOTDIR="u-boot-${BOARD}" # do not share u-boot directory
3735
declare -g UBOOT_TARGET_MAP="BL31=${RKBIN_DIR}/${BL31_BLOB} ROCKCHIP_TPL=${RKBIN_DIR}/${DDR_BLOB};;u-boot-rockchip.bin u-boot-rockchip-spi.bin"
3836
unset uboot_custom_postprocess write_uboot_platform write_uboot_platform_mtd # disable stuff from rockchip64_common; we're using binman here which does all the work already

0 commit comments

Comments
 (0)