Hello, is there a way to hide the complete linux boot text ? I saw it somewhere, but the xbox controller and missing wifi card message still popped up. Is there any solution for that ? Thanks, Bodo
There is a way to change your bash preferences to have console text appear black, but then you woudn't see text you type. The reason thsoe two messages appear is because they are occuring after the automatic login.
thank you, a friend of mine could also remove the xbox message from the config file but the "wifi card not found" message is the last thing that still pops up. maybe there is a way to disable it somewhere ? have a nice new year ! bodo
You will see a few echo commands. That is what displays on the screen. If you comment those out with a # at the beginning of each line, then those items won't be shown.
-Shea
example:
if [ "$eIP" != "$blank" ]; then #echo "eth0 available" IP="$eIP" elif [ "$wIP" != "$blank" ]; then #echo "eth0 unavailable" #echo "wlan0 available" IP="$wIP" else #echo "eth0 unavailable" #echo "wlan0 unavailable" IP="$blank" fi
This worked great, only the message about the missing wifi adapter will pop up. If you don't need wifi you can add a # in front of line 2 in getip.sh. then this message will also dissapear.
Do you know how i can also remove the system information and "your last login..." info ? Then Pimame would just boot up black. :)
If you want a clean boot screen, do the following. first, backup the file /boot/cmdline.txt Second, edit the file /boot/cmdline.txt and remove the 'console=tty1' part from the line. This will make sure that during the boot no text is visible. Third, at the beginning of the same line put 'logo.nologo' (without the ' ') This will hide the Raspberry logo.
The only thing you will see durring boot, is a blinking cursor on the left top. Thats it.
Check my raspicade documentation : you can send all text output to console 2, as you are using console 1 at boot : main advantage you can check in case of errors by pressing ALT-F2 to see console text. everything is done by cmdline.txt file -> some tricky option to use ;)
next thing : make a clear and send emulator's/frontend output to dev/null : example for ES1 : COMMAND=clear;/home/pi/gngeo-pi/bin/gngeo %ROM% > /dev/null 2>&1