mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
SDKs or other users of meta-ti can still use one of the other recipes for stability or featureset, by setting PREFERRED_PROVIDER in their config. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
#@TYPE: Machine
|
|
#@NAME: Beagleboard machine
|
|
#@DESCRIPTION: Machine configuration for the http://beagleboard.org/ board
|
|
|
|
require conf/machine/include/omap3.inc
|
|
|
|
# Only has DVI connector for external screen
|
|
GUI_MACHINE_CLASS = "bigscreen"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel = "linux-mainline"
|
|
PREFERRED_PROVIDER_virtual/bootloader = "u-boot-beagleboard"
|
|
PREFERRED_PROVIDER_u-boot = "u-boot-beagleboard"
|
|
|
|
IMAGE_FSTYPES += "tar.gz ubi"
|
|
EXTRA_IMAGECMD_jffs2 = "-lnp"
|
|
|
|
SERIAL_CONSOLE = "115200 ttyO2"
|
|
|
|
UBOOT_MACHINE = "omap3_beagle_config"
|
|
|
|
# do ubiattach /dev/ubi_ctrl -m 4
|
|
# From dmesg:
|
|
# UBI: smallest flash I/O unit: 2048
|
|
# UBI: logical eraseblock size: 129024 bytes
|
|
# from ubiattach stdout:
|
|
# UBI device number 0, total 1996 LEBs
|
|
#
|
|
# Beagleboard C5 has 3998 LEBS (490MiB)
|
|
MKUBIFS_ARGS = "-m 2048 -e 129024 -c 1996"
|
|
|
|
# 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: 512
|
|
UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512"
|
|
|
|
# For a modularized kernel we want to drag in networking, sound, rtc etc."
|
|
MACHINE_EXTRA_RRECOMMENDS = "kernel-module-smsc95xx kernel-module-snd-soc-twl4030 kernel-module-rtc-twl \
|
|
kernel-module-snd-soc-omap kernel-module-snd-soc-omap-mcbsp kernel-module-snd-soc-omap3beagle"
|