In the grub.conf configuration file I can specify command line parameters that the kernel will use, i.e.:
kernel /boot/kernel-3-2-1-gentoo root=/dev/sda1 vga=791 plasticDuck
After booting up a given kernel, is there a way to tell if all parameters were passed 'correctly'?
I.e. there is no plasticDuck kernel parameter, but:
dmesg | grep plasticDuck
only returns:
Kernel command line: root=/dev/sda1 vga=791 plasticDuck
(no error)
plasticDuckwas ignored since the actual kernel parameter isplasticPenguin, i.e. you got a typo.) – Mat Sep 19 '12 at 13:03vgaparameter is deprecated! but works for backward compatibility. – Mohsen Pahlevanzadeh Sep 19 '12 at 13:49/proc/cmdline, it's being used, but whether it effects is unknown. – warl0ck Sep 19 '12 at 14:09