armbian-build/config/boards/phytiumpi.conf
Igor 4850dbfbf9
Add BOARD_VENDOR to board configs (#9063)
* 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
2025-12-14 10:28:37 +01:00

21 lines
915 B
Plaintext

# Phytium PhytiumPi quad core 4GB SoC GBe USB3
BOARD_NAME="Phytium Pi"
BOARD_VENDOR="phytium"
BOARDFAMILY="phytium-embedded"
BOARD_MAINTAINER="chainsx"
KERNEL_TARGET="current,legacy"
KERNEL_TEST_TARGET="current"
BOOT_FDT_FILE="phytium/phytiumpi_firefly.dtb"
FULL_DESKTOP="yes"
BOOT_LOGO="desktop"
SRC_EXTLINUX="yes"
SRC_CMDLINE="console=ttyAMA1,115200 earlycon=pl011,0x2800d000 rootfstype=ext4 rootwait cma=256m"
function post_family_tweaks__phytiumpi() {
display_alert "Applying bt blobs"
cp -v "$SRC/packages/blobs/phytiumpi/rtlbt/systemd-hciattach.service" "$SDCARD/etc/systemd/system/systemd-hciattach.service"
cp -v "$SRC/packages/blobs/phytiumpi/rtlbt/rtk_hciattach" "$SDCARD/usr/bin/rtk_hciattach"
cp -v "$SRC/packages/blobs/phytiumpi/rtlbt/rtl8821c_config" "$SDCARD/lib/firmware/rtlbt/rtl8821c_config"
cp -v "$SRC/packages/blobs/phytiumpi/rtlbt/rtl8821c_fw" "$SDCARD/lib/firmware/rtlbt/rtl8821c_fw"
}