凌云实验室IGKBoard开发板的Yocto meta-layer文件
guowenxue
2023-07-24 ca921096cd96f0b3c5153f83b1a2a453e9bd2cca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#@TYPE: Machine
#@NAME: LingYun IoT Gateway Kit Board
#@SOC: i.MX6ULL
#@DESCRIPTION: Machine configuration for LingYun IoT Gateway Kit Board
 
# Add new machine igkboard-6ull
MACHINEOVERRIDES =. "mx6:mx6ul:mx6ull:igkboardbase:igkboard-6ull"
 
include conf/machine/include/imx-base.inc
include conf/machine/include/arm/armv7a/tune-cortexa7.inc
 
# Device tree file generated during kernel compilation
KERNEL_DEVICETREE = "${MACHINE}.dtb"
 
# Uboot comfiguration
UBOOT_CONFIG ??= "sd"
UBOOT_CONFIG[sd] = "${MACHINE}_defconfig,sdcard"
 
# Define the kernel boot file
IMAGE_BOOT_FILES = " \
    ${KERNEL_IMAGETYPE} \
    ${KERNEL_DEVICETREE} \
"
# Remove unused optee bcm4339 bcm43455
MACHINE_FEATURES += "wifi bluetooth"
 
# Refer to linux-imx/drivers/tty/serial/imx.c
SERIAL_CONSOLES = "115200;ttymxc0"
 
# /etc/hostname (uname -a)
hostname_pn-base-files = "igkboard"