mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-06-14 23:00:51 +00:00
4f21d3b86b
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
28 lines
771 B
Plaintext
28 lines
771 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: Keystone 2 machine
|
|
#@DESCRIPTION: Machine configuration for the TI Keystone 2
|
|
|
|
require conf/machine/include/keystone.inc
|
|
|
|
IMAGE_FSTYPES += "ubi tar.gz cpio"
|
|
|
|
SERIAL_CONSOLE = "115200 ttyS0"
|
|
|
|
SYSVINIT_ENABLED_GETTYS = ""
|
|
|
|
# do ubiattach /dev/ubi_ctrl -m 4
|
|
# From dmesg:
|
|
# UBI: smallest flash I/O unit: 2048
|
|
# UBI: logical eraseblock size: 126976 bytes
|
|
# from ubiattach stdout:
|
|
# UBI device number 0, total 857 LEBs
|
|
# MKUBIFS_ARGS = "-m 2048 -e 129024 -c 857"
|
|
MKUBIFS_ARGS = "-F -m 2048 -e 126976 -c 857"
|
|
|
|
# do ubiattach /dev/ubi_ctrl -m 4
|
|
# from dmesg:
|
|
# UBI: smallest flash I/O unit: 2048
|
|
# UBI: physical eraseblock size: 131072 bytes (128 KiB)
|
|
# UBI: sub-page size: 2048
|
|
UBINIZE_ARGS = "-m 2048 -p 128KiB -s 2048 -O 2048"
|