Hi, does a list of the L4Linux kernel parameters (e.g. l4ser.vkey_irq) exist somewhere? Regards, Andi
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi,
does a list of the L4Linux kernel parameters (e.g. l4ser.vkey_irq) exist somewhere?
I don't know about such list. Try searching the source for occurences of the module_param macro and hope that there is a corresponding MODULE_PARM_DESC. ;) For the L4-specific stuff, this looks good for me: find src/l4linux-2.6/ -name "l4*" | xargs \ grep "module_param\|MODULE_PARM_DESC" Bjoern -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFCrw+P5ijxgQLUNkRAhtrAJ0Xvb5NSELXSClAX4dniXo+zDMPhACbBxJQ Mv5puG3pDAwdRtZRYAVdm1g= =AyVL -----END PGP SIGNATURE-----
Bjoern Doebel wrote: [...]
does a list of the L4Linux kernel parameters (e.g. l4ser.vkey_irq) exist somewhere?
I don't know about such list. Try searching the source for occurences of the module_param macro and hope that there is a corresponding MODULE_PARM_DESC. ;)
For the L4-specific stuff, this looks good for me:
find src/l4linux-2.6/ -name "l4*" | xargs \ grep "module_param\|MODULE_PARM_DESC"
Thanks, that's helpful. I noticed that there are still more parameters (e.g. l4irqack=) which can be found with: grep -r '__setup(' l4linux-2.6 | grep l4 Regards, Andi
On Fri Sep 15, 2006 at 16:20:28 +0200, Andreas Niederl wrote:
does a list of the L4Linux kernel parameters (e.g. l4ser.vkey_irq) exist somewhere?
Not that I know but this one-liner prints out a list: grep -r module_param arch/l4 drivers/*/l4* | perl -p -e 's@.*/(.+).c:module_param[^(]*\(([^,]+).*@$1.$2@' Adam -- Adam adam@os.inf.tu-dresden.de Lackorzynski http://os.inf.tu-dresden.de/~adam/
participants (3)
-
Adam Lackorzynski -
Andreas Niederl -
Bjoern Doebel