Changeset 27601 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Mar 22, 2010 4:22:13 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59136
- Location:
- trunk/src/VBox/Additions/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/Makefile.kmk
r26551 r27601 110 110 111 111 VBOX_ADD_BIN.linux += \ 112 VBoxClient-all \ 113 VBoxRandR 112 VBoxClient-all 114 113 115 114 VBOX_ADD_STRIP_SBIN += \ … … 375 374 LnxAdd-Nostrip-Bin_MODE = a+rx,u+w 376 375 LnxAdd-Nostrip-Bin_SOURCES = \ 377 $(VBOX_REL_X11_ADD_INST)VBoxRandR.sh=>VBoxRandR \378 376 $(VBOX_REL_X11_ADD_INST)98vboxadd-xclient=>VBoxClient-all 379 377 -
trunk/src/VBox/Additions/linux/installer/vboxadd-x11.sh
r27507 r27601 297 297 nopsaux="--nopsaux" 298 298 test -c /dev/psaux && nopsaux="" 299 # And on newer servers, we want to test whether dynamic resizing will work300 testrandr="true"301 299 # The video driver to install for X.Org 6.9+ 302 300 vboxvideo_src= … … 378 376 vboxmouse_src=vboxmouse_drv_71.so 379 377 automouse="" 380 testrandr=""381 378 ;; 382 379 6.9.* | 7.0.* ) … … 385 382 vboxmouse_src=vboxmouse_drv_70.so 386 383 automouse="" 387 testrandr=""388 384 ;; 389 385 6.7* | 6.8.* | 4.2.* | 4.3.* ) … … 395 391 ln -s "$lib_dir/vboxmouse_drv.o" "$modules_dir/input/vboxmouse_drv.o" 396 392 automouse="" 397 testrandr=""398 393 succ_msg 399 394 ;; … … 410 405 ln -s "$lib_dir/$vboxmouse_src" "$modules_dir/input/vboxmouse_drv.so" && 411 406 succ_msg 412 fi413 if test -n "$testrandr"; then414 # Run VBoxRandR in test mode as it prints out useful information if415 # dynamic resizing can't be used. Don't fail here though.416 /usr/bin/VBoxRandR --test 1>&2417 else418 cat << EOF419 420 You appear to be running an older version of the X Window system in your421 guest. Seamless mode and dynamic resizing will not work!422 423 EOF424 407 fi 425 408
Note:
See TracChangeset
for help on using the changeset viewer.