diff options
author | Zhai Edwin <edwin.zhai@intel.com> | 2010-09-15 11:55:45 +0800 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-09-17 11:33:26 -0700 |
commit | 8e9caafd0b94016568dfccf969a0e326f3645fa6 (patch) | |
tree | 42fd3f1c3ecbadd471b784025c90608a4b8253dc | |
parent | a50dd612adc6dce0af5bae35dad14d4435b5184b (diff) | |
download | poky-8e9caafd0b94016568dfccf969a0e326f3645fa6.tar.gz |
formfactor: Add machconfig in qemux86-64 to avoid HAVE_KEYBOARD unset.
This prevent matchbox-kerboard starting as daemon automatically.
Also fix minor issue of netbase on qemux86-64, and add the machine in
local.conf.sample
[BUGID #308] fixed by this.
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
-rw-r--r-- | meta/conf/local.conf.sample | 1 | ||||
-rwxr-xr-x | meta/recipes-bsp/formfactor/files/qemux86-64/machconfig | 10 | ||||
-rw-r--r-- | meta/recipes-core/netbase/netbase_4.41.bb | 3 |
3 files changed, 13 insertions, 1 deletions
diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample index f9a1431efe..052c1a9406 100644 --- a/meta/conf/local.conf.sample +++ b/meta/conf/local.conf.sample | |||
@@ -20,6 +20,7 @@ MACHINE ?= "qemux86" | |||
20 | 20 | ||
21 | # Other supported machines | 21 | # Other supported machines |
22 | #MACHINE ?= "qemuarm" | 22 | #MACHINE ?= "qemuarm" |
23 | #MACHINE ?= "qemux86-64" | ||
23 | #MACHINE ?= "netbook" | 24 | #MACHINE ?= "netbook" |
24 | #MACHINE ?= "c7x0" | 25 | #MACHINE ?= "c7x0" |
25 | #MACHINE ?= "akita" | 26 | #MACHINE ?= "akita" |
diff --git a/meta/recipes-bsp/formfactor/files/qemux86-64/machconfig b/meta/recipes-bsp/formfactor/files/qemux86-64/machconfig new file mode 100755 index 0000000000..56a2ae2e3c --- /dev/null +++ b/meta/recipes-bsp/formfactor/files/qemux86-64/machconfig | |||
@@ -0,0 +1,10 @@ | |||
1 | HAVE_TOUCHSCREEN=1 | ||
2 | HAVE_KEYBOARD=1 | ||
3 | |||
4 | DISPLAY_CAN_ROTATE=0 | ||
5 | DISPLAY_ORIENTATION=0 | ||
6 | #DISPLAY_WIDTH_PIXELS=640 | ||
7 | #DISPLAY_HEIGHT_PIXELS=480 | ||
8 | #DISPLAY_BPP=16 | ||
9 | DISPLAY_DPI=150 | ||
10 | DISPLAY_SUBPIXEL_ORDER=vrgb | ||
diff --git a/meta/recipes-core/netbase/netbase_4.41.bb b/meta/recipes-core/netbase/netbase_4.41.bb index 90725b241e..8c31df9ac8 100644 --- a/meta/recipes-core/netbase/netbase_4.41.bb +++ b/meta/recipes-core/netbase/netbase_4.41.bb | |||
@@ -38,7 +38,7 @@ do_install () { | |||
38 | 38 | ||
39 | # Disable network manager on machines that commonly do NFS booting | 39 | # Disable network manager on machines that commonly do NFS booting |
40 | case "${MACHINE}" in | 40 | case "${MACHINE}" in |
41 | "omap-3430sdp" | "omap-3430ldp" | "omap-2430sdp" | "qemuarm" | "qemux86" ) | 41 | "omap-3430sdp" | "omap-3430ldp" | "omap-2430sdp" | "qemuarm" | "qemux86" | "qemux86-64" ) |
42 | touch ${D}${sysconfdir}/network/nm-disabled-eth0 | 42 | touch ${D}${sysconfdir}/network/nm-disabled-eth0 |
43 | ;; | 43 | ;; |
44 | *) | 44 | *) |
@@ -53,3 +53,4 @@ PACKAGE_ARCH_omap-3430ldp = "${MACHINE_ARCH}" | |||
53 | PACKAGE_ARCH_omap-2430sdp = "${MACHINE_ARCH}" | 53 | PACKAGE_ARCH_omap-2430sdp = "${MACHINE_ARCH}" |
54 | PACKAGE_ARCH_qemuarm = "${MACHINE_ARCH}" | 54 | PACKAGE_ARCH_qemuarm = "${MACHINE_ARCH}" |
55 | PACKAGE_ARCH_qemux86 = "${MACHINE_ARCH}" | 55 | PACKAGE_ARCH_qemux86 = "${MACHINE_ARCH}" |
56 | PACKAGE_ARCH_qemux86-64 = "${MACHINE_ARCH}" | ||