- meko: don't use Radxa's Rock-5A u-boot anymore, switch to rockchip vendor next-dev branch - meko: my own (horrible) patches for MAC address stability / defconfig - meko: cherry picked a few patches for getting rid of BL32/read Bl31 from env and other fixes from Radxa - meko: add OTP node to 3588 dtsi (so we don't need kern-dtb in ITS for working OTP) - meko: refactor common code across 3 (soon to be 4) board files into vendor conf and hooks - meko: bump DDR/BL31 blobs for all Meko boards
23 lines
1.3 KiB
Bash
23 lines
1.3 KiB
Bash
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2023 Ricardo Pardini <ricardo@pardini.net>
|
|
# This file is a part of the Armbian Build Framework https://github.com/armbian/build/
|
|
|
|
# This file is SOURCED by the Mekotronics board files, and thus has the same restrictions as board files.
|
|
# Especifically, the family code (rockchip64_common) will both require and override a bunch of stuff.
|
|
# We use hooks (post_family_config, etc) to be able to both reuse code and force certain values.
|
|
display_alert "shared vendor code" "Mekotronics (RK3588) config" "info"
|
|
|
|
# enable shared hooks (could be made into an extension)
|
|
source "${SRC}/config/sources/vendors/mekotronics/mekotronics-rk3588.hooks.sh"
|
|
|
|
# hciattach
|
|
declare -g BLUETOOTH_HCIATTACH_PARAMS="-s 115200 /dev/ttyS6 bcm43xx 1500000" # For the bluetooth-hciattach extension
|
|
enable_extension "bluetooth-hciattach" # Enable the bluetooth-hciattach extension
|
|
|
|
# board-like config
|
|
declare -g BOOT_SCENARIO="spl-blobs" # so we don't depend on defconfig naming convention
|
|
declare -g BOOT_SOC="rk3588" # so we don't depend on defconfig naming convention
|
|
declare -g BOOTCONFIG="rk3588_meko_defconfig" # generic ebv plus distro dtb hacks
|
|
declare -g IMAGE_PARTITION_TABLE="gpt"
|