* 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
29 lines
904 B
Plaintext
29 lines
904 B
Plaintext
# Amlogic S805 C1 quad core 1GB RAM SoC GBE
|
|
BOARD_NAME="Odroid C1"
|
|
BOARD_VENDOR="hardkernel"
|
|
BOARDFAMILY="meson8b"
|
|
BOARD_MAINTAINER="juanlufont"
|
|
KERNEL_TARGET="current"
|
|
KERNEL_TEST_TARGET="current"
|
|
|
|
BOOTDIR='u-boot-odroidc1'
|
|
BOOTSOURCE='https://github.com/hardkernel/u-boot.git'
|
|
BOOTBRANCH='branch:odroidc-v2011.03'
|
|
BOOTPATCHDIR="legacy"
|
|
UBOOT_COMPILER="arm-linux-gnueabi-"
|
|
UBOOT_USE_GCC='< 4.9'
|
|
BOOTCONFIG="odroidc_config"
|
|
BOOTSCRIPT="boot-odroid-c1.ini:boot.ini"
|
|
|
|
UBOOT_TARGET_MAP=';;sd_fuse/bl1.bin.hardkernel sd_fuse/u-boot.bin'
|
|
|
|
BOOTSIZE="200"
|
|
BOOTFS_TYPE="fat"
|
|
|
|
write_uboot_platform() {
|
|
dd if=$1/bl1.bin.hardkernel of=$2 bs=1 count=442 conv=fsync > /dev/null 2>&1
|
|
dd if=$1/bl1.bin.hardkernel of=$2 bs=512 skip=1 seek=1 conv=fsync > /dev/null 2>&1
|
|
dd if=$1/u-boot.bin of=$2 bs=512 seek=64 conv=fsync > /dev/null 2>&1
|
|
dd if=/dev/zero of=$2 seek=1024 count=32 bs=512 conv=fsync > /dev/null 2>&1
|
|
}
|