From 5520137dd1152680293e6f0caaafc1ee80f4f1a9 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Wed, 25 Aug 2004 18:38:44 +0000 Subject: hack so that if we have a "weird" physical console, we don't later try to think it's serial. also carry in the iseries checking into the loader. *sigh* (#130906) --- loader2/init.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'loader2/init.c') diff --git a/loader2/init.c b/loader2/init.c index fdc62636c..48a1c074c 100644 --- a/loader2/init.c +++ b/loader2/init.c @@ -658,6 +658,9 @@ int main(int argc, char **argv) { if (!(installpid = fork())) { /* child */ *argvp++ = "/sbin/loader"; + if (isSerial == 3) { + *argvp++ = "--physconsole"; + } *argvp++ = NULL; printf("running %s\n", argvc[0]); -- cgit