Changeset 5739 in vbox for trunk/debian/vboxdrv.init.tmpl
- Timestamp:
- Nov 14, 2007 11:40:04 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/debian/vboxdrv.init.tmpl
r5452 r5739 91 91 failure "No suitable module for running kernel found." 92 92 fi 93 if ! modprobe $MODNAME ; then93 if ! modprobe $MODNAME > /dev/null 2>&1; then 94 94 failure "Modprobe $MODNAME failed. Please use 'dmesg' to find out why." 95 95 fi … … 111 111 failure "Cannot locate device major." 112 112 fi 113 if ! mknod -m 066 4$DEVICE c $MAJOR $MINOR; then113 if ! mknod -m 0660 $DEVICE c $MAJOR $MINOR; then 114 114 rmmod $MODNAME 115 115 failure "Cannot create device $DEVICE with major $MAJOR and minor $MINOR."
Note:
See TracChangeset
for help on using the changeset viewer.