* 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
37 lines
962 B
Plaintext
37 lines
962 B
Plaintext
# MBa8MPxL with TQMa8MPxL
|
|
BOARD_NAME="MBa8MPxL"
|
|
BOARD_VENDOR="tqgroup"
|
|
BOARDFAMILY="imx8m"
|
|
BOARD_MAINTAINER="schmiedelm"
|
|
HAS_VIDEO_OUTPUT="yes"
|
|
ATF_PLAT="imx8mp"
|
|
ATF_UART_BASE="0x30a60000"
|
|
BOOTCONFIG="tqma8mpxl_multi_mba8mpxl_defconfig"
|
|
KERNEL_TARGET="current"
|
|
DEFAULT_CONSOLE="serial"
|
|
SERIALCON="ttymxc3"
|
|
BOOT_FDT_FILE="freescale/imx8mp-tqma8mpql-mba8mpxl.dtb"
|
|
ASOUND_STATE="asound.state.tqma"
|
|
|
|
function post_family_tweaks_bsp__mba8mpxl() {
|
|
|
|
# fix X11 config
|
|
mkdir -p "$destination"/etc/X11/xorg.conf.d
|
|
|
|
cat <<- XORG_HDMI_CONF > "$destination"/etc/X11/xorg.conf.d/10-hdmi.conf
|
|
Section "Device"
|
|
Identifier "etnaviv"
|
|
Driver "modesetting"
|
|
Option "kmsdev" "/dev/dri/card1"
|
|
Option "AccelMethod" "none" ### "glamor" to enable 3D acceleration, "none" to disable.
|
|
Option "Atomic" "On"
|
|
EndSection
|
|
|
|
Section "ServerFlags"
|
|
Option "AutoAddGPU" "false"
|
|
Option "DRI" "3"
|
|
EndSection
|
|
XORG_HDMI_CONF
|
|
|
|
}
|