VBox.sh revision a3f342a86f026f46fed32aae20ca045db066d141
#
# Oracle VM VirtualBox startup script, Solaris hosts.
#
# Copyright (C) 2006-2012 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# 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.
#
CURRENT_ISA=`isainfo -k`
if test "$CURRENT_ISA" = "amd64"; then
else
fi
exec "$INSTALL_DIR/VirtualBox" "$@"
;;
exec "$INSTALL_DIR/VBoxManage" "$@"
;;
exec "$INSTALL_DIR/VBoxSDL" "$@"
;;
exec "$INSTALL_DIR/VBoxHeadless" "$@"
;;
exec "$INSTALL_DIR/VBoxBalloonCtrl" "$@"
;;
exec "$INSTALL_DIR/VBoxAutostart" "$@"
;;
exec "$INSTALL_DIR/vboxwebsrv" "$@"
;;
exec "$INSTALL_DIR/VBoxQtconfig" "$@"
;;
exec "$INSTALL_DIR/vbox-img" "$0"
;;
*)
echo "Unknown application - $APP"
exit 1
;;
esac
exit 0