22 lines
1.1 KiB
Plaintext
22 lines
1.1 KiB
Plaintext
|
# Rockchip RK3588s 2GB-16GB GBE eMMC NVMe SATA USB3 WiFi
|
||
|
declare -g BOARD_NAME="Khadas Edge2"
|
||
|
declare -g BOARDFAMILY="rockchip-rk3588"
|
||
|
declare -g BOARD_MAINTAINER="igorpecovnik"
|
||
|
declare -g BOOT_SOC="rk3588" # Just to avoid errors in rockchip64_commmon
|
||
|
declare -g KERNEL_TARGET="legacy"
|
||
|
declare -g IMAGE_PARTITION_TABLE="gpt"
|
||
|
declare -g BOOT_FDT_FILE="rockchip/rk3588s-khadas-edge2.dtb" # Specific to this board
|
||
|
|
||
|
declare -g BLUETOOTH_HCIATTACH_PARAMS="-s 115200 /dev/ttyS9 bcm43xx 1500000" # For the bluetooth-hciattach extension
|
||
|
enable_extension "bluetooth-hciattach" # Enable the bluetooth-hciattach extension
|
||
|
|
||
|
declare -g KHADAS_OOWOW_BOARD_ID="Edge2" # for use with EXT=output-image-oowow
|
||
|
|
||
|
# for the kedge2, we're counting on the blobs+u-boot in SPI working, as it comes from factory. It does not support bootscripts.
|
||
|
function post_family_config_branch_legacy__uboot_kedge2() {
|
||
|
display_alert "$BOARD" "Configuring ($BOARD) non-u-boot" "info"
|
||
|
unset BOOTSOURCE
|
||
|
declare -g BOOTCONFIG='none'
|
||
|
declare -g SRC_EXTLINUX="yes" # For now, use extlinux. Thanks Monka
|
||
|
}
|