Revert "Add build option to to set the default panic timeout."

This reverts commit 207f66e23a.
This commit is contained in:
黄涛 2011-07-30 23:09:40 +08:00
parent 5eb2df1065
commit 8f7869622d
2 changed files with 1 additions and 10 deletions

View File

@ -738,12 +738,6 @@ config SYSCTL
config ANON_INODES
bool
config PANIC_TIMEOUT
int "Default panic timeout"
default 0
help
Set default panic timeout.
menuconfig EMBEDDED
bool "Configure standard kernel features (for small systems)"
help

View File

@ -29,10 +29,7 @@ static int pause_on_oops;
static int pause_on_oops_flag;
static DEFINE_SPINLOCK(pause_on_oops_lock);
#ifndef CONFIG_PANIC_TIMEOUT
#define CONFIG_PANIC_TIMEOUT 0
#endif
int panic_timeout = CONFIG_PANIC_TIMEOUT;
int panic_timeout;
ATOMIC_NOTIFIER_HEAD(panic_notifier_list);