Lets say I want to put command line args for a kernel module. If the module is some_module.ko.
In modprobe I would go, options some_module option1=value option2=value
In kernel command line I would go
some_module.option1=value some_module.option2=value
Does repeating the some_module,option2 not override the option1. How do I put them together?