From f215e02bf85f68d3a6106c2a1f4f7f063f819064 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 11 Apr 2024 10:17:27 +0200 Subject: Adding upstream version 7.0.14-dfsg. Signed-off-by: Daniel Baumann --- src/VBox/Additions/freebsd/Installer/vboxguest.sh | 149 ++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100755 src/VBox/Additions/freebsd/Installer/vboxguest.sh (limited to 'src/VBox/Additions/freebsd/Installer/vboxguest.sh') diff --git a/src/VBox/Additions/freebsd/Installer/vboxguest.sh b/src/VBox/Additions/freebsd/Installer/vboxguest.sh new file mode 100755 index 00000000..503217f5 --- /dev/null +++ b/src/VBox/Additions/freebsd/Installer/vboxguest.sh @@ -0,0 +1,149 @@ +#!/bin/bash +# $Id: vboxguest.sh $ +## @file +# VirtualBox Guest Additions kernel module control script for FreeBSD. +# + +# +# Copyright (C) 2008-2023 Oracle and/or its affiliates. +# +# This file is part of VirtualBox base platform packages, as +# available from https://www.virtualbox.org. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation, in version 3 of the +# License. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . +# +# SPDX-License-Identifier: GPL-3.0-only +# + +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 + -- cgit v1.2.3