This commit is contained in:
Eric Andersen 1999-11-21 21:50:07 +00:00
parent fa213cd71e
commit 0727458a97
3 changed files with 5 additions and 3 deletions

View File

@ -101,7 +101,7 @@ force:
$(OBJECTS): busybox.def.h internal.h Makefile
install: busybox
install: busybox busybox.links
./install.sh $(PREFIX)
whichversion:

3
init.c
View File

@ -447,7 +447,8 @@ extern int init_main(int argc, char **argv)
#ifndef DEBUG_INIT
if (getpid() != 1) {
/* Expect to be PID 1 iff we are run as init (not linuxrc) */
if (getpid() != 1 && strstr(argv[0], "init")!=NULL ) {
usage( "init\n\nInit is the parent of all processes.\n\n"
"This version of init is designed to be run only by the kernel\n");
}

View File

@ -447,7 +447,8 @@ extern int init_main(int argc, char **argv)
#ifndef DEBUG_INIT
if (getpid() != 1) {
/* Expect to be PID 1 iff we are run as init (not linuxrc) */
if (getpid() != 1 && strstr(argv[0], "init")!=NULL ) {
usage( "init\n\nInit is the parent of all processes.\n\n"
"This version of init is designed to be run only by the kernel\n");
}