debuggers.hg
changeset 10990:47af0e2ebb13
[XEN] Allow users to specify mce/nomce boot parameters.
Signed-off-by: Arun Sharma <arun@sharma-home.net>
Signed-off-by: Arun Sharma <arun@sharma-home.net>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Mon Aug 07 15:42:25 2006 +0100 (2006-08-07) |
parents | 16aa4b417c6b |
children | 7924b6bd728a |
files | xen/arch/x86/cpu/mcheck/mce.c |
line diff
1.1 --- a/xen/arch/x86/cpu/mcheck/mce.c Mon Aug 07 15:35:06 2006 +0100 1.2 +++ b/xen/arch/x86/cpu/mcheck/mce.c Mon Aug 07 15:42:25 2006 +0100 1.3 @@ -69,5 +69,5 @@ static int __init mcheck_enable(char *st 1.4 return 0; 1.5 } 1.6 1.7 -__setup("nomce", mcheck_disable); 1.8 -__setup("mce", mcheck_enable); 1.9 +custom_param("nomce", mcheck_disable); 1.10 +custom_param("mce", mcheck_enable);