Blame view

recipes-core/sysvinit/sysvinit-inittab/imxgpu2d/rc_mxc.S 672 Bytes
28a08477b   Eric Lee   Yocto morty meta ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #!/bin/bash
  #
  if grep -sq ttymxc5 /proc/cmdline; then
  	/sbin/getty -L ttymxc5 115200 vt100
  elif grep -sq ttymxc1 /proc/cmdline; then
  	/sbin/getty -L ttymxc1 115200 vt100
  elif grep -sq ttymxc6 /proc/cmdline; then
  	/sbin/getty -L ttymxc6 115200 vt100
  elif grep -sq ttymxc2 /proc/cmdline; then
          /sbin/getty -L ttymxc2 115200 vt100
  elif grep -sq ttyLP5 /proc/cmdline; then
  	/sbin/getty -L ttyLP5 115200 vt100
  elif grep -sq ttyLP1 /proc/cmdline; then
  	/sbin/getty -L ttyLP1 115200 vt100
a727e1dc0   Eric Lee   minor bug fixed
15
  elif grep -sq ttyLP6 /proc/cmdline; then
28a08477b   Eric Lee   Yocto morty meta ...
16
  	/sbin/getty -L ttyLP6 115200 vt100
a727e1dc0   Eric Lee   minor bug fixed
17
  elif grep -sq ttyLP2 /proc/cmdline; then
28a08477b   Eric Lee   Yocto morty meta ...
18
19
20
21
          /sbin/getty -L ttyLP2 115200 vt100
  else
  	sleep 100000
  fi