Created
October 3, 2016 17:14
-
-
Save hngouveia01/c7dbe29a021fb86545c690a93be5270a to your computer and use it in GitHub Desktop.
Add kernel parameters to your image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How do I change the Linux kernel command line? | |
The linux kernel command line is typically specified in the machine config using the APPEND variable. For example, you can add some | |
helpful debug information doing the following: | |
APPEND += "printk.time=y initcall_debug debug" | |
examples: | |
panic=N (if kernel panic happen, reboot after N seconds.) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where to put it?