* Add BOARD_VENDOR to board configs * Add BOARD_VENDOR to all board configuration files - Added BOARD_VENDOR variable to board configuration files - Using lowercase vendor slugs (e.g., friendlyelec, radxa, xunlong) - Set 'generic' for boards without clear vendor match - TV box files (.tvb) excluded as they have no clear vendor - Enables better board categorization and vendor-specific handling * Manual adjustements on top of AI matching * Drop doubled definition and add retroid vendor
25 lines
819 B
Plaintext
25 lines
819 B
Plaintext
# Rockchip RK3328 quad core 1GB 2 x GBE USB2
|
|
BOARD_NAME="Nanopi R2C"
|
|
BOARD_VENDOR="friendlyelec"
|
|
BOARDFAMILY="rockchip64"
|
|
BOARD_MAINTAINER=""
|
|
BOOTCONFIG="nanopi-r2s-rk3328_defconfig"
|
|
KERNEL_TARGET="current,edge"
|
|
KERNEL_TEST_TARGET="current"
|
|
DEFAULT_CONSOLE="serial"
|
|
MODULES="g_serial"
|
|
MODULES_BLACKLIST="rockchipdrm analogix_dp dw_mipi_dsi dw_hdmi gpu_sched lima hantro_vpu"
|
|
SERIALCON="ttyS2:1500000,ttyGS0"
|
|
HAS_VIDEO_OUTPUT="no"
|
|
BOOT_FDT_FILE="rockchip/rk3328-nanopi-r2-rev06.dtb"
|
|
|
|
function post_family_tweaks__nanopi-r2c_rename_USB_LAN() {
|
|
display_alert "$BOARD" "Installing board tweaks" "info"
|
|
|
|
# rename USB based network to lan0
|
|
mkdir -p $SDCARD/etc/udev/rules.d/
|
|
echo 'SUBSYSTEM=="net", ACTION=="add", DRIVERS=="r8152", KERNEL=="eth1", NAME="lan0"' > $SDCARD/etc/udev/rules.d/70-rename-lan.rules
|
|
|
|
return 0
|
|
}
|