diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 03:01:46 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 03:01:46 +0000 |
commit | f8fe689a81f906d1b91bb3220acde2a4ecb14c5b (patch) | |
tree | 26484e9d7e2c67806c2d1760196ff01aaa858e8c /src/VBox/Additions/freebsd/Installer | |
parent | Initial commit. (diff) | |
download | virtualbox-f8fe689a81f906d1b91bb3220acde2a4ecb14c5b.tar.xz virtualbox-f8fe689a81f906d1b91bb3220acde2a4ecb14c5b.zip |
Adding upstream version 6.0.4-dfsg.upstream/6.0.4-dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/VBox/Additions/freebsd/Installer')
-rw-r--r-- | src/VBox/Additions/freebsd/Installer/pkg-descr | 3 | ||||
-rwxr-xr-x | src/VBox/Additions/freebsd/Installer/vboxguest.sh | 139 |
2 files changed, 142 insertions, 0 deletions
diff --git a/src/VBox/Additions/freebsd/Installer/pkg-descr b/src/VBox/Additions/freebsd/Installer/pkg-descr new file mode 100644 index 00000000..49c9d066 --- /dev/null +++ b/src/VBox/Additions/freebsd/Installer/pkg-descr @@ -0,0 +1,3 @@ +VirtualBox guest additions for the FreeBSD operating system + +WWW: http://www.virtualbox.org diff --git a/src/VBox/Additions/freebsd/Installer/vboxguest.sh b/src/VBox/Additions/freebsd/Installer/vboxguest.sh new file mode 100755 index 00000000..6eee8d50 --- /dev/null +++ b/src/VBox/Additions/freebsd/Installer/vboxguest.sh @@ -0,0 +1,139 @@ +#!/bin/bash +# $Id: vboxguest.sh $ +## @file +# VirtualBox Guest Additions kernel module control script for FreeBSD. +# + +# +# Copyright (C) 2008-2019 Oracle Corporation +# +# This file is part of VirtualBox Open Source Edition (OSE), as +# available from http://www.virtualbox.org. This file is free software; +# you can redistribute it and/or modify it under the terms of the GNU +# General Public License (GPL) as published by the Free Software +# Foundation, in version 2 as it comes in the "COPYING" file of the +# VirtualBox OSE distribution. VirtualBox OSE is distributed in the +# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. +# + +VBOXGUESTFILE="" +SILENTUNLOAD="" + +abort() +{ + echo 1>&2 "$1" + exit 1 +} + +info() +{ + echo 1>&2 "$1" +} + +get_module_path() +{ + moduledir="/boot/kernel"; + modulepath=$moduledir/vboxguest.ko + if test -f "$modulepath"; then + VBOXGUESTFILE="$modulepath" + else + VBOXGUESTFILE="" + fi +} + +check_if_installed() +{ + if test "$VBOXGUESTFILE" -a -f "$VBOXGUESTFILE"; then + return 0 + fi + abort "VirtualBox kernel module (vboxguest) not installed." +} + +module_loaded() +{ + loadentry=`kldstat | grep vboxguest` + if test -z "$loadentry"; then + return 1 + fi + return 0 +} + +check_root() +{ + if test `id -u` -ne 0; then + abort "This program must be run with administrator privileges. Aborting" + fi +} + +start() +{ + if module_loaded; then + info "vboxguest already loaded..." + else + /sbin/kldload vboxguest.ko + if ! module_loaded; then + abort "Failed to load vboxguest." + elif test -c "/dev/vboxguest"; then + info "Loaded vboxguest." + else + stop + abort "Aborting due to attach failure." + fi + fi +} + +stop() +{ + if module_loaded; then + /sbin/kldunload vboxguest.ko + info "Unloaded vboxguest." + elif test -z "$SILENTUNLOAD"; then + info "vboxguest not loaded." + fi +} + +restart() +{ + stop + sync + start + return 0 +} + +status() +{ + if module_loaded; then + info "vboxguest running." + else + info "vboxguest stopped." + fi +} + +check_root +get_module_path +check_if_installed + +if test "$2" = "silentunload"; then + SILENTUNLOAD="$2" +fi + +case "$1" in +start) + start + ;; +stop) + stop + ;; +restart) + restart + ;; +status) + status + ;; +*) + echo "Usage: $0 {start|stop|restart|status}" + exit 1 +esac + +exit + |