mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00
meta-crownbay: add a machine configuration that doesn't use EMGD graphics
This adds a second machine to the meta-crownbay BSP that uses generic vesa graphics instead of the Intel-proprietary straight 'crownbay' version that does. The name of the new machine is 'crownbay-noemgd'. Though the graphics quality isn't as nice, the binaries for this version can be distributed without any need for license click-throughs or the manual step currently required for the EMGD version. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
parent
158f88d766
commit
be72384306
|
@ -5,6 +5,10 @@ BBPATH := "${BBPATH}:${LAYERDIR}"
|
||||||
BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
|
BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
|
||||||
${LAYERDIR}/recipes-*/*/*.bbappend"
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
||||||
|
|
||||||
BBFILE_COLLECTIONS += "crownbay"
|
BBFILE_COLLECTIONS_crownbay += "crownbay"
|
||||||
BBFILE_PATTERN_crownbay := "^${LAYERDIR}/"
|
BBFILE_PATTERN_crownbay := "^${LAYERDIR}/"
|
||||||
BBFILE_PRIORITY_crownbay = "6"
|
BBFILE_PRIORITY_crownbay = "6"
|
||||||
|
|
||||||
|
BBFILE_COLLECTIONS_crownbay-noemgd += "crownbay-noemgd"
|
||||||
|
BBFILE_PATTERN_crownbay-noemgd := "^${LAYERDIR}/"
|
||||||
|
BBFILE_PRIORITY_crownbay-noemgd = "6"
|
||||||
|
|
45
meta-crownbay/conf/machine/crownbay-noemgd.conf
Normal file
45
meta-crownbay/conf/machine/crownbay-noemgd.conf
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
#@TYPE: Machine
|
||||||
|
#@NAME: crownbay-noemgd
|
||||||
|
|
||||||
|
#@DESCRIPTION: Machine configuration for Crown Bay systems, without Intel-proprietary graphics bits
|
||||||
|
# i.e. E660 + EG20T
|
||||||
|
|
||||||
|
TARGET_ARCH = "i586"
|
||||||
|
PACKAGE_EXTRA_ARCHS = "x86 atom"
|
||||||
|
|
||||||
|
include conf/machine/include/tune-atom.inc
|
||||||
|
|
||||||
|
BASE_PACKAGE_ARCH="atom"
|
||||||
|
|
||||||
|
MACHINE_FEATURES = "kernel26 screen keyboard pci usbhost ext2 ext3 x86 \
|
||||||
|
acpi serial usbgadget"
|
||||||
|
|
||||||
|
KERNEL_IMAGETYPE = "bzImage"
|
||||||
|
|
||||||
|
PREFERRED_PROVIDER_virtual/kernel ?= "linux-wrs"
|
||||||
|
PREFERRED_PROVIDER_virtual/libx11 ?= "libx11-trim"
|
||||||
|
PREFERRED_PROVIDER_virtual/libgl ?= "mesa-dri"
|
||||||
|
PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xf86-dri-lite"
|
||||||
|
PREFERRED_PROVIDER_virtual/xserver-xf86 ?= "xserver-xf86-dri-lite"
|
||||||
|
XSERVER ?= "xserver-xf86-dri-lite \
|
||||||
|
xf86-input-mouse \
|
||||||
|
xf86-input-keyboard \
|
||||||
|
xf86-input-evdev \
|
||||||
|
xf86-input-synaptics \
|
||||||
|
xf86-video-vesa"
|
||||||
|
|
||||||
|
SERIAL_CONSOLE = "115200 ttyS0"
|
||||||
|
|
||||||
|
MACHINE_EXTRA_RRECOMMENDS = "kernel-modules eee-acpi-scripts"
|
||||||
|
|
||||||
|
GUI_MACHINE_CLASS = "bigscreen"
|
||||||
|
|
||||||
|
IMAGE_ROOTFS_SIZE_ext3 = "2000000"
|
||||||
|
|
||||||
|
IMAGE_FSTYPES ?= "ext3 cpio.gz"
|
||||||
|
|
||||||
|
GLIBC_ADDONS = "nptl"
|
||||||
|
GLIBC_EXTRA_OECONF = "--with-tls"
|
||||||
|
|
||||||
|
SRCREV_machine_pn-linux-wrs_crownbay-noemgd = "f0afe10edaed24575eb115ad69c366fc24ea9380"
|
||||||
|
SRCREV_meta_pn-linux-wrs = "2f315f96f26a93d22fe0fc524de629e7c46b8469"
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Assume a USB mouse and keyboard are connected
|
||||||
|
HAVE_TOUCHSCREEN=0
|
||||||
|
HAVE_KEYBOARD=1
|
|
@ -0,0 +1,26 @@
|
||||||
|
Section "Device"
|
||||||
|
Identifier "Generic VESA"
|
||||||
|
Driver "vesa"
|
||||||
|
EndSection
|
||||||
|
|
||||||
|
Section "Monitor"
|
||||||
|
Identifier "Generic Monitor"
|
||||||
|
Option "DPMS"
|
||||||
|
EndSection
|
||||||
|
|
||||||
|
Section "Screen"
|
||||||
|
Identifier "Default Screen"
|
||||||
|
Device "Generic VESA"
|
||||||
|
Monitor "Generic Monitor"
|
||||||
|
DefaultDepth 24
|
||||||
|
EndSection
|
||||||
|
|
||||||
|
Section "ServerLayout"
|
||||||
|
Identifier "Default Layout"
|
||||||
|
Screen "Default Screen"
|
||||||
|
EndSection
|
||||||
|
|
||||||
|
Section "ServerFlags"
|
||||||
|
Option "DontZap" "0"
|
||||||
|
Option "AutoAddDevices" "False"
|
||||||
|
EndSection
|
|
@ -1,3 +1,7 @@
|
||||||
FILESEXTRAPATHS := "${THISDIR}/${PN}"
|
FILESEXTRAPATHS := "${THISDIR}/${PN}"
|
||||||
|
|
||||||
COMPATIBLE_MACHINE_crownbay = "crownbay"
|
COMPATIBLE_MACHINE_crownbay = "crownbay"
|
||||||
WRMACHINE_crownbay = "crownbay"
|
WRMACHINE_crownbay = "crownbay"
|
||||||
|
|
||||||
|
COMPATIBLE_MACHINE_crownbay-noemgd = "crownbay-noemgd"
|
||||||
|
WRMACHINE_crownbay-noemgd = "crownbay"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user