diff options
| author | Khem Raj <raj.khem@gmail.com> | 2012-05-02 20:19:50 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-24 08:53:56 +0100 |
| commit | f83cdef08fed4f2a0612f9422fb21348cd589d8a (patch) | |
| tree | 6f3d7eaa3bf502f397fbaf00e1573c67cbbb4410 | |
| parent | 71a4bf386181b3fbc2dc723c781a456a0bbdb943 (diff) | |
| download | poky-f83cdef08fed4f2a0612f9422fb21348cd589d8a.tar.gz | |
xserver-xf86-config: Add xorg.conf for arm,mips,ppc,sh qemu machines
(From OE-Core rev: db0defb1d019a0e7c06d37dacc09842174e2f548)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
6 files changed, 346 insertions, 1 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf new file mode 100644 index 0000000000..629ae214e8 --- /dev/null +++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf | |||
| @@ -0,0 +1,69 @@ | |||
| 1 | |||
| 2 | Section "Files" | ||
| 3 | EndSection | ||
| 4 | |||
| 5 | Section "InputDevice" | ||
| 6 | Identifier "Generic Keyboard" | ||
| 7 | Driver "evdev" | ||
| 8 | Option "CoreKeyboard" | ||
| 9 | Option "Device" "/dev/input/by-path/platform-i8042-serio-0-event-kbd" | ||
| 10 | Option "XkbRules" "xorg" | ||
| 11 | Option "XkbModel" "evdev" | ||
| 12 | Option "XkbLayout" "us" | ||
| 13 | EndSection | ||
| 14 | |||
| 15 | Section "InputDevice" | ||
| 16 | Identifier "Configured Mouse" | ||
| 17 | Driver "mouse" | ||
| 18 | Option "CorePointer" | ||
| 19 | Option "Device" "/dev/input/mice" | ||
| 20 | Option "Protocol" "ImPS/2" | ||
| 21 | Option "ZAxisMapping" "4 5" | ||
| 22 | Option "Emulate3Buttons" "true" | ||
| 23 | EndSection | ||
| 24 | |||
| 25 | Section "InputDevice" | ||
| 26 | Identifier "Qemu Tablet" | ||
| 27 | Driver "evdev" | ||
| 28 | Option "CorePointer" | ||
| 29 | Option "Device" "/dev/input/touchscreen0" | ||
| 30 | Option "USB" "on" | ||
| 31 | EndSection | ||
| 32 | |||
| 33 | Section "Device" | ||
| 34 | Identifier "Graphics Controller" | ||
| 35 | Driver "fbdev" | ||
| 36 | EndSection | ||
| 37 | |||
| 38 | Section "Monitor" | ||
| 39 | Identifier "Generic Monitor" | ||
| 40 | Option "DPMS" | ||
| 41 | # 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz | ||
| 42 | Modeline "1024x600_60.00" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync | ||
| 43 | # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz | ||
| 44 | ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync | ||
| 45 | # 640x480 @ 72Hz (VESA) hsync: 37.9kHz | ||
| 46 | ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync | ||
| 47 | # 640x480 @ 75Hz (VESA) hsync: 37.5kHz | ||
| 48 | ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync | ||
| 49 | # 640x480 @ 85Hz (VESA) hsync: 43.3kHz | ||
| 50 | ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync | ||
| 51 | EndSection | ||
| 52 | |||
| 53 | Section "Screen" | ||
| 54 | Identifier "Default Screen" | ||
| 55 | Device "Graphics Controller" | ||
| 56 | Monitor "Generic Monitor" | ||
| 57 | SubSection "Display" | ||
| 58 | Modes "640x480" | ||
| 59 | EndSubSection | ||
| 60 | EndSection | ||
| 61 | |||
| 62 | Section "ServerLayout" | ||
| 63 | Identifier "Default Layout" | ||
| 64 | Screen "Default Screen" | ||
| 65 | InputDevice "Generic Keyboard" | ||
| 66 | # InputDevice "Configured Mouse" | ||
| 67 | InputDevice "QEMU Tablet" | ||
| 68 | Option "AllowEmptyInput" "no" | ||
| 69 | EndSection | ||
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf new file mode 100644 index 0000000000..629ae214e8 --- /dev/null +++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf | |||
| @@ -0,0 +1,69 @@ | |||
| 1 | |||
| 2 | Section "Files" | ||
| 3 | EndSection | ||
| 4 | |||
| 5 | Section "InputDevice" | ||
| 6 | Identifier "Generic Keyboard" | ||
| 7 | Driver "evdev" | ||
| 8 | Option "CoreKeyboard" | ||
| 9 | Option "Device" "/dev/input/by-path/platform-i8042-serio-0-event-kbd" | ||
| 10 | Option "XkbRules" "xorg" | ||
| 11 | Option "XkbModel" "evdev" | ||
| 12 | Option "XkbLayout" "us" | ||
| 13 | EndSection | ||
| 14 | |||
| 15 | Section "InputDevice" | ||
| 16 | Identifier "Configured Mouse" | ||
| 17 | Driver "mouse" | ||
| 18 | Option "CorePointer" | ||
| 19 | Option "Device" "/dev/input/mice" | ||
| 20 | Option "Protocol" "ImPS/2" | ||
| 21 | Option "ZAxisMapping" "4 5" | ||
| 22 | Option "Emulate3Buttons" "true" | ||
| 23 | EndSection | ||
| 24 | |||
| 25 | Section "InputDevice" | ||
| 26 | Identifier "Qemu Tablet" | ||
| 27 | Driver "evdev" | ||
| 28 | Option "CorePointer" | ||
| 29 | Option "Device" "/dev/input/touchscreen0" | ||
| 30 | Option "USB" "on" | ||
| 31 | EndSection | ||
| 32 | |||
| 33 | Section "Device" | ||
| 34 | Identifier "Graphics Controller" | ||
| 35 | Driver "fbdev" | ||
| 36 | EndSection | ||
| 37 | |||
| 38 | Section "Monitor" | ||
| 39 | Identifier "Generic Monitor" | ||
| 40 | Option "DPMS" | ||
| 41 | # 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz | ||
| 42 | Modeline "1024x600_60.00" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync | ||
| 43 | # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz | ||
| 44 | ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync | ||
| 45 | # 640x480 @ 72Hz (VESA) hsync: 37.9kHz | ||
| 46 | ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync | ||
| 47 | # 640x480 @ 75Hz (VESA) hsync: 37.5kHz | ||
| 48 | ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync | ||
| 49 | # 640x480 @ 85Hz (VESA) hsync: 43.3kHz | ||
| 50 | ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync | ||
| 51 | EndSection | ||
| 52 | |||
| 53 | Section "Screen" | ||
| 54 | Identifier "Default Screen" | ||
| 55 | Device "Graphics Controller" | ||
| 56 | Monitor "Generic Monitor" | ||
| 57 | SubSection "Display" | ||
| 58 | Modes "640x480" | ||
| 59 | EndSubSection | ||
| 60 | EndSection | ||
| 61 | |||
| 62 | Section "ServerLayout" | ||
| 63 | Identifier "Default Layout" | ||
| 64 | Screen "Default Screen" | ||
| 65 | InputDevice "Generic Keyboard" | ||
| 66 | # InputDevice "Configured Mouse" | ||
| 67 | InputDevice "QEMU Tablet" | ||
| 68 | Option "AllowEmptyInput" "no" | ||
| 69 | EndSection | ||
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips64/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips64/xorg.conf new file mode 100644 index 0000000000..629ae214e8 --- /dev/null +++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips64/xorg.conf | |||
| @@ -0,0 +1,69 @@ | |||
| 1 | |||
| 2 | Section "Files" | ||
| 3 | EndSection | ||
| 4 | |||
| 5 | Section "InputDevice" | ||
| 6 | Identifier "Generic Keyboard" | ||
| 7 | Driver "evdev" | ||
| 8 | Option "CoreKeyboard" | ||
| 9 | Option "Device" "/dev/input/by-path/platform-i8042-serio-0-event-kbd" | ||
| 10 | Option "XkbRules" "xorg" | ||
| 11 | Option "XkbModel" "evdev" | ||
| 12 | Option "XkbLayout" "us" | ||
| 13 | EndSection | ||
| 14 | |||
| 15 | Section "InputDevice" | ||
| 16 | Identifier "Configured Mouse" | ||
| 17 | Driver "mouse" | ||
| 18 | Option "CorePointer" | ||
| 19 | Option "Device" "/dev/input/mice" | ||
| 20 | Option "Protocol" "ImPS/2" | ||
| 21 | Option "ZAxisMapping" "4 5" | ||
| 22 | Option "Emulate3Buttons" "true" | ||
| 23 | EndSection | ||
| 24 | |||
| 25 | Section "InputDevice" | ||
| 26 | Identifier "Qemu Tablet" | ||
| 27 | Driver "evdev" | ||
| 28 | Option "CorePointer" | ||
| 29 | Option "Device" "/dev/input/touchscreen0" | ||
| 30 | Option "USB" "on" | ||
| 31 | EndSection | ||
| 32 | |||
| 33 | Section "Device" | ||
| 34 | Identifier "Graphics Controller" | ||
| 35 | Driver "fbdev" | ||
| 36 | EndSection | ||
| 37 | |||
| 38 | Section "Monitor" | ||
| 39 | Identifier "Generic Monitor" | ||
| 40 | Option "DPMS" | ||
| 41 | # 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz | ||
| 42 | Modeline "1024x600_60.00" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync | ||
| 43 | # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz | ||
| 44 | ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync | ||
| 45 | # 640x480 @ 72Hz (VESA) hsync: 37.9kHz | ||
| 46 | ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync | ||
| 47 | # 640x480 @ 75Hz (VESA) hsync: 37.5kHz | ||
| 48 | ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync | ||
| 49 | # 640x480 @ 85Hz (VESA) hsync: 43.3kHz | ||
| 50 | ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync | ||
| 51 | EndSection | ||
| 52 | |||
| 53 | Section "Screen" | ||
| 54 | Identifier "Default Screen" | ||
| 55 | Device "Graphics Controller" | ||
| 56 | Monitor "Generic Monitor" | ||
| 57 | SubSection "Display" | ||
| 58 | Modes "640x480" | ||
| 59 | EndSubSection | ||
| 60 | EndSection | ||
| 61 | |||
| 62 | Section "ServerLayout" | ||
| 63 | Identifier "Default Layout" | ||
| 64 | Screen "Default Screen" | ||
| 65 | InputDevice "Generic Keyboard" | ||
| 66 | # InputDevice "Configured Mouse" | ||
| 67 | InputDevice "QEMU Tablet" | ||
| 68 | Option "AllowEmptyInput" "no" | ||
| 69 | EndSection | ||
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf new file mode 100644 index 0000000000..629ae214e8 --- /dev/null +++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf | |||
| @@ -0,0 +1,69 @@ | |||
| 1 | |||
| 2 | Section "Files" | ||
| 3 | EndSection | ||
| 4 | |||
| 5 | Section "InputDevice" | ||
| 6 | Identifier "Generic Keyboard" | ||
| 7 | Driver "evdev" | ||
| 8 | Option "CoreKeyboard" | ||
| 9 | Option "Device" "/dev/input/by-path/platform-i8042-serio-0-event-kbd" | ||
| 10 | Option "XkbRules" "xorg" | ||
| 11 | Option "XkbModel" "evdev" | ||
| 12 | Option "XkbLayout" "us" | ||
| 13 | EndSection | ||
| 14 | |||
| 15 | Section "InputDevice" | ||
| 16 | Identifier "Configured Mouse" | ||
| 17 | Driver "mouse" | ||
| 18 | Option "CorePointer" | ||
| 19 | Option "Device" "/dev/input/mice" | ||
| 20 | Option "Protocol" "ImPS/2" | ||
| 21 | Option "ZAxisMapping" "4 5" | ||
| 22 | Option "Emulate3Buttons" "true" | ||
| 23 | EndSection | ||
| 24 | |||
| 25 | Section "InputDevice" | ||
| 26 | Identifier "Qemu Tablet" | ||
| 27 | Driver "evdev" | ||
| 28 | Option "CorePointer" | ||
| 29 | Option "Device" "/dev/input/touchscreen0" | ||
| 30 | Option "USB" "on" | ||
| 31 | EndSection | ||
| 32 | |||
| 33 | Section "Device" | ||
| 34 | Identifier "Graphics Controller" | ||
| 35 | Driver "fbdev" | ||
| 36 | EndSection | ||
| 37 | |||
| 38 | Section "Monitor" | ||
| 39 | Identifier "Generic Monitor" | ||
| 40 | Option "DPMS" | ||
| 41 | # 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz | ||
| 42 | Modeline "1024x600_60.00" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync | ||
| 43 | # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz | ||
| 44 | ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync | ||
| 45 | # 640x480 @ 72Hz (VESA) hsync: 37.9kHz | ||
| 46 | ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync | ||
| 47 | # 640x480 @ 75Hz (VESA) hsync: 37.5kHz | ||
| 48 | ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync | ||
| 49 | # 640x480 @ 85Hz (VESA) hsync: 43.3kHz | ||
| 50 | ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync | ||
| 51 | EndSection | ||
| 52 | |||
| 53 | Section "Screen" | ||
| 54 | Identifier "Default Screen" | ||
| 55 | Device "Graphics Controller" | ||
| 56 | Monitor "Generic Monitor" | ||
| 57 | SubSection "Display" | ||
| 58 | Modes "640x480" | ||
| 59 | EndSubSection | ||
| 60 | EndSection | ||
| 61 | |||
| 62 | Section "ServerLayout" | ||
| 63 | Identifier "Default Layout" | ||
| 64 | Screen "Default Screen" | ||
| 65 | InputDevice "Generic Keyboard" | ||
| 66 | # InputDevice "Configured Mouse" | ||
| 67 | InputDevice "QEMU Tablet" | ||
| 68 | Option "AllowEmptyInput" "no" | ||
| 69 | EndSection | ||
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf new file mode 100644 index 0000000000..629ae214e8 --- /dev/null +++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf | |||
| @@ -0,0 +1,69 @@ | |||
| 1 | |||
| 2 | Section "Files" | ||
| 3 | EndSection | ||
| 4 | |||
| 5 | Section "InputDevice" | ||
| 6 | Identifier "Generic Keyboard" | ||
| 7 | Driver "evdev" | ||
| 8 | Option "CoreKeyboard" | ||
| 9 | Option "Device" "/dev/input/by-path/platform-i8042-serio-0-event-kbd" | ||
| 10 | Option "XkbRules" "xorg" | ||
| 11 | Option "XkbModel" "evdev" | ||
| 12 | Option "XkbLayout" "us" | ||
| 13 | EndSection | ||
| 14 | |||
| 15 | Section "InputDevice" | ||
| 16 | Identifier "Configured Mouse" | ||
| 17 | Driver "mouse" | ||
| 18 | Option "CorePointer" | ||
| 19 | Option "Device" "/dev/input/mice" | ||
| 20 | Option "Protocol" "ImPS/2" | ||
| 21 | Option "ZAxisMapping" "4 5" | ||
| 22 | Option "Emulate3Buttons" "true" | ||
| 23 | EndSection | ||
| 24 | |||
| 25 | Section "InputDevice" | ||
| 26 | Identifier "Qemu Tablet" | ||
| 27 | Driver "evdev" | ||
| 28 | Option "CorePointer" | ||
| 29 | Option "Device" "/dev/input/touchscreen0" | ||
| 30 | Option "USB" "on" | ||
| 31 | EndSection | ||
| 32 | |||
| 33 | Section "Device" | ||
| 34 | Identifier "Graphics Controller" | ||
| 35 | Driver "fbdev" | ||
| 36 | EndSection | ||
| 37 | |||
| 38 | Section "Monitor" | ||
| 39 | Identifier "Generic Monitor" | ||
| 40 | Option "DPMS" | ||
| 41 | # 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz | ||
| 42 | Modeline "1024x600_60.00" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync | ||
| 43 | # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz | ||
| 44 | ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync | ||
| 45 | # 640x480 @ 72Hz (VESA) hsync: 37.9kHz | ||
| 46 | ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync | ||
| 47 | # 640x480 @ 75Hz (VESA) hsync: 37.5kHz | ||
| 48 | ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync | ||
| 49 | # 640x480 @ 85Hz (VESA) hsync: 43.3kHz | ||
| 50 | ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync | ||
| 51 | EndSection | ||
| 52 | |||
| 53 | Section "Screen" | ||
| 54 | Identifier "Default Screen" | ||
| 55 | Device "Graphics Controller" | ||
| 56 | Monitor "Generic Monitor" | ||
| 57 | SubSection "Display" | ||
| 58 | Modes "640x480" | ||
| 59 | EndSubSection | ||
| 60 | EndSection | ||
| 61 | |||
| 62 | Section "ServerLayout" | ||
| 63 | Identifier "Default Layout" | ||
| 64 | Screen "Default Screen" | ||
| 65 | InputDevice "Generic Keyboard" | ||
| 66 | # InputDevice "Configured Mouse" | ||
| 67 | InputDevice "QEMU Tablet" | ||
| 68 | Option "AllowEmptyInput" "no" | ||
| 69 | EndSection | ||
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb index 970b4bdb1d..3c29f8b7bf 100644 --- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb +++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb | |||
| @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.x.org" | |||
| 3 | SECTION = "x11/base" | 3 | SECTION = "x11/base" |
| 4 | LICENSE = "MIT-X" | 4 | LICENSE = "MIT-X" |
| 5 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 5 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
| 6 | PR = "r10" | 6 | PR = "r11" |
| 7 | 7 | ||
| 8 | SRC_URI = "file://xorg.conf" | 8 | SRC_URI = "file://xorg.conf" |
| 9 | 9 | ||
