You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
359 B
Bash
20 lines
359 B
Bash
2 years ago
|
#!/bin/sh
|
||
|
|
||
|
|
||
|
|
||
|
if ls /dev/fb* >/dev/null 2>/dev/null; then
|
||
|
for i in /dev/vcs[0-9]*; do
|
||
|
{ :
|
||
|
|
||
|
} < /dev/tty${i#/dev/vcs} > /dev/tty${i#/dev/vcs}
|
||
|
done
|
||
|
fi
|
||
|
|
||
|
mkdir -p /run/console-setup
|
||
|
> /run/console-setup/font-loaded
|
||
|
for i in /dev/vcs[0-9]*; do
|
||
|
{ :
|
||
|
printf '\033%%G'
|
||
|
} < /dev/tty${i#/dev/vcs} > /dev/tty${i#/dev/vcs}
|
||
|
done
|