Changeset 50659 in vbox
- Timestamp:
- Mar 3, 2014 1:01:54 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92590
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/Installer/postinstall.sh
r50345 r50659 243 243 244 244 # Check for VirtualBox graphics card 245 is_vboxgraphics=`prtconf -d | grep -i pci80ee,beef` 245 # S10u10's prtconf doesn't support the '-d' option, so let's use -v even though it's slower. 246 is_vboxgraphics=`prtconf -v | grep -i pci80ee,beef` 246 247 if test "$?" -eq 0; then 247 248 drivername="vboxvideo" 248 249 else 249 250 # Check for VMware graphics card 250 is_vmwaregraphics=`prtconf - d| grep -i pci15ad,405`251 is_vmwaregraphics=`prtconf -v | grep -i pci15ad,405` 251 252 if test "$?" -eq 0; then 252 253 echo "Configuring X.Org to use VMware SVGA graphics driver..."
Note:
See TracChangeset
for help on using the changeset viewer.