diff options
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/init/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/init/init.c b/sbin/init/init.c index 168d011..0cb1403 100644 --- a/sbin/init/init.c +++ b/sbin/init/init.c @@ -9,7 +9,7 @@ int main() { sigprocmask(SIG_BLOCK, &set, 0); if (fork()) pause(); //TODO - eventually add device scan - if (!fork()) execve("/sbin/devscan", 0, 0); + // if (!fork()) execve("/sbin/devscan", 0, 0); sigprocmask(SIG_UNBLOCK, &set, 0); |