Changeset 5739
- Timestamp:
- 11/14/07 12:40:04 (1 year ago)
- Files:
-
- trunk/debian/control (modified) (1 diff)
- trunk/debian/rules (modified) (1 diff)
- trunk/debian/vboxdrv.init.tmpl (modified) (2 diffs)
- trunk/debian/vboxnet.init.tmpl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/debian/control
r5256 r5739 11 11 Architecture: i386 amd64 12 12 Pre-Depends: debconf (>= 1.1) | debconf-2.0 13 Depends: ${shlibs:Depends}, debconf (>= 0.5) | debconf-2.0, psmisc 13 Depends: ${shlibs:Depends}, debconf (>= 0.5) | debconf-2.0, psmisc, adduser 14 14 Recommends: ${alsa}, ${sdlttf}, linux-headers, gcc, make, binutils, bridge-utils, 15 15 uml-utilities, libhal1 (>= 0.5) trunk/debian/rules
r5255 r5739 153 153 rm $(archdir)/VBox.sh 154 154 install -D -g 0 -o 0 -m 644 debian/VBox.sh $(prefix)/usr/bin/VBox 155 mv $(archdir)/VBoxSysInfo.sh $(prefix)/usr/share/$(package) 155 156 mv $(archdir)/VBoxAddIF.sh $(prefix)/usr/bin/VBoxTAP 156 157 for i in VBoxManage VBoxSVC tstVMM $(if $(HEADLESS),,VBoxSDL) \ 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." trunk/debian/vboxnet.init.tmpl
r5255 r5739 112 112 if ! VBoxTunctl -h 2>&1 | grep -q VBoxTunctl > /dev/null; then 113 113 failure "VBoxTunctl not found" 114 fi 115 # Fail if we don't have the kernel tun device 116 # Make sure that the tun module is loaded (Ubuntu 7.10 needs this) 117 modprobe tun > /dev/null 2>&1 118 if ! cat /proc/misc 2>/dev/null | grep tun > /dev/null 119 then 120 failure "Linux tun/tap subsystem not available" 114 121 fi 115 122 # Read the configuration file entries line by line and create the

