mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 09:32:17 +02:00
The existing preferred yocto kernel wasn't named appropriately and needs to be updated. In keeping the changes small and isolated, this commit simply renames the recipe and some internal variables. Future commits will refactor the code into more usable blocks. Now that linuy-wrs has been renamed linux-yocto, we need to rename and update an board configurations and append files. Now that linux-wrs has been renamed linux-yocto, we need to update the SRCREVs to have the new name. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
35 lines
914 B
Plaintext
35 lines
914 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: Beagleboard machine
|
|
#@DESCRIPTION: Machine configuration for the http://beagleboard.org/ board
|
|
TARGET_ARCH = "arm"
|
|
PACKAGE_EXTRA_ARCHS = "armv4 armv4t armv5te armv6 armv7 armv7a"
|
|
|
|
PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive"
|
|
XSERVER = "xserver-kdrive-fbdev"
|
|
|
|
# Only has DVI connector for external screen
|
|
GUI_MACHINE_CLASS = "bigscreen"
|
|
|
|
#Ship all kernel modules till the board support has matured enough
|
|
MACHINE_EXTRA_RRECOMMENDS = " kernel-modules"
|
|
|
|
#include conf/machine/include/tune-arm1136jf-s.inc
|
|
include conf/machine/include/tune-cortexa8.inc
|
|
|
|
IMAGE_FSTYPES += "tar.bz2 jffs2"
|
|
EXTRA_IMAGECMD_jffs2 = "-lnp "
|
|
|
|
# Guesswork
|
|
SERIAL_CONSOLE = "115200 ttyS2"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel = "linux-yocto"
|
|
|
|
KERNEL_IMAGETYPE = "uImage"
|
|
|
|
UBOOT_ENTRYPOINT = "0x80008000"
|
|
UBOOT_LOADADDRESS = "0x80008000"
|
|
|
|
|
|
# and sdio
|
|
MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat alsa"
|