mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 22:37:56 +00:00
4d99e63181
* Add sgx to MACHINE_FEATURES to indicate that a particular machine supports sgx. * TI chips are available in multiple variants including some that supports sgx while others do not. * By adding sgx as a machine feature other layers can create generic packagegroups or images for a particular soc but will only include sgx dependencies if the particular machine has sgx support. Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
27 lines
660 B
Plaintext
27 lines
660 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: BeagleBone machine
|
|
#@DESCRIPTION: Machine configuration for the http://beagleboard.org/bone board
|
|
|
|
PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
|
|
XSERVER = "xserver-xorg \
|
|
xf86-input-evdev \
|
|
xf86-video-fbdev"
|
|
|
|
# Only has DVI connector for external screen
|
|
GUI_MACHINE_CLASS = "bigscreen"
|
|
|
|
require conf/machine/include/ti33x.inc
|
|
EXTRA_IMAGEDEPENDS = "u-boot"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel = "linux-ti33x-psp"
|
|
|
|
IMAGE_FSTYPES += "tar.bz2 "
|
|
|
|
# Guesswork
|
|
SERIAL_CONSOLE = "115200 ttyO0"
|
|
|
|
UBOOT_MACHINE = "am335x_evm_config"
|
|
|
|
# and sdio
|
|
MACHINE_FEATURES = "kernel26 screen apm usbgadget usbhost vfat alsa sgx"
|