I'm trying to create a boot setup that can redirect the console output the serial port for debugging purposes.
I've managed to get it so that the
SYSLINUX 4.01 0x4c3de821 Copyright (C) 1994-2010 H. Peter Anvin et al
Loading /boot/bzImage.....
etc... all print to the serial console rather than the vga monitor, but the login is still printed to the vga instead.
Currently this is my extlinux.conf
SERIAL 0 115200
DEFAULT tinycore
LABEL tinycore
KERNEL /boot/bzImage
APPEND initrd=/boot/tinycore.gz quiet text nodhcp tce=UUID="f0cdd75c-71e4-41a9-8e9c-ed457e74cda5" console=ttyS0,115200
Can someone help me figure out what else I need to change to make the login go to ttyS0?