If needing to utilize the terminal for RAW data/Modem data, reconfigure /dev/tty
via the coreutils-stty module.
kernel.printk = 0 4 1 7
to /etc/sysctl.d/
: echo "kernel.printk = 0 4 1 7" > /etc/sysctl.d/10-printk.conf
/etc/inittab
:ttyS0:*
, ttyATH0:*
and ::askconsole:*
sed -i -r -e "s/^((ttyS0|ttyATH0|::askconsole):.*)/#\0/" /etc/inittab
<buildroot>/target/linux/ar71xx/config-
x.xx
: (x.xx
= kernel version)CONFIG_MESSAGE_LOGLEVEL_DEFAULT=0
loglevel=0
to CONFIG_CMDLINE=“rootfstype=squashfs,jffs2 noinitrd”
sed -i -r -e 's/(CONFIG_CMDLINE=".*)(")/\1 loglevel=0\2/' target/linux/ar71xx/config-x.xx
make target/linux/{clean,prepare} V=s QUILT=1 && make V=s