This content has been marked as final.
Show 2 replies
-
1. Re: Kernel boot parameters
msavy Jul 3, 2012 10:30 AM (in response to jrosengren)I think one way to do this would be to simply modify your grub.conf config file in the post section and append it.
For instance, you could use sed to match the kernel line and add your new parameters at the end.
We don't have an explicit mechanism at present.
Does this work for you?
Edit: A really simplified example of how you could do it, you'd probably want to tweak it fairly significantly
sed -i -E 's/^\tkernel(.*)$/kernel\1 my.flag=1/' /etc/grub.conf
-
2. Re: Kernel boot parameters
jrosengren Jul 3, 2012 10:26 AM (in response to msavy)I should be able to do what I need to do using the post section - I must've skipped over that part of the documentation when I was searching for the answer.
Thanks!