mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
Correct the name of the variable used to define the size of the logo: GUI_MACHINE_CLASS renamed MACHINE_GUI_CLASS. Signed-off-by: Thomas Perrot <thomas.perrot@tupi.fr> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
37 lines
1.1 KiB
Plaintext
37 lines
1.1 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
|
|
MACHINE_GUI_CLASS = "bigscreen"
|
|
|
|
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"
|