0

I followed intructions in this project, but I couldn't figure out how to add "console=ttyAMA0,115200 panic=5" to kernel args. Anyone knows how to add this kernel args?

artless noise
  • 21,212
  • 6
  • 68
  • 105
Tgn Yang
  • 330
  • 3
  • 16

1 Answers1

2

Open defconfig

vim ./arch/arm/configs/vexpress_defconfig

change this

CONFIG_CMDLINE="console=ttyAMA0"

to this

CONFIG_CMDLINE="console=ttyAMA0,115200 panic=5"
Alex Hoppus
  • 3,821
  • 4
  • 28
  • 47