Changeset 24531 in vbox for trunk/src/VBox
- Timestamp:
- Nov 9, 2009 11:17:57 PM (15 years ago)
- Location:
- trunk/src/VBox/Additions/linux/installer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd-x11.sh
r24502 r24531 421 421 then 422 422 cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak 2> /dev/null 423 cp "$ lib_dir/linux_xorg_suse11.conf" /etc/X11/xorg.conf 2> /dev/null423 cp "$share_dir/linux_xorg_suse11.conf" /etc/X11/xorg.conf 2> /dev/null 424 424 elif [ $dox11config15 -eq 1 ] 425 425 then -
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r24486 r24531 307 307 echo 308 308 if ! sh /usr/share/$PACKAGE/test_drm/build_in_tmp \ 309 --no-dkms --no-print-directory > $LOG 2>&1; then309 --no-dkms --no-print-directory >> $LOG 2>&1; then 310 310 printf "Your system does not seem to support OpenGL in the kernel (this requires\nLinux 2.6.27 or later). The OpenGL support will not be built.\n" 311 311 BUILDVBOXVIDEO="" … … 314 314 if ! $BUILDVBOXGUEST \ 315 315 --save-module-symvers /tmp/vboxguest-Module.symvers \ 316 --no-print-directory install > $LOG 2>&1; then316 --no-print-directory install >> $LOG 2>&1; then 317 317 fail "Look at $LOG to find out what went wrong" 318 318 fi … … 395 395 version=`echo "$line" | sed "s/$mod,\([^,]*\)[,:].*/\1/;t;d"` 396 396 echo " removing module $mod version $version" 397 $DKMS remove -m $mod -v $version --all 397 $DKMS remove -m $mod -v $version --all 2>/dev/null 398 398 fi 399 399 done … … 409 409 depmod 410 410 411 # Remove old module sources 412 rm -rf /usr/src/vboxadd-* /usr/src/vboxguest-* /usr/src/vboxvfs-* /usr/src/vboxvideo-* 413 411 414 # Remove other files 412 415 rm /sbin/mount.vboxsf 2>/dev/null
Note:
See TracChangeset
for help on using the changeset viewer.