mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 06:55:13 +08:00
[PATCH] uml: add mode=skas0 as a synonym of skas0
Too many people were confused by skas0 and tried using "mode=skas0". And after all, they are right - accept this. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
5cd10daa0c
commit
9e3d862e5c
@ -143,11 +143,22 @@ static int __init skas0_cmd_param(char *str, int* add)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* The two __uml_setup would conflict, without this stupid alias. */
|
||||||
|
|
||||||
|
static int __init mode_skas0_cmd_param(char *str, int* add)
|
||||||
|
__attribute__((alias("skas0_cmd_param")));
|
||||||
|
|
||||||
__uml_setup("skas0", skas0_cmd_param,
|
__uml_setup("skas0", skas0_cmd_param,
|
||||||
"skas0\n"
|
"skas0\n"
|
||||||
" Disables SKAS3 usage, so that SKAS0 is used, unless \n"
|
" Disables SKAS3 usage, so that SKAS0 is used, unless \n"
|
||||||
" you specify mode=tt.\n\n");
|
" you specify mode=tt.\n\n");
|
||||||
|
|
||||||
|
__uml_setup("mode=skas0", mode_skas0_cmd_param,
|
||||||
|
"mode=skas0\n"
|
||||||
|
" Disables SKAS3 usage, so that SKAS0 is used, unless you \n"
|
||||||
|
" specify mode=tt. Note that this was recently added - on \n"
|
||||||
|
" older kernels you must use simply \"skas0\".\n\n");
|
||||||
|
|
||||||
static int force_sysemu_disabled = 0;
|
static int force_sysemu_disabled = 0;
|
||||||
|
|
||||||
static int __init nosysemu_cmd_param(char *str, int* add)
|
static int __init nosysemu_cmd_param(char *str, int* add)
|
||||||
|
Loading…
Reference in New Issue
Block a user