summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Eatmon <reatmon@ti.com>2022-10-10 12:18:27 -0500
committerLCPD Automation Script <lcpdbld@list.ti.com>2022-10-10 19:06:23 -0500
commit4c42e2bfbc97d528d55ee5748419ce5af54f4e20 (patch)
treed850a2a88ab0488301afda5961d0b65ca8184760
parent816ddf70e73e60eecf23f57e540f1032d3f7860f (diff)
downloadmeta-ti-4c42e2bfbc97d528d55ee5748419ce5af54f4e20.tar.gz
j721s2 and j784s4: Correct serial console device
Serial console in J721S2/J784S4 EVM config was set to ttyS10. It should be ttyS2. This caused sysv based systems (eg, tiny) to apparently hang because of no login prompt. This didn't show up as a problem on systemd systems (eg, default) because systemd will automatically setup a serial tty with the console option passed in on the kernel command line (using console=...), which U-Boot correctly passes in as ttyS2 for J721S2/J784S4. Signed-off-by: Jonathan Humphreys <j-humphreys@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--conf/machine/j721s2-evm.conf2
-rw-r--r--conf/machine/j784s4-evm.conf2
2 files changed, 2 insertions, 2 deletions
diff --git a/conf/machine/j721s2-evm.conf b/conf/machine/j721s2-evm.conf
index ba5e8def..7fe1fb0e 100644
--- a/conf/machine/j721s2-evm.conf
+++ b/conf/machine/j721s2-evm.conf
@@ -6,7 +6,7 @@ require conf/machine/include/j7.inc
6 6
7MACHINE_FEATURES += "gpu" 7MACHINE_FEATURES += "gpu"
8 8
9SERIAL_CONSOLES = "115200;ttyS10" 9SERIAL_CONSOLES = "115200;ttyS2"
10SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" 10SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"
11TFA_K3_USART = "0x8" 11TFA_K3_USART = "0x8"
12OPTEE_K3_USART = "0x8" 12OPTEE_K3_USART = "0x8"
diff --git a/conf/machine/j784s4-evm.conf b/conf/machine/j784s4-evm.conf
index a8ad25f6..278b393c 100644
--- a/conf/machine/j784s4-evm.conf
+++ b/conf/machine/j784s4-evm.conf
@@ -6,7 +6,7 @@ require conf/machine/include/j7.inc
6 6
7MACHINE_FEATURES += "gpu" 7MACHINE_FEATURES += "gpu"
8 8
9SERIAL_CONSOLES = "115200;ttyS10" 9SERIAL_CONSOLES = "115200;ttyS2"
10SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" 10SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"
11TFA_K3_USART = "0x8" 11TFA_K3_USART = "0x8"
12OPTEE_K3_USART = "0x8" 12OPTEE_K3_USART = "0x8"