Fixed a bug which causes lock-ups during seconf fs creation with

EXPECT, and a bug where .options wasn't being written to disk or the
path was being altered when a variable was being altered.  This also
gets things trim and ready with the coolest discovery being that a
nested kernel can run on the host and in it's nest.  I'll be testing
other nested levels to discover how far this can go and be
incorporated in one package which is nice.
This commit is contained in:
freesource
2003-01-05 21:07:15 +00:00
parent 31354e73c0
commit 9cede96d0f
6 changed files with 54 additions and 18 deletions
+6 -1
View File
@@ -36,10 +36,14 @@ int main(void)
if ( cmdline_value == 1 ) {
printf("Checking for the skas3 patch in the host...not found\nChecking for /proc/mm...not found\n");
kill(pid, SIGSTOP);
kill(pid, SIGKILL);
return(0);
}
else if ( cmdline_value == 2 ) {
printf("Checking for the skas3 patch in the host...found\nChecking for /proc/mm...found\n");
kill(pid, SIGSTOP);
kill(pid, SIGKILL);
return(0);
}
@@ -62,7 +66,8 @@ int main(void)
ret = 0;
}
else printf("found\n");
kill(pid, SIGSTOP);
kill(pid, SIGKILL);
return(ret);