* meson64: bump u-boot to 2021.07, rework patches
- as always based on chewitt's tree, with differences:
- squashed versions of HC4+SATA, Radxa Zero, DT tree sync patches
- so that DTB/config/code changes related to the same feature/board are grouped
- removed documentation changes and Makefile reordering patches
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* meson64: ODROID HC4/N2: simplify/remove board vs family hacks; better SPI support
- thanks to mainline 2021.07 u-boot and it's HC4 config we can remove the conditionals
- boards now define the u-boot vars instead of conditionals in family
- on the HC4, build u-boot twice: one for SD (old C4 config) and one for HC4 (new SATA/SPI config)
- reason is that the HC4 version does not work very well unless it is actually booted from SPI
- meson64_common: don't override UBOOT_TARGET_MAP if board-defined
- but the default UBOOT_TARGET_MAP is still defined if the board didn't
- (sneakily) add lm-sensors fancontrol to the HC4's board packages
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
25 lines
756 B
Plaintext
25 lines
756 B
Plaintext
source "${BASH_SOURCE%/*}/include/meson64_common.inc"
|
|
ASOUND_STATE="asound.state.meson64"
|
|
CPUMIN=667000
|
|
CPUMAX=2100000
|
|
GOVERNOR=ondemand
|
|
|
|
[[ ${BRANCH} == legacy ]] && SERIALCON=ttyS0
|
|
|
|
family_tweaks() {
|
|
:
|
|
}
|
|
|
|
uboot_custom_postprocess() {
|
|
# FIP trees for C4 and HC4 are identical as of 30/06/2021
|
|
if [[ $BOARD == odroidc4 ]]; then
|
|
uboot_g12_postprocess $SRC/cache/sources/amlogic-boot-fip/odroid-c4 g12a
|
|
elif [[ $BOARD == odroidhc4 ]]; then
|
|
uboot_g12_postprocess $SRC/cache/sources/amlogic-boot-fip/odroid-hc4 g12a
|
|
elif [[ $BOARD == khadas-vim3l ]]; then
|
|
uboot_g12_postprocess $SRC/cache/sources/amlogic-boot-fip/khadas-vim3l g12a
|
|
else
|
|
display_alert "uboot_custom_postprocess meson-sm1" "Unknown BOARD: $BOARD - not using FIP trees" "wrn"
|
|
fi
|
|
}
|