Start the system console on the LCD automatically after booting.
options fbtft_device name=flexpfb rotate=270 options flexfb chip=ili9488
aml_i2c pwm-meson pwm-ctrl fbtft_device flexfb sx65x
fbtft_device flexfb sx65x
sudo systemctl disable lightdm.service
sudo systemctl disable lightdm
Find bootargs line and append following line to the end of line.
fbcon=map:22
ex) setenv bootargs “root=UUID… fbcon=map:22”
The PWM0 of ODROID-C2/C1 is pull-down as default, so you have to add following line in “/etc/rc.local” file.
echo 1 > /sys/devices/platform/pwm-ctrl/enable0 echo 500000 > /sys/devices/platform/pwm-ctrl/freq0 echo 1023 > /sys/devices/platform/pwm-ctrl/duty0 chvt 1
sudo reboot
Edit tty1 service
sudo systemctl edit getty@tty1
And add
[Service] ExecStart= ExecStart=-/sbin/agetty -a odroid --noclear %I $TERM
odroid@odroid:~$ sudo systemctl cat getty@tty1 | grep Exec ExecStart=-/sbin/agetty --noclear %I $TERM ExecStart= ExecStart=-/sbin/agetty -a odroid --noclear %I $TERM
Restart tty1 service
sudo systemctl restart getty@tty1