Changeset 37104 in vbox for trunk/src/VBox
- Timestamp:
- May 16, 2011 1:59:49 PM (14 years ago)
- Location:
- trunk/src/VBox/Additions/linux
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/Makefile.kmk
r36658 r37104 319 319 $(VBOX_REL_LNX_ADD_INST)70-xorg-vboxmouse.rules \ 320 320 $(VBOX_REL_LNX_ADD_INST)90-vboxguest.fdi \ 321 selinux-fedora/vbox_x11.pp 321 selinux-fedora/vbox_x11.pp \ 322 selinux-fedora/vbox_accel.pp 322 323 323 324 INSTALLS += lnx_add_inst-license -
trunk/src/VBox/Additions/linux/installer/vboxadd-x11.sh
r36752 r37104 515 515 516 516 begin "Installing graphics libraries and desktop services components" 517 # Install selinux policy for Fedora 7 and 8 to allow the X server to518 # open device files519 517 case "$redhat_release" in 518 # Install selinux policy for Fedora 7 and 8 to allow the X server to 519 # open device files 520 520 Fedora\ release\ 7* | Fedora\ release\ 8* ) 521 521 semodule -i "$share_dir/vbox_x11.pp" > /dev/null 2>&1 522 ;; 523 # Similar for the accelerated graphics check on Fedora 15 524 Fedora\ release\ 15* ) 525 semodule -i "$share_dir/vbox_accel.pp" > /dev/null 2>&1 522 526 ;; 523 527 esac -
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r36948 r37104 458 458 # Put mount.vboxsf in the right place 459 459 ln -sf "$lib_path/$PACKAGE/mount.vboxsf" /sbin 460 # At least Fedora 11 and Fedora 12 demand on the correct security context when 461 # executing this command from service scripts. Shouldn't hurt for other distributions. 460 # At least Fedora 11 and Fedora 12 require the correct security context when 461 # executing this command from service scripts. Shouldn't hurt for other 462 # distributions. 462 463 chcon -u system_u -t mount_exec_t "$lib_path/$PACKAGE/mount.vboxsf" > /dev/null 2>&1 464 # And at least Fedora 15 needs this for the acceleration support check to 465 # work 466 redhat_release=`cat /etc/redhat-release 2> /dev/null` 467 case "$redhat_release" in Fedora\ release\ 15* ) 468 for i in "$lib_path"/*.so 469 do 470 restorecon "$i" >/dev/null 471 done 472 ;; 473 esac 463 474 464 475 succ_msg
Note:
See TracChangeset
for help on using the changeset viewer.