kbuild - How to add kernel args when compiling linux kernel? -
i followed intructions in this project, couldn't figure out how add "console=ttyama0,115200 panic=5" kernel args. knows how add kernel args?
open defconfig
vim ./arch/arm/configs/vexpress_defconfig change this
config_cmdline="console=ttyama0" to this
config_cmdline="console=ttyama0,115200 panic=5"
Comments
Post a Comment