Changeset 8441 in vbox for trunk/src/VBox/Additions/linux/installer
- Timestamp:
- Apr 28, 2008 8:37:10 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30298
- Location:
- trunk/src/VBox/Additions/linux/installer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r8178 r8441 117 117 group=1 118 118 119 file=""120 test -f $module.o && file=$module.o121 test -f $module.ko && file=$module.ko122 123 119 fail() { 124 120 if [ "$system" = "gentoo" ]; then … … 129 125 echo "($1)" 130 126 exit 1 131 }132 133 test -z "$file" && {134 fail "Kernel module not found"135 127 } 136 128 -
trunk/src/VBox/Additions/linux/installer/vboxvfs.sh
r8178 r8441 114 114 module="$kdir/$modname" 115 115 116 file=""117 test -f $module.o && file=$module.o118 test -f $module.ko && file=$module.ko119 120 116 fail() { 121 117 if [ "$system" = "gentoo" ]; then … … 126 122 echo "($1)" 127 123 exit 1 128 }129 130 test -z "$file" && {131 fail "Kernel module not found"132 124 } 133 125
Note:
See TracChangeset
for help on using the changeset viewer.