mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 09:49:32 +02:00
Closes [YOCTO #1203] Using the hard floating point abi is incompatible with some binary libaries and 3D support for the Beagleboard. While we do not provide these in poky and meta-yocto, softfp should remain the default for compatibility reasons. Provide documentation and a commented assignment to DEFAULT_TUNE instructing how to enable hardfp, but leave it disabled by default. Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Jason Kridner <jkridner@beagleboard.org> CC: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
#@TYPE: Machine
|
|
#@NAME: Beagleboard machine
|
|
#@DESCRIPTION: Machine configuration for the http://beagleboard.org/ board
|
|
|
|
PREFERRED_PROVIDER_virtual/xserver = "xserver-xf86-lite"
|
|
XSERVER = "xserver-xf86-lite \
|
|
xf86-input-evdev \
|
|
xf86-input-mouse \
|
|
xf86-video-omapfb \
|
|
xf86-input-keyboard"
|
|
|
|
# Ship all kernel modules by default
|
|
MACHINE_EXTRA_RRECOMMENDS = " kernel-modules"
|
|
|
|
# Setup sane default mixer settings
|
|
MACHINE_EXTRA_RRECOMMENDS += "beagleboard-audio"
|
|
|
|
# Allow for MMC booting (required by the NAND-less Beagleboard XM)
|
|
EXTRA_IMAGEDEPENDS += "u-boot x-load"
|
|
|
|
# Uncomment the following line to enable the hard floating point abi. Note that
|
|
# this breaks some binary libraries and 3D (neither of which ship with
|
|
# meta-yocto). For maximum compatibility, leave this disabled.
|
|
#DEFAULTTUNE ?= "cortexa8hf-neon"
|
|
include conf/machine/include/tune-cortexa8.inc
|
|
|
|
IMAGE_FSTYPES += "tar.bz2 jffs2"
|
|
EXTRA_IMAGECMD_jffs2 = "-lnp "
|
|
|
|
# 2.6.37 and later kernels use OMAP_SERIAL, ttyO2
|
|
# earlier kernels use ttyS2
|
|
SERIAL_CONSOLE = "115200 ttyO2"
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
|
|
#PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers-yocto"
|
|
|
|
KERNEL_IMAGETYPE = "uImage"
|
|
|
|
UBOOT_MACHINE = "omap3_beagle_config"
|
|
UBOOT_ENTRYPOINT = "0x80008000"
|
|
UBOOT_LOADADDRESS = "0x80008000"
|
|
|
|
MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat alsa"
|