mirror of
https://github.com/fspc/gbootroot.git
synced 2026-09-09 05:11:39 -04:00
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:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user