diff --git a/Customizing-boot-screen-raspbian-%28non-Plymouth%29.md b/Customizing-boot-screen-raspbian-%28non-Plymouth%29.md new file mode 100644 index 0000000..3de304a --- /dev/null +++ b/Customizing-boot-screen-raspbian-%28non-Plymouth%29.md @@ -0,0 +1,31 @@ +## Edit cmdline + +Add following options to /boot/cmdline.txt + +``` +quiet splash loglevel=0 vt.cur_default=1 vt.global_cursor_default=0 plymouth.enable=0 fastboot noatime nodiratime noram +``` + +## Disable blinking cursor + +Add folowing code to /etc/rc.local + +``` +echo 0 > /sys/class/graphics/fbcon/cursor_blink +``` + +## Edit config + +Add following options to + +``` +gpu_mem=256 +initial_turbo=60 +boot_delay=0 +disable_splash=1 +max_current_usb=1 +``` + +sources: +https://www.kernel.org/doc/html/v4.10/admin-guide/kernel-parameters.html +http://www.friendlyarm.net/forum/topic/2998 \ No newline at end of file