diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-05 13:25:58 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-05 17:32:15 +0100 |
| commit | 2000698b17011bbde1c3e5bb01a7d6763316db5a (patch) | |
| tree | 5080d6d280487d6a8341c18ae56706e5157a0823 /meta-yocto-bsp/conf/machine/beagleboard.conf | |
| parent | 9d6630d1749486e38066650e1de5849c9524adbc (diff) | |
| download | poky-2000698b17011bbde1c3e5bb01a7d6763316db5a.tar.gz | |
meta-yocto: Split into distro and bsp components
Now we have settled on best practises and compliance criteria, bring meta-yocto
into compliance by separating out the hardware support components into
meta-yocto-bsp leaving policy configuration in meta-yocto.
Also rename the meta-yocto scripts directory to OE-Core can be a clearly
isolated component in poky.
(From meta-yocto rev: eac90e27a032ea23d9a4f35c7eef8b1940c80e22)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp/conf/machine/beagleboard.conf')
| -rw-r--r-- | meta-yocto-bsp/conf/machine/beagleboard.conf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-yocto-bsp/conf/machine/beagleboard.conf b/meta-yocto-bsp/conf/machine/beagleboard.conf new file mode 100644 index 0000000000..aa8fa07be4 --- /dev/null +++ b/meta-yocto-bsp/conf/machine/beagleboard.conf | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | #@TYPE: Machine | ||
| 2 | #@NAME: Beagleboard machine | ||
| 3 | #@DESCRIPTION: Machine configuration for the http://beagleboard.org/ board | ||
| 4 | |||
| 5 | PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg-lite" | ||
| 6 | XSERVER ?= "xserver-xorg-lite \ | ||
| 7 | xf86-input-evdev \ | ||
| 8 | xf86-input-mouse \ | ||
| 9 | xf86-video-omapfb \ | ||
| 10 | xf86-input-keyboard" | ||
| 11 | |||
| 12 | # Ship all kernel modules by default | ||
| 13 | MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" | ||
| 14 | |||
| 15 | # Allow for MMC booting (required by the NAND-less Beagleboard XM) | ||
| 16 | EXTRA_IMAGEDEPENDS += "u-boot x-load" | ||
| 17 | |||
| 18 | # Uncomment the following line to enable the hard floating point abi. Note that | ||
| 19 | # this breaks some binary libraries and 3D (neither of which ship with | ||
| 20 | # meta-yocto). For maximum compatibility, leave this disabled. | ||
| 21 | #DEFAULTTUNE ?= "cortexa8hf-neon" | ||
| 22 | include conf/machine/include/tune-cortexa8.inc | ||
| 23 | |||
| 24 | IMAGE_FSTYPES += "tar.bz2 jffs2" | ||
| 25 | EXTRA_IMAGECMD_jffs2 = "-lnp " | ||
| 26 | |||
| 27 | # 2.6.37 and later kernels use OMAP_SERIAL, ttyO2 | ||
| 28 | # earlier kernels use ttyS2 | ||
| 29 | SERIAL_CONSOLE = "115200 ttyO2" | ||
| 30 | |||
| 31 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" | ||
| 32 | PREFERRED_VERSION_linux-yocto ?= "3.0%" | ||
| 33 | |||
| 34 | KERNEL_IMAGETYPE = "uImage" | ||
| 35 | |||
| 36 | UBOOT_MACHINE = "omap3_beagle_config" | ||
| 37 | UBOOT_ENTRYPOINT = "0x80008000" | ||
| 38 | UBOOT_LOADADDRESS = "0x80008000" | ||
| 39 | |||
| 40 | MACHINE_FEATURES = "apm usbgadget usbhost vfat alsa" | ||
