Changeset 64788 in vbox
- Timestamp:
- Dec 6, 2016 11:39:49 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/install.sh.in
r63889 r64788 528 528 test -n "$REMOVE_INSTALLATION_DIR" && 529 529 echo "$INSTALLATION_DIR/" >> "$CONFIG_DIR/$CONFIG_FILES" 530 531 # Test for a problem with old Mesa versions which stopped our 3D libraries 532 # from working. Known to affect Debian 7.11, probably OL/RHEL 5. 533 # The problem was that the system Mesa library had an ABI note, which caused 534 # ldconfig to always prefer it to ours. 535 if ldconfig -p | grep -q "libGL.so.1.*Linux 2.4"; then 536 gl_with_abi=`ldconfig -p | grep "libGL.so.1.*Linux 2.4" | sed 's/.*=> //'` 537 cat >&2 << EOF 538 This system appears to be running a version of Mesa with a known problem 539 which will prevent VirtualBox 3D pass-through from working. See 540 https://bugs.freedesktop.org/show_bug.cgi?id=26663 541 The following, run as root should fix this, though you will have to run it 542 again if the system version of Mesa is updated: 543 EOF 544 for i in ${gl_with_abi}; do 545 echo >&2 " strip -R .note.ABI-tag ${i}" 546 done 547 echo >&2 " ldconfig" 548 fi
Note:
See TracChangeset
for help on using the changeset viewer.