VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/Installer/x11config.pl@ 103416

Last change on this file since 103416 was 98103, checked in by vboxsync, 22 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.5 KB
Line 
1#!/usr/bin/perl -w
2# $Id: x11config.pl 98103 2023-01-17 14:15:46Z vboxsync $
3## @file
4# Guest Additions X11 config update script
5#
6
7#
8# Copyright (C) 2006-2023 Oracle and/or its affiliates.
9#
10# This file is part of VirtualBox base platform packages, as
11# available from https://www.virtualbox.org.
12#
13# This program is free software; you can redistribute it and/or
14# modify it under the terms of the GNU General Public License
15# as published by the Free Software Foundation, in version 3 of the
16# License.
17#
18# This program is distributed in the hope that it will be useful, but
19# WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21# General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
24# along with this program; if not, see <https://www.gnu.org/licenses>.
25#
26# SPDX-License-Identifier: GPL-3.0-only
27#
28
29my $temp="/tmp/xorg.conf";
30my $os_type=`uname -s`;
31my @cfg_files = ("/etc/X11/xorg.conf-4", "/etc/X11/xorg.conf", "/etc/X11/.xorg.conf", "/etc/xorg.conf",
32 "/usr/etc/X11/xorg.conf-4", "/usr/etc/X11/xorg.conf", "/usr/lib/X11/xorg.conf-4",
33 "/usr/lib/X11/xorg.conf", "/etc/X11/XF86Config-4", "/etc/X11/XF86Config",
34 "/etc/XF86Config", "/usr/X11R6/etc/X11/XF86Config-4", "/usr/X11R6/etc/X11/XF86Config",
35 "/usr/X11R6/lib/X11/XF86Config-4", "/usr/X11R6/lib/X11/XF86Config");
36my $CFG;
37my $TMP;
38
39my $config_count = 0;
40
41foreach $cfg (@cfg_files)
42{
43
44 if (open(CFG, $cfg))
45 {
46 open(TMP, ">$temp") or die "Can't create $TMP: $!\n";
47
48 my $have_mouse = 0;
49 my $in_section = 0;
50
51 while (defined ($line = <CFG>))
52 {
53 if ($line =~ /^\s*Section\s*"([a-zA-Z]+)"/i)
54 {
55 my $section = lc($1);
56 if (($section eq "inputdevice") || ($section eq "device"))
57 {
58 $in_section = 1;
59 }
60 if ($section eq "serverlayout")
61 {
62 $in_layout = 1;
63 }
64 } else {
65 if ($line =~ /^\s*EndSection/i)
66 {
67 $in_section = 0;
68 $in_layout = 0;
69 }
70 }
71
72 if ($in_section)
73 {
74 if ($line =~ /^\s*driver\s+\"(?:mouse|vboxmouse)\"/i)
75 {
76 $line = " Driver \"vboxmouse\"\n Option \"CorePointer\"\n";
77 $have_mouse = 1
78 }
79
80 # Other drivers sending events interfere badly with pointer integration
81 if ($line =~ /^\s*option\s+\"(?:alwayscore|sendcoreevents|corepointer)\"/i)
82 {
83 $line = "";
84 }
85
86 # Solaris specific: /dev/kdmouse for PS/2 and not /dev/mouse
87 if ($os_type =~ 'SunOS')
88 {
89 if ($line =~ /^\s*option\s+\"(?:device)\"\s+\"(?:\/dev\/mouse)\"/i)
90 {
91 $line = " Option \"Device\" \"\/dev\/kdmouse\"\n"
92 }
93 }
94
95 if ($line =~ /^\s*driver\s+\"(?:fbdev|vga|vesa|vboxvideo|ChangeMe)\"/i)
96 {
97 $line = " Driver \"vboxvideo\"\n";
98 }
99 }
100 if ($in_layout)
101 {
102 # Other drivers sending events interfere badly with pointer integration
103 if ( $line =~ /^\s*inputdevice.*\"(?:alwayscore|sendcoreevents)\"/i)
104 {
105 $line = "";
106 }
107 }
108 print TMP $line;
109 }
110
111 if (!$have_mouse) {
112 print TMP "\n";
113 print TMP "Section \"InputDevice\"\n";
114 print TMP " Identifier \"VBoxMouse\"\n";
115 print TMP " Driver \"vboxmouse\"\n";
116 if ($os_type eq 'SunOS')
117 {
118 print TMP " Option \"Device\" \"\/dev\/kdmouse\"\n";
119 }
120 print TMP " Option \"CorePointer\"\n";
121 print TMP "EndSection\n";
122 }
123 close(TMP);
124
125 rename $cfg, $cfg.".bak";
126 system("cp $temp $cfg");
127 unlink $temp;
128
129 # Solaris specific: Rename our modified .xorg.conf to xorg.conf for it to be used
130 if (($os_type =~ 'SunOS') && ($cfg =~ '/etc/X11/.xorg.conf'))
131 {
132 system("mv -f $cfg /etc/X11/xorg.conf");
133 }
134
135 $config_count++;
136 }
137}
138
139$config_count != 0 or die "Could not find any X11 configuration files";
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette