diff options
author | John Crispin <john@openwrt.org> | 2015-02-14 20:48:14 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-02-14 20:48:14 +0000 |
commit | 927047494100eee7733c81c7ea40204a06c105c4 (patch) | |
tree | 89c346b8a44362cfd1d2a7246086652ea8aae11e | |
parent | dc72499b5326531b603ec38410602ff7ed7f1287 (diff) | |
download | mtk-20170518-927047494100eee7733c81c7ea40204a06c105c4.zip mtk-20170518-927047494100eee7733c81c7ea40204a06c105c4.tar.gz mtk-20170518-927047494100eee7733c81c7ea40204a06c105c4.tar.bz2 |
brcm2708: force uart as the default console for procd and remove nonexistent console
procd gets last console from cmdline, so swapping tty1 (framebuffer) and ttyAMA0 (uart) is enough to force procd output via uart
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
SVN-Revision: 44448
-rw-r--r-- | target/linux/brcm2708/base-files/etc/inittab | 1 | ||||
-rw-r--r-- | target/linux/brcm2708/image/cmdline.txt | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/target/linux/brcm2708/base-files/etc/inittab b/target/linux/brcm2708/base-files/etc/inittab index d9d571e..c05c555 100644 --- a/target/linux/brcm2708/base-files/etc/inittab +++ b/target/linux/brcm2708/base-files/etc/inittab @@ -1,5 +1,4 @@ ::sysinit:/etc/init.d/rcS S boot ::shutdown:/etc/init.d/rcS K shutdown -tts/0::askfirst:/bin/ash --login ttyAMA0::askfirst:/bin/ash --login tty1::askfirst:/bin/ash --login diff --git a/target/linux/brcm2708/image/cmdline.txt b/target/linux/brcm2708/image/cmdline.txt index 516f270..95848bb 100644 --- a/target/linux/brcm2708/image/cmdline.txt +++ b/target/linux/brcm2708/image/cmdline.txt @@ -1 +1 @@ -dwc_otg.lpm_enable=0 rpitestmode=1 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait +dwc_otg.lpm_enable=0 rpitestmode=1 console=tty1 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait |