diff options
-rw-r--r-- | meta/conf/distro/include/poky-default-revisions.inc | 1 | ||||
-rw-r--r-- | meta/conf/machine/qemux86-64.conf | 35 | ||||
-rw-r--r-- | meta/packages/linux/linux-wrs_git.bb | 1 |
3 files changed, 37 insertions, 0 deletions
diff --git a/meta/conf/distro/include/poky-default-revisions.inc b/meta/conf/distro/include/poky-default-revisions.inc index 44723a0a6d..f8262fdcfb 100644 --- a/meta/conf/distro/include/poky-default-revisions.inc +++ b/meta/conf/distro/include/poky-default-revisions.inc | |||
@@ -72,6 +72,7 @@ SRCREV_pn-linux-wrs_qemuarm ??= "caf3b232f003ac136f0fc99143cac027863af74b" | |||
72 | SRCREV_pn-linux-wrs_qemumips ??= "5a7c9d5a35cd43308a2afd212824b670553179af" | 72 | SRCREV_pn-linux-wrs_qemumips ??= "5a7c9d5a35cd43308a2afd212824b670553179af" |
73 | SRCREV_pn-linux-wrs_qemuppc ??= "bc33a1f5b5703df9ac169835161dc963abc55f6b" | 73 | SRCREV_pn-linux-wrs_qemuppc ??= "bc33a1f5b5703df9ac169835161dc963abc55f6b" |
74 | SRCREV_pn-linux-wrs_qemux86 ??= "09a39c638dd65dc27c549c119abe1af2631b2ae0" | 74 | SRCREV_pn-linux-wrs_qemux86 ??= "09a39c638dd65dc27c549c119abe1af2631b2ae0" |
75 | SRCREV_pn-linux-wrs_qemux86-64 ??= "09a39c638dd65dc27c549c119abe1af2631b2ae0" | ||
75 | SRCREV_pn-linux-libc-headers-wrs ??= "09a39c638dd65dc27c549c119abe1af2631b2ae0" | 76 | SRCREV_pn-linux-libc-headers-wrs ??= "09a39c638dd65dc27c549c119abe1af2631b2ae0" |
76 | SRCREV_pn-matchbox-config-gtk ??= "2081" | 77 | SRCREV_pn-matchbox-config-gtk ??= "2081" |
77 | SRCREV_pn-matchbox-desktop-sato ??= "76" | 78 | SRCREV_pn-matchbox-desktop-sato ??= "76" |
diff --git a/meta/conf/machine/qemux86-64.conf b/meta/conf/machine/qemux86-64.conf new file mode 100644 index 0000000000..85d79f686f --- /dev/null +++ b/meta/conf/machine/qemux86-64.conf | |||
@@ -0,0 +1,35 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: common_pc | ||
3 | #@DESCRIPTION: Machine configuration for running a common x86 | ||
4 | |||
5 | TARGET_ARCH = "x86_64" | ||
6 | PACKAGE_EXTRA_ARCHS = "x86" | ||
7 | |||
8 | PREFERRED_PROVIDER_virtual/libgl = "mesa-dri" | ||
9 | PREFERRED_PROVIDER_virtual/libx11 ?= "libx11-trim" | ||
10 | PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xf86-dri-lite" | ||
11 | PREFERRED_PROVIDER_virtual/xserver-xf86 ?= "xserver-xf86-dri-lite" | ||
12 | |||
13 | require conf/machine/include/qemu.inc | ||
14 | |||
15 | MACHINE_FEATURES += "x86" | ||
16 | |||
17 | KERNEL_IMAGETYPE = "bzImage" | ||
18 | |||
19 | SERIAL_CONSOLE = "115200 ttyS0" | ||
20 | |||
21 | # We bypass swrast but we need it to be present for X to load correctly | ||
22 | XSERVER ?= "xserver-xf86-dri-lite \ | ||
23 | mesa-dri-driver-swrast \ | ||
24 | xf86-input-vmmouse \ | ||
25 | xf86-input-keyboard \ | ||
26 | xf86-input-evdev \ | ||
27 | xf86-video-vmware \ | ||
28 | qemugl" | ||
29 | |||
30 | GLIBC_ADDONS = "nptl" | ||
31 | GLIBC_EXTRA_OECONF = "--with-tls" | ||
32 | |||
33 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS = "v86d" | ||
34 | |||
35 | TARGET_CC_ARCH = "-march=core2 -m64" | ||
diff --git a/meta/packages/linux/linux-wrs_git.bb b/meta/packages/linux/linux-wrs_git.bb index 3986fc7984..d6a81d1a59 100644 --- a/meta/packages/linux/linux-wrs_git.bb +++ b/meta/packages/linux/linux-wrs_git.bb | |||
@@ -15,6 +15,7 @@ SRC_URI = "git://git.pokylinux.org/linux-2.6-windriver.git;protocol=git;fullclon | |||
15 | 15 | ||
16 | WRMACHINE = "${MACHINE}" | 16 | WRMACHINE = "${MACHINE}" |
17 | WRMACHINE_qemux86 = "common_pc" | 17 | WRMACHINE_qemux86 = "common_pc" |
18 | WRMACHINE_qemux86-64 = "common_pc_64" | ||
18 | WRMACHINE_qemuppc = "qemu_ppc32" | 19 | WRMACHINE_qemuppc = "qemu_ppc32" |
19 | WRMACHINE_qemumips = "mti_malta32_be" | 20 | WRMACHINE_qemumips = "mti_malta32_be" |
20 | WRMACHINE_qemuarm = "arm_versatile_926ejs" | 21 | WRMACHINE_qemuarm = "arm_versatile_926ejs" |