1 | # $Id: deffiles 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # VirtualBox linux Guest Additions default files list
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2009-2024 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.org.
|
---|
11 | #
|
---|
12 | # This program is free software; you can redistribute it and/or
|
---|
13 | # modify it under the terms of the GNU General Public License
|
---|
14 | # as published by the Free Software Foundation, in version 3 of the
|
---|
15 | # License.
|
---|
16 | #
|
---|
17 | # This program is distributed in the hope that it will be useful, but
|
---|
18 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | # General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | #
|
---|
25 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | #
|
---|
27 |
|
---|
28 | # This file contains the names of all files that the Guest Additions for
|
---|
29 | # Linux guests have ever installed into the main filesystem tree (/usr and
|
---|
30 | # /sbin). No entries should ever be removed from this file, as it is used
|
---|
31 | # for uninstalling old installations of VirtualBox which did not keep track
|
---|
32 | # of the names of their files, or damaged installations which lost track of
|
---|
33 | # them.
|
---|
34 |
|
---|
35 | DEFAULT_FILE_NAMES=" \
|
---|
36 | /usr/bin/vboxadd-xclient \
|
---|
37 | /usr/bin/VBoxAudioTest \
|
---|
38 | /usr/bin/VBoxClient \
|
---|
39 | /usr/bin/vboxwl \
|
---|
40 | /usr/bin/VBoxDRMClient \
|
---|
41 | /usr/bin/VBoxControl \
|
---|
42 | /usr/sbin/vbox-greeter \
|
---|
43 | /usr/sbin/vboxadd-timesync \
|
---|
44 | /usr/sbin/vboxadd-service \
|
---|
45 | /usr/sbin/VBoxService \
|
---|
46 | /sbin/mount.vboxsf \
|
---|
47 | /usr/share/xgreeters/vbox-greeter.desktop \
|
---|
48 | /etc/X11/Xsession.d/98vboxadd-xclient \
|
---|
49 | /etc/X11/xinit.d/98vboxadd-xclient \
|
---|
50 | /etc/X11/xinit/xinitrc.d/98vboxadd-xclient.sh \
|
---|
51 | /usr/bin/VBoxRandR \
|
---|
52 | /usr/bin/VBoxClient-all \
|
---|
53 | /etc/xdg/autostart/vboxclient.desktop \
|
---|
54 | /usr/share/autostart/vboxclient.desktop \
|
---|
55 | /etc/udev/rules.d/60-vboxadd.rules \
|
---|
56 | /usr/share/xserver-xorg/pci/vboxvideo.ids \
|
---|
57 | /etc/hal/fdi/policy/90-vboxguest.fdi \
|
---|
58 | /etc/udev/rules.d/70-xorg-vboxmouse.rules \
|
---|
59 | /usr/share/hal/fdi/policy/20thirdparty/90-vboxguest.fdi \
|
---|
60 | /usr/lib/X11/xorg.conf.d/50-vboxmouse.conf \
|
---|
61 | /usr/share/X11/xorg.conf.d/50-vboxmouse.conf \
|
---|
62 | /usr/lib/dri/vboxvideo_dri.so \
|
---|
63 | /usr/lib64/dri/vboxvideo_dri.so \
|
---|
64 | /usr/lib64/xorg/modules/drivers/vboxvideo_drv.so \
|
---|
65 | /usr/lib/xorg/modules/drivers/vboxvideo_drv.so \
|
---|
66 | /usr/X11R6/lib64/modules/drivers/vboxvideo_drv.so \
|
---|
67 | /usr/X11R6/lib/modules/drivers/vboxvideo_drv.so \
|
---|
68 | /usr/X11R6/lib/X11/modules/drivers/vboxvideo_drv.so \
|
---|
69 | /usr/lib64/xorg/modules/input/vboxmouse_drv.so \
|
---|
70 | /usr/lib/xorg/modules/input/vboxmouse_drv.so \
|
---|
71 | /usr/X11R6/lib64/modules/input/vboxmouse_drv.so \
|
---|
72 | /usr/X11R6/lib/modules/input/vboxmouse_drv.so \
|
---|
73 | /usr/X11R6/lib/X11/modules/input/vboxmouse_drv.so
|
---|
74 | "
|
---|
75 |
|
---|
76 | DEFAULT_VERSIONED_FILE_NAMES=" \
|
---|
77 | /usr/src/vboxadd \
|
---|
78 | /usr/src/vboxguest \
|
---|
79 | /usr/src/vboxvfs \
|
---|
80 | /usr/src/vboxsf \
|
---|
81 | /usr/src/vboxvideo \
|
---|
82 | "
|
---|