VirtualBox

source: vbox/trunk/src/VBox/Installer/darwin/VBoxKEXTs/InstallationCheck@ 31807

Last change on this file since 31807 was 31673, checked in by vboxsync, 14 years ago

Installer-OSX: change headers

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 709 bytes
Line 
1#!/bin/sh
2
3#
4# Copyright (C) 2006-2010 Oracle Corporation
5#
6# This file is part of VirtualBox Open Source Edition (OSE), as
7# available from http://www.virtualbox.org. This file is free software;
8# you can redistribute it and/or modify it under the terms of the GNU
9# General Public License (GPL) as published by the Free Software
10# Foundation, in version 2 as it comes in the "COPYING" file of the
11# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
12# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
13#
14
15MACHINE=`uname -m`
16# Check that this is an x86/x86_64 system.
17if test "$MACHINE" != "i386" && test "$MACHINE" != "x86_64"; then
18 exit 112 # (112 = 96 + 16)
19fi
20exit 0
21
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette