diff --git a/src/bin/init/main.c b/src/bin/init/main.c index 5010da1..2b012ed 100644 --- a/src/bin/init/main.c +++ b/src/bin/init/main.c @@ -40,7 +40,7 @@ /* Test to see if we were started by the system if not exit */ if (getpid() != 1) { printf("Error: This program must be started by kernel.\n"); - exit(1); + //exit(1); } /* Make sure we have superuser permissions if not exit */ @@ -71,6 +71,9 @@ /*** $Log$ + Revision 1.3 2004/05/21 21:15:56 reddawg + Cleaned up initialized program + Revision 1.2 2004/05/21 15:43:58 reddawg Fixed the the bootup ordering in userland initialization diff --git a/src/bin/launcher/Makefile b/src/bin/launcher/Makefile index 05f6437..6645d1b 100644 --- a/src/bin/launcher/Makefile +++ b/src/bin/launcher/Makefile @@ -31,7 +31,7 @@ # Link The Binary $(BINARY) : $(OBJS) - #$(CC) -nostdlib -o $@ $(STARTUP) $(LIBRARIES) $(LIBRARIES2) $(OBJS) + $(CC) -nostdlib -o $@ $(STARTUP) $(LIBRARIES) $(LIBRARIES2) $(OBJS) #strip $(BINARY) # Compile the source files