diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-08 20:17:07 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-08 20:17:07 +0000 |
commit | 6dc7467fd0351fb6bc40d1d0039aeb2e82f98271 (patch) | |
tree | 2c7cfd93aeeecf29392011a6664889604048816e | |
parent | 84836e6ad96e02b4bef621d32b5fbf21fa8d8c88 (diff) | |
download | drakx-6dc7467fd0351fb6bc40d1d0039aeb2e82f98271.tar drakx-6dc7467fd0351fb6bc40d1d0039aeb2e82f98271.tar.gz drakx-6dc7467fd0351fb6bc40d1d0039aeb2e82f98271.tar.bz2 drakx-6dc7467fd0351fb6bc40d1d0039aeb2e82f98271.tar.xz drakx-6dc7467fd0351fb6bc40d1d0039aeb2e82f98271.zip |
when probing that we're in testing mode, print out the pid (since the probe is based on the pid and some recent machines seem to interact badly with that when in bad acpi mood)
-rw-r--r-- | mdk-stage1/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/init.c b/mdk-stage1/init.c index 8bc23533c..ad3950d57 100644 --- a/mdk-stage1/init.c +++ b/mdk-stage1/init.c @@ -348,7 +348,7 @@ int main(int argc __attribute__ ((unused)), char **argv __attribute__ ((unused)) printf("\033[8]"); } else - printf("*** TESTING MODE ***\n"); + printf("*** TESTING MODE *** (pid is %d)\n", getpid()); printf("\n\t\t\t\033[1;40mWelcome to \033[1;36mMandrake\033[0;39m Linux\n\n"); |