diff options
| author | Tom Zanussi <tom.zanussi@intel.com> | 2011-11-19 18:09:39 -0600 |
|---|---|---|
| committer | Tom Zanussi <tom.zanussi@intel.com> | 2011-11-21 09:29:59 -0600 |
| commit | 9e032536dc895ee5f0c577bf00aa9d7d52b8afa3 (patch) | |
| tree | e62acb39e6bf221b3271f337262935ce8ac45c78 /conf/machine | |
| parent | 49a4dfe2f3a44a50788871882cb6678af472d68c (diff) | |
| download | meta-intel-9e032536dc895ee5f0c577bf00aa9d7d52b8afa3.tar.gz | |
ia32-base.inc: new include 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 'conf/machine')
| -rw-r--r-- | conf/machine/include/ia32-base.inc | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/conf/machine/include/ia32-base.inc b/conf/machine/include/ia32-base.inc new file mode 100644 index 00000000..5cf2f4f3 --- /dev/null +++ b/conf/machine/include/ia32-base.inc | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | # | ||
| 2 | # base machine settings for ia32-architecture BSPs | ||
| 3 | # | ||
| 4 | |||
| 5 | # | ||
| 6 | # common settings for Intel-based machines | ||
| 7 | # | ||
| 8 | MACHINE_FEATURES += "kernel26 screen keyboard pci usbhost ext2 ext3 x86 \ | ||
| 9 | acpi serial usbgadget" | ||
| 10 | |||
| 11 | MACHINE_EXTRA_RRECOMMENDS += "kernel-modules eee-acpi-scripts" | ||
| 12 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "grub" | ||
| 13 | |||
| 14 | IMAGE_FSTYPES += "ext3 cpio.gz live" | ||
| 15 | |||
| 16 | KERNEL_IMAGETYPE ?= "bzImage" | ||
| 17 | |||
| 18 | SERIAL_CONSOLE ?= "115200 ttyS0" | ||
| 19 | |||
| 20 | # | ||
| 21 | # glibc-related variables | ||
| 22 | # | ||
| 23 | GLIBC_ADDONS ?= "nptl" | ||
| 24 | GLIBC_EXTRA_OECONF += "--with-tls" | ||
| 25 | |||
| 26 | # | ||
| 27 | # kernel-related variables | ||
| 28 | # | ||
| 29 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" | ||
| 30 | PREFERRED_VERSION_linux-yocto ?= "3.0%" | ||
| 31 | PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers-yocto" | ||
| 32 | |||
| 33 | # | ||
| 34 | # XSERVER subcomponents, used to build the XSERVER variable | ||
| 35 | # | ||
| 36 | XSERVER_IA32_BASE = "xserver-xorg \ | ||
| 37 | xf86-input-mouse \ | ||
| 38 | xf86-input-keyboard \ | ||
| 39 | xf86-input-evdev \ | ||
| 40 | xf86-input-synaptics \ | ||
| 41 | mesa-dri \ | ||
| 42 | " | ||
| 43 | |||
| 44 | XSERVER_IA32_EXT = "xserver-xorg-extension-dri \ | ||
| 45 | xserver-xorg-extension-dri2 \ | ||
| 46 | xserver-xorg-extension-glx \ | ||
| 47 | xserver-xorg-extension-extmod \ | ||
| 48 | xserver-xorg-extension-dbe \ | ||
| 49 | xserver-xorg-module-libint10 \ | ||
| 50 | " | ||
| 51 | |||
| 52 | XSERVER_IA32_I915 = "xf86-video-intel \ | ||
| 53 | mesa-dri-driver-i965 \ | ||
| 54 | " | ||
| 55 | |||
| 56 | XSERVER_IA32_EMGD = "emgd-driver-bin" | ||
| 57 | |||
| 58 | XSERVER_IA32_VESA = "xf86-video-vesa" | ||
