Skip to content

Commit

Permalink
ev3: add "console=tty1" to bootscript
Browse files Browse the repository at this point in the history
Unfortunaly, this is done mainly to work around issues with hardware
UARTS on EV3 that we can't figure out.

The side effect is that console messages will print on the screen during
boot, which can be useful for troubleshooting.

Issue: ev3dev/ev3dev#623
  • Loading branch information
dlech committed Jun 12, 2016
1 parent 9f50dc7 commit cc88609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootscript/bootscr.ev3
@@ -1,3 +1,3 @@
run loadimage
setenv bootargs mem=${memsize} console=${console} root=/dev/mmcblk0p2 rw rootwait splash @@LINUX_KERNEL_CMDLINE@@
setenv bootargs mem=${memsize} console=${console} console=tty1 root=/dev/mmcblk0p2 rw rootwait splash @@LINUX_KERNEL_CMDLINE@@
bootm ${loadaddr}

0 comments on commit cc88609

Please sign in to comment.