These files should have been added/deleted in r209751

This commit is contained in:
Warner Losh 2010-07-06 23:31:52 +00:00
parent 202d71e3bf
commit e330ab14ff
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209752

View File

@ -25,12 +25,17 @@
#
# $FreeBSD$
pciconf -lv | grep -i vmware >/dev/null 2>/dev/null
if [ "$?" = "0" ]
then
echo "vmware: YES"
case "$(kenv smbios.system.product)" in
VirtualBox)
echo "emulation: VIRTUALBOX"
exit 0
else
echo "vmware: NO"
exit 1
fi
;;
VMware*)
echo "emulation: VMWARE"
exit 0
;;
*)
echo "emulation: NO"
exit 1
;;
esac