Index: kernel/panic.c =================================================================== RCS file: /var/cvs/uClinux-2.4.x/kernel/panic.c,v retrieving revision 1.1.1.3 diff -u -r1.1.1.3 panic.c --- kernel/panic.c 2002/01/02 11:10:09 1.1.1.3 +++ kernel/panic.c 2002/04/23 07:04:44 @@ -68,8 +68,9 @@ notifier_call_chain(&panic_notifier_list, 0, NULL); - if (panic_timeout > 0) - { + if (panic_timeout < 0) { + machine_halt(); + } else if (panic_timeout > 0) { /* * Delay timeout seconds before rebooting the machine. * We can't use the "normal" timers since we just panicked..