1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-04 02:00:04 +00:00
Files
Matthew Allum da317b2442 Allow psplash to be disabled via kernel cmd line
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1033 311d38ba-8fff-0310-9ca6-ca027cbcb966
2006-12-14 11:49:37 +00:00

17 lines
263 B
Bash
Executable File

#!/bin/sh
for x in $(cat /proc/cmdline); do
case $x in
psplash=false)
echo "Boot splashscreen disabled"
exit 0;
;;
esac
done
export TMPDIR=/mnt/.psplash
mount tmpfs -t tmpfs $TMPDIR -o,size=40k
/usr/bin/psplash &