Cross Reference:
xref
: /
vbox
/
src
/
VBox
/
Installer
/
darwin
/
VBoxKEXTs
/
InstallationCheck
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
InstallationCheck revision fb27aa740466280f820e13e238bc6dd0b477eb37
551
N/A
#!/
bin
/
sh
551
N/A
551
N/A
#
551
N/A
# Copyright (C) 2006-2010 Oracle Corporation
551
N/A
#
551
N/A
# Use only with permission.
551
N/A
#
551
N/A
551
N/A
MACHINE
=
`
uname
-m`
551
N/A
# Check that this is an
x86
/
x86_64
system.
551
N/A
if
test
"
$MACHINE
"
!=
"i386"
&&
test
"
$MACHINE
"
!=
"x86_64"
;
then
551
N/A
exit
112
# (112 = 96 + 16)
551
N/A
fi
551
N/A
exit
0
551
N/A
551
N/A