blob: 0c50ff73420f4f08e8d5ba04c85b983b7610729d (
plain)
1
2
3
4
5
6
7
8
9
|
# SPDX-License-Identifier: GPL-2.0-only
# OpenWRT splash screen if using framebuffer console
if [ ! -d /sys/class/graphics/fbcon ] ; then
exit 0
fi
echo 0 > /sys/class/graphics/fbcon/cursor_blink
cat /etc/banner > /dev/tty0
|