summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-xserver/xserver-xf86-config
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
commit972dcfcdbfe75dcfeb777150c136576cf1a71e99 (patch)
tree97a61cd7e293d7ae9d56ef7ed0f81253365bb026 /meta/recipes-graphics/xorg-xserver/xserver-xf86-config
downloadpoky-972dcfcdbfe75dcfeb777150c136576cf1a71e99.tar.gz
initial commit for Enea Linux 5.0 arm
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-graphics/xorg-xserver/xserver-xf86-config')
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf69
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf70
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips64/xorg.conf69
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf69
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf69
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf64
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf64
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf0
8 files changed, 474 insertions, 0 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
2Section "Files"
3EndSection
4
5Section "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"
13EndSection
14
15Section "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"
23EndSection
24
25Section "InputDevice"
26 Identifier "Qemu Tablet"
27 Driver "evdev"
28 Option "CorePointer"
29 Option "Device" "/dev/input/touchscreen0"
30 Option "USB" "on"
31EndSection
32
33Section "Device"
34 Identifier "Graphics Controller"
35 Driver "fbdev"
36EndSection
37
38Section "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
51EndSection
52
53Section "Screen"
54 Identifier "Default Screen"
55 Device "Graphics Controller"
56 Monitor "Generic Monitor"
57 SubSection "Display"
58 Modes "640x480"
59 EndSubSection
60EndSection
61
62Section "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"
69EndSection
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..e6c8b514e3
--- /dev/null
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemumips/xorg.conf
@@ -0,0 +1,70 @@
1
2Section "Files"
3EndSection
4
5Section "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"
13EndSection
14
15Section "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"
23EndSection
24
25Section "InputDevice"
26 Identifier "Qemu Tablet"
27 Driver "evdev"
28 Option "CorePointer"
29 Option "Device" "/dev/input/touchscreen0"
30 Option "USB" "on"
31EndSection
32
33Section "Device"
34 Identifier "Graphics Controller"
35 Driver "fbdev"
36EndSection
37
38Section "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
51EndSection
52
53Section "Screen"
54 Identifier "Default Screen"
55 Device "Graphics Controller"
56 Monitor "Generic Monitor"
57 DefaultDepth 16
58 SubSection "Display"
59 Modes "640x480"
60 EndSubSection
61EndSection
62
63Section "ServerLayout"
64 Identifier "Default Layout"
65 Screen "Default Screen"
66 InputDevice "Generic Keyboard"
67 # InputDevice "Configured Mouse"
68 InputDevice "QEMU Tablet"
69 Option "AllowEmptyInput" "no"
70EndSection
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
2Section "Files"
3EndSection
4
5Section "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"
13EndSection
14
15Section "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"
23EndSection
24
25Section "InputDevice"
26 Identifier "Qemu Tablet"
27 Driver "evdev"
28 Option "CorePointer"
29 Option "Device" "/dev/input/touchscreen0"
30 Option "USB" "on"
31EndSection
32
33Section "Device"
34 Identifier "Graphics Controller"
35 Driver "fbdev"
36EndSection
37
38Section "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
51EndSection
52
53Section "Screen"
54 Identifier "Default Screen"
55 Device "Graphics Controller"
56 Monitor "Generic Monitor"
57 SubSection "Display"
58 Modes "640x480"
59 EndSubSection
60EndSection
61
62Section "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"
69EndSection
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
2Section "Files"
3EndSection
4
5Section "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"
13EndSection
14
15Section "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"
23EndSection
24
25Section "InputDevice"
26 Identifier "Qemu Tablet"
27 Driver "evdev"
28 Option "CorePointer"
29 Option "Device" "/dev/input/touchscreen0"
30 Option "USB" "on"
31EndSection
32
33Section "Device"
34 Identifier "Graphics Controller"
35 Driver "fbdev"
36EndSection
37
38Section "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
51EndSection
52
53Section "Screen"
54 Identifier "Default Screen"
55 Device "Graphics Controller"
56 Monitor "Generic Monitor"
57 SubSection "Display"
58 Modes "640x480"
59 EndSubSection
60EndSection
61
62Section "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"
69EndSection
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
2Section "Files"
3EndSection
4
5Section "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"
13EndSection
14
15Section "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"
23EndSection
24
25Section "InputDevice"
26 Identifier "Qemu Tablet"
27 Driver "evdev"
28 Option "CorePointer"
29 Option "Device" "/dev/input/touchscreen0"
30 Option "USB" "on"
31EndSection
32
33Section "Device"
34 Identifier "Graphics Controller"
35 Driver "fbdev"
36EndSection
37
38Section "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
51EndSection
52
53Section "Screen"
54 Identifier "Default Screen"
55 Device "Graphics Controller"
56 Monitor "Generic Monitor"
57 SubSection "Display"
58 Modes "640x480"
59 EndSubSection
60EndSection
61
62Section "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"
69EndSection
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
new file mode 100644
index 0000000000..bbda9eaa63
--- /dev/null
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
@@ -0,0 +1,64 @@
1
2Section "Files"
3EndSection
4
5Section "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"
13EndSection
14
15Section "InputDevice"
16 Identifier "Configured Mouse"
17 Driver "vmmouse"
18 Option "CorePointer"
19 Option "Device" "/dev/input/mice"
20 Option "Protocol" "ImPS/2"
21 Option "ZAxisMapping" "4 5"
22 Option "Emulate3Buttons" "true"
23EndSection
24
25Section "InputDevice"
26 Identifier "Qemu Tablet"
27 Driver "evdev"
28 Option "CorePointer"
29 Option "Device" "/dev/input/touchscreen0"
30 Option "USB" "on"
31EndSection
32
33Section "Monitor"
34 Identifier "Generic Monitor"
35 Option "DPMS"
36 # 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz
37 Modeline "1024x600_60.00" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync
38 # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
39 ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
40 # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
41 ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
42 # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
43 ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
44 # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
45 ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
46EndSection
47
48Section "Screen"
49 Identifier "Default Screen"
50 Device "Graphics Controller"
51 Monitor "Generic Monitor"
52 SubSection "Display"
53 Modes "640x480"
54 EndSubSection
55EndSection
56
57Section "ServerLayout"
58 Identifier "Default Layout"
59 Screen "Default Screen"
60 InputDevice "Generic Keyboard"
61 # InputDevice "Configured Mouse"
62 InputDevice "QEMU Tablet"
63 Option "AllowEmptyInput" "no"
64EndSection
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
new file mode 100644
index 0000000000..bbda9eaa63
--- /dev/null
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
@@ -0,0 +1,64 @@
1
2Section "Files"
3EndSection
4
5Section "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"
13EndSection
14
15Section "InputDevice"
16 Identifier "Configured Mouse"
17 Driver "vmmouse"
18 Option "CorePointer"
19 Option "Device" "/dev/input/mice"
20 Option "Protocol" "ImPS/2"
21 Option "ZAxisMapping" "4 5"
22 Option "Emulate3Buttons" "true"
23EndSection
24
25Section "InputDevice"
26 Identifier "Qemu Tablet"
27 Driver "evdev"
28 Option "CorePointer"
29 Option "Device" "/dev/input/touchscreen0"
30 Option "USB" "on"
31EndSection
32
33Section "Monitor"
34 Identifier "Generic Monitor"
35 Option "DPMS"
36 # 1024x600 59.85 Hz (CVT) hsync: 37.35 kHz; pclk: 49.00 MHz
37 Modeline "1024x600_60.00" 49.00 1024 1072 1168 1312 600 603 613 624 -hsync +vsync
38 # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
39 ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
40 # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
41 ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
42 # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
43 ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
44 # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
45 ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
46EndSection
47
48Section "Screen"
49 Identifier "Default Screen"
50 Device "Graphics Controller"
51 Monitor "Generic Monitor"
52 SubSection "Display"
53 Modes "640x480"
54 EndSubSection
55EndSection
56
57Section "ServerLayout"
58 Identifier "Default Layout"
59 Screen "Default Screen"
60 InputDevice "Generic Keyboard"
61 # InputDevice "Configured Mouse"
62 InputDevice "QEMU Tablet"
63 Option "AllowEmptyInput" "no"
64EndSection
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf