mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
35 lines
916 B
Plaintext
35 lines
916 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: Keystone 2 K2L machine
|
|
#@DESCRIPTION: Machine configuration for the TI Keystone 2 K2L EVM
|
|
|
|
require conf/machine/include/keystone.inc
|
|
|
|
MACHINE_FEATURES += "opencl"
|
|
|
|
UBOOT_MACHINE = "k2l_evm_config"
|
|
|
|
BOOT_MONITOR_MAKE_TARGET = "k2l"
|
|
|
|
IMAGE_FSTYPES += "ubifs ubi tar.gz tar.xz cpio"
|
|
|
|
SERIAL_CONSOLE = ""
|
|
SERIAL_CONSOLES = "115200;ttyS0 115200;ttyO0"
|
|
SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"
|
|
|
|
SYSVINIT_ENABLED_GETTYS = ""
|
|
|
|
# do ubiattach /dev/ubi_ctrl -m 4
|
|
# From dmesg:
|
|
# UBI: smallest flash I/O unit: 4096
|
|
# UBI: logical eraseblock size: 253952 bytes
|
|
# from ubiattach stdout:
|
|
# UBI device number 0, total 1926 LEBs
|
|
MKUBIFS_ARGS = "-F -m 4096 -e 253952 -c 1926"
|
|
|
|
# do ubiattach /dev/ubi_ctrl -m 4
|
|
# from dmesg:
|
|
# UBI: smallest flash I/O unit: 4096
|
|
# UBI: physical eraseblock size: 256 KiB
|
|
# UBI: sub-page size: 4096
|
|
UBINIZE_ARGS = "-m 4096 -p 256KiB -s 4096 -O 4096"
|