aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/arc770
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-01-18 17:51:54 +0000
committerFelix Fietkau <nbd@openwrt.org>2016-01-18 17:51:54 +0000
commitd814e20bd4318dfa7ca47561e26e78d916d34086 (patch)
treec70c52b952b0b85b9eb9c58bc26caed9cc0ed1cd /target/linux/arc770
parentcda046c69d03d1c467b317c5e285d350c5c3ac4c (diff)
downloadmaster-187ad058-d814e20bd4318dfa7ca47561e26e78d916d34086.tar.gz
master-187ad058-d814e20bd4318dfa7ca47561e26e78d916d34086.tar.bz2
master-187ad058-d814e20bd4318dfa7ca47561e26e78d916d34086.zip
arc770/axs101: fix console output
While bumping kernel version kernel command line was unintentionally modified in attempt to make it closer to upstream version. In case of AXS that has not only serial port but HDMI/USB both capable of being debug console we have 2 entries in kernel's command line: ------------------->8----------------- console=tty0 console=ttyS3,115200n8 ------------------->8----------------- But as it turned out OpenWRT uses procd as init instead of Busybox. And in its turn procd gets the first "console" entry from kernel command line (/proc/cmdline) and uses it if default inittab is used: ------------------->8----------------- ... ::askconsole:/bin/ash --login ------------------->8----------------- So what we got is non-functional serial console. That change removes "console=tty0" which brings serial console back to life. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Felix Fietkau <nbd@openwrt.org> Cc: Jo-Philipp Wich <jow@openwrt.org> Cc: Jonas Gorski <jogo@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48325 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/arc770')
-rw-r--r--target/linux/arc770/dts/axs101.dts2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/arc770/dts/axs101.dts b/target/linux/arc770/dts/axs101.dts
index 769e81a433..8718eb46cc 100644
--- a/target/linux/arc770/dts/axs101.dts
+++ b/target/linux/arc770/dts/axs101.dts
@@ -17,6 +17,6 @@
compatible = "snps,axs101", "snps,arc-sdp";
chosen {
- bootargs = "earlycon=uart8250,mmio32,0xe0022000,115200n8 console=tty0 console=ttyS3,115200n8 consoleblank=0";
+ bootargs = "earlycon=uart8250,mmio32,0xe0022000,115200n8 console=ttyS3,115200n8";
};
};