VirtualBox

source: vbox/trunk/src/VBox/Additions/linux/installer/x11config.pl@ 4924

Last change on this file since 4924 was 4071, checked in by vboxsync, 18 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1#!/usr/bin/perl -w
2#
3# innotek VirtualBox
4#
5# Linux Additions X11 config update script
6#
7# Copyright (C) 2006-2007 innotek GmbH
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License as published by the Free Software Foundation,
13# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14# distribution. VirtualBox OSE is distributed in the hope that it will
15# be useful, but WITHOUT ANY WARRANTY of any kind.
16
17
18my $temp="/tmp/xorg.conf";
19my @cfg_files = ("/etc/X11/xorg.conf-4", "/etc/X11/xorg.conf", "/etc/xorg.conf",
20 "/usr/etc/X11/xorg.conf-4", "/usr/etc/X11/xorg.conf", "/usr/lib/X11/xorg.conf-4",
21 "/usr/lib/X11/xorg.conf", "/etc/X11/XF86Config-4", "/etc/X11/XF86Config",
22 "/etc/XF86Config", "/usr/X11R6/etc/X11/XF86Config-4", "/usr/X11R6/etc/X11/XF86Config",
23 "/usr/X11R6/lib/X11/XF86Config-4", "/usr/X11R6/lib/X11/XF86Config");
24my $CFG;
25my $TMP;
26
27my $count_config = 0;
28
29foreach $cfg (@cfg_files)
30{
31
32 if (open(CFG, $cfg))
33 {
34 open(TMP, ">$temp") or die "Can't create $TMP: $!\n";
35
36 my $have_mouse = 0;
37 my $in_section = 0;
38
39 while (defined ($line = <CFG>))
40 {
41 if ($line =~ /^\s*Section\s*"([a-zA-Z]+)"/i)
42 {
43 my $section = lc($1);
44 if (($section eq "inputdevice") || ($section eq "device"))
45 {
46 $in_section = 1;
47 }
48 } else {
49 if ($line =~ /^\s*EndSection/i)
50 {
51 $in_section = 0;
52 }
53 }
54
55 if ($in_section)
56 {
57 if ($line =~ /^\s*driver\s+\"(?:mouse|vboxmouse)\"/i)
58 {
59 $line = " Driver \"vboxmouse\"\n";
60 $have_mouse = 1
61 }
62
63 # Other drivers sending events interfere badly with pointer integration
64 if ($line =~ /^\s*driver\s+\"(?:alwayscore|sendcoreevents)\"/i)
65 {
66 $line = "\n";
67 }
68
69 if ($line =~ /^\s*driver\s+\"(?:fbdev|vga|vesa|vboxvideo|ChangeMe)\"/i)
70 {
71 $line = " Driver \"vboxvideo\"\n";
72 }
73 }
74 print TMP $line;
75 }
76
77 rename $cfg, $cfg.".bak";
78 system("cp $temp $cfg");
79 unlink $temp;
80
81 if ($have_mouse == 0) {
82 system("echo >> $cfg");
83 system("echo 'Section \"InputDevice\"' >> $cfg");
84 system("echo ' Identifier \"VBoxMouse\"' >> $cfg");
85 system("echo ' Driver \"vboxmouse\"' >> $cfg");
86 system("echo ' Option \"CorePointer\"' >> $cfg");
87 system("echo 'EndSection' >> $cfg");
88 }
89 $config_count++;
90 }
91}
92
93$config_count != 0 or die "Could not find any X11 configuration files";
Note: See TracBrowser for help on using the repository browser.

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