I would like to pass an array of data to the Linux kernel module.
In the kernel:
int a[5];
int count;
module_param_array(a, int, &count, 0);
But I've no idea how to pass values from the command line. If it is a just variable I will use:
insmod k1.ko a=10