diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2011-11-15 22:55:01 -0600 |
---|---|---|
committer | Tom Zanussi <tom.zanussi@intel.com> | 2011-11-21 09:30:00 -0600 |
commit | 6f65f6e44b48adc43c299c0d5927eadcfea748f4 (patch) | |
tree | ab4dcf364fbee50c81673f894d85464e7889a490 | |
parent | d2b3d84827ffb1edf01932255f650f2f7f9496d4 (diff) | |
download | meta-intel-6f65f6e44b48adc43c299c0d5927eadcfea748f4.tar.gz |
Have n450.conf use the common ia32-base .inc file and remove the
open-coded machine settings.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
-rw-r--r-- | meta-n450/conf/machine/n450.conf | 39 |
1 files changed, 6 insertions, 33 deletions
diff --git a/meta-n450/conf/machine/n450.conf b/meta-n450/conf/machine/n450.conf index b28f57f3..7210da8c 100644 --- a/meta-n450/conf/machine/n450.conf +++ b/meta-n450/conf/machine/n450.conf | |||
@@ -4,44 +4,17 @@ | |||
4 | #@DESCRIPTION: Machine configuration for Intel 1-N450 based systems | 4 | #@DESCRIPTION: Machine configuration for Intel 1-N450 based systems |
5 | 5 | ||
6 | include conf/machine/include/tune-atom.inc | 6 | include conf/machine/include/tune-atom.inc |
7 | include conf/machine/include/ia32-base.inc | ||
7 | 8 | ||
8 | MACHINE_FEATURES = "kernel26 screen keyboard pci usbhost ext2 ext3 x86 \ | 9 | XSERVER ?= "${XSERVER_IA32_BASE} \ |
9 | acpi serial" | 10 | ${XSERVER_IA32_EXT} \ |
10 | 11 | ${XSERVER_IA32_I915} \ | |
11 | KERNEL_IMAGETYPE = "bzImage" | 12 | " |
12 | |||
13 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" | ||
14 | PREFERRED_VERSION_linux-yocto = "3.0%" | ||
15 | PREFERRED_PROVIDER_linux-libc-headers ?= "linux-libc-headers-yocto" | ||
16 | PREFERRED_PROVIDER_virtual/libx11 ?= "libx11-trim" | ||
17 | PREFERRED_PROVIDER_virtual/libgl ?= "mesa-dri" | ||
18 | PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg" | ||
19 | XSERVER ?= "xserver-xorg \ | ||
20 | xserver-xorg-extension-dri \ | ||
21 | xserver-xorg-extension-dri2 \ | ||
22 | xserver-xorg-extension-glx \ | ||
23 | xserver-xorg-extension-extmod \ | ||
24 | xserver-xorg-extension-dbe \ | ||
25 | xserver-xorg-module-libint10 \ | ||
26 | xf86-input-mouse \ | ||
27 | xf86-input-keyboard \ | ||
28 | xf86-input-evdev \ | ||
29 | xf86-input-synaptics \ | ||
30 | xf86-video-intel \ | ||
31 | mesa-dri-driver-i915" | ||
32 | 13 | ||
33 | SYSLINUX_OPTS = "serial 0 115200" | 14 | SYSLINUX_OPTS = "serial 0 115200" |
34 | SERIAL_CONSOLE = "115200 ttyS0" | 15 | SERIAL_CONSOLE = "115200 ttyS0" |
35 | APPEND += "console=ttyS0,115200 console=tty0" | 16 | APPEND += "console=ttyS0,115200 console=tty0" |
36 | 17 | ||
37 | MACHINE_EXTRA_RRECOMMENDS = "kernel-modules eee-acpi-scripts n450-audio" | 18 | MACHINE_EXTRA_RRECOMMENDS += "n450-audio" |
38 | |||
39 | IMAGE_FSTYPES ?= "ext3 cpio.gz live" | ||
40 | |||
41 | GLIBC_ADDONS = "nptl" | ||
42 | GLIBC_EXTRA_OECONF = "--with-tls" | ||
43 | 19 | ||
44 | ROOTLESS_X = "1" | 20 | ROOTLESS_X = "1" |
45 | |||
46 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS = "grub" | ||
47 | |||