[parisc-linux] New dump driver patche.
Grant Grundler
grundler@dsl2.external.hp.com
Tue, 8 Apr 2003 09:35:02 -0600
On Tue, Apr 08, 2003 at 02:44:30PM +0200, bruno_vidal@hp.com wrote:
> Hi
> Joel asked for something interresting, does someone know how I can retrieve
> an option passed to the kernel?
I think Randloph is right, MODULE_PARAM() should be sufficient.
But in case it's not, arch/parisc/kernel/setup.c:
void __init start_parisc(unsigned arg0, unsigned arg1,
arg1 is the command_line.
void __init setup_arch(char **cmdline_p)
cmdlinux_p is a pointer to "saved_command_line".
a copy of the original.
An example is in kernel/printk.c:__setup("console=", console_setup);
hth,
grant