Changeset 24537 in vbox
- Timestamp:
- Nov 10, 2009 11:48:35 AM (15 years ago)
- Location:
- trunk/src/VBox/Additions/linux
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/Makefile.kmk
r24492 r24537 143 143 VBOX_ADD_KMOD.linux = \ 144 144 vboxvfs \ 145 vboxvideo _drm145 vboxvideo 146 146 147 147 VBOX_ADD_INIT.linux = \ … … 438 438 $(QUIET)$(VBOX_MAKESELF) --nocomp $(VBOX_LNX_ADD_INST_STAGE_DIR) $@ \ 439 439 "VirtualBox $(VBOX_VERSION_STRING) Guest Additions for Linux" \ 440 /bin/sh ./install.sh " > /dev/null"441 440 /bin/sh ./install.sh "\$$0 1> /dev/null" 441 -
trunk/src/VBox/Additions/linux/drm/Makefile.kmk
r24376 r24537 35 35 include $(PATH_SUB_CURRENT)/files_vboxvideo_drm 36 36 37 vboxvideo_drm-mod_INST = $(INST_ADDITIONS)src/vboxvideo _drm/37 vboxvideo_drm-mod_INST = $(INST_ADDITIONS)src/vboxvideo/ 38 38 vboxvideo_drm-mod_MODE = a+r,u+w 39 39 vboxvideo_drm-mod_SOURCES = $(subst ",,$(FILES_VBOXVIDEO_DRM_NOBIN)) … … 42 42 vboxvideo_drm-mod_CLEAN += $(PATH_vboxvideo_drm-mod)/dkms.conf 43 43 44 vboxvideo_drm-sh_INST = $(INST_ADDITIONS)src/vboxvideo _drm/44 vboxvideo_drm-sh_INST = $(INST_ADDITIONS)src/vboxvideo/ 45 45 vboxvideo_drm-sh_MODE = a+rx,u+w 46 46 vboxvideo_drm-sh_SOURCES = $(subst ",,$(FILES_VBOXVIDEO_DRM_BIN)) -
trunk/src/VBox/Additions/linux/installer/vboxadd-service.sh
r24486 r24537 239 239 binary=/usr/sbin/VBoxService 240 240 241 test -x "$binary" || { 242 echo "Cannot run $binary" 243 exit 1 241 testbinary() { 242 test -x "$binary" || { 243 echo "Cannot run $binary" 244 exit 1 245 } 244 246 } 245 247 … … 255 257 exit 1 256 258 } 259 testbinary 257 260 daemon $binary 258 261 RETVAL=$? -
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r24532 r24537 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 >/dev/null397 $DKMS remove -m $mod -v $version --all 1>&2 398 398 fi 399 399 done
Note:
See TracChangeset
for help on using the changeset viewer.