Skip to content

Commit cfc221e

Browse files
committed
config: rockpi-e: use armbian/rkbin default and fix blob paths
The blobs this board pins (rk3328 DDR v1.22, BL31 v1.49) were merged into armbian/rkbin, which is already the framework's default RKBIN repo. So: - Drop RKBIN_GIT_URL / RKBIN_GIT_BRANCH overrides (pointed at upstream rockchip-linux/rkbin) -- the default armbian/rkbin now carries them. - Strip the 'bin/' path prefix from DDR_BLOB / BL31_BLOB: armbian/rkbin stores blobs flat under rk33/ (matching every other board), so a 'bin/rk33/...' path would not resolve and u-boot assembly would fail. - Drop MINILOADER_BLOB: identical to the rk3328 family default and unused by the spl-blobs boot map. Signed-off-by: Igor Pecovnik <igor@armbian.com>
1 parent a59bc1a commit cfc221e

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

config/boards/rockpi-e.conf

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ HAS_VIDEO_OUTPUT="no"
1313
BOOTBRANCH_BOARD="tag:v2026.04"
1414
BOOTPATCHDIR="v2026.04"
1515
BOOT_SCENARIO="spl-blobs"
16-
RKBIN_GIT_URL="https://github.com/rockchip-linux/rkbin"
17-
RKBIN_GIT_BRANCH="master"
18-
DDR_BLOB="bin/rk33/rk3328_ddr_333MHz_v1.22.bin"
19-
BL31_BLOB="bin/rk33/rk322xh_bl31_v1.49.elf"
20-
MINILOADER_BLOB="bin/rk33/rk322xh_miniloader_v2.50.bin"
16+
# Newer DDR/BL31 than the rk3328 family defaults; both live in armbian/rkbin (the
17+
# default RKBIN repo) under rk33/ -- so no repo override and no "bin/" path prefix.
18+
DDR_BLOB="rk33/rk3328_ddr_333MHz_v1.22.bin"
19+
BL31_BLOB="rk33/rk322xh_bl31_v1.49.elf"
2120

2221
function post_family_config__rockpi_e_spl_blobs() {
2322
display_alert "$BOARD" "Using RK3328 vendor TPL blob" "info"

0 commit comments

Comments
 (0)