diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2012-08-24 23:34:47 -0500 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-08-28 08:03:39 -0700 |
commit | 9a8b4fcac639404caa8ac87717118b3380239838 (patch) | |
tree | a91f290008e86af02a2eb13a5435feb891c46e94 /meta/conf/machine | |
parent | c9fdd2fd108fa557d8f60339405447b4ea4d6f64 (diff) | |
download | openembedded-core-9a8b4fcac639404caa8ac87717118b3380239838.tar.gz openembedded-core-9a8b4fcac639404caa8ac87717118b3380239838.tar.bz2 openembedded-core-9a8b4fcac639404caa8ac87717118b3380239838.zip |
ia32-base.inc: new include file
This is the ia32-base.inc moved over from meta-intel. See meta-intel
for the complete history of contributions to this file.
Here's the initial commit text that explains the purpose of this file:
The meta-intel BSPs currently have a number of machine settings common
to all - factor these out into a common include file.
Also add several new intel-specific XSERVER variables for building
XSERVER variables in BSPs.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Diffstat (limited to 'meta/conf/machine')
-rw-r--r-- | meta/conf/machine/include/ia32-base.inc | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/conf/machine/include/ia32-base.inc b/meta/conf/machine/include/ia32-base.inc new file mode 100644 index 0000000000..af583ae184 --- /dev/null +++ b/meta/conf/machine/include/ia32-base.inc @@ -0,0 +1,58 @@ +# +# base machine settings for ia32-architecture BSPs +# + +# +# common settings for Intel-based machines +# +MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \ + acpi serial usbgadget alsa" + +MACHINE_EXTRA_RRECOMMENDS += "kernel-modules eee-acpi-scripts" +MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "grub" + +IMAGE_FSTYPES += "ext3 cpio.gz live" + +KERNEL_IMAGETYPE ?= "bzImage" + +SERIAL_CONSOLE ?= "115200 ttyS0" + +# +# glibc-related variables +# +GLIBC_ADDONS ?= "nptl" + +# +# kernel-related variables +# +PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto" +PREFERRED_VERSION_linux-yocto ??= "3.0%" + +# +# XSERVER subcomponents, used to build the XSERVER variable +# +XSERVER_IA32_BASE = "xserver-xorg \ + xf86-input-mouse \ + xf86-input-keyboard \ + xf86-input-evdev \ + xf86-input-synaptics \ + mesa-dri \ + " + +XSERVER_IA32_EXT = "xserver-xorg-extension-dri \ + xserver-xorg-extension-dri2 \ + xserver-xorg-extension-glx \ + xserver-xorg-extension-extmod \ + xserver-xorg-extension-dbe \ + xserver-xorg-module-libint10 \ + " + +XSERVER_IA32_I915 = "xf86-video-intel \ + mesa-dri-driver-i915 \ + " + +XSERVER_IA32_I965 = "xf86-video-intel \ + mesa-dri-driver-i965 \ + " + +XSERVER_IA32_VESA = "xf86-video-vesa" |