]> Zhao Yanbai Git Server - minix.git/commitdiff
Pass -c flags to service for disk device drivers.
authorPhilip Homburg <philip@cs.vu.nl>
Thu, 11 May 2006 14:53:20 +0000 (14:53 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Thu, 11 May 2006 14:53:20 +0000 (14:53 +0000)
drivers/memory/ramdisk/rc

index da7bf8351e45c5485a964ccb7f432636de1b0872..2a0fac3eece7bde7dd92efd9d1a8bffa98662fc6 100644 (file)
@@ -1,13 +1,13 @@
 #!/bin/sh
 set -e
 /bin/service up /bin/pci
-/bin/service up /bin/floppy -dev /dev/fd0
+/bin/service -c up /bin/floppy -dev /dev/fd0
 if [ X`/bin/sysenv bios_wini` = Xyes ]
 then
        echo Using bios_wini.
-       /bin/service up /bin/bios_wini -dev /dev/c0d0
+       /bin/service -c up /bin/bios_wini -dev /dev/c0d0
 else
-       /bin/service up /bin/at_wini -dev /dev/c0d0
+       /bin/service -c up /bin/at_wini -dev /dev/c0d0
 fi
 
 rootdev=`sysenv rootdev` || echo 'No rootdev?'