mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
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
This commit is contained in:
@@ -1,5 +1,14 @@
|
|||||||
#!/bin/sh
|
#!/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
|
export TMPDIR=/mnt/.psplash
|
||||||
mount tmpfs -t tmpfs $TMPDIR -o,size=40k
|
mount tmpfs -t tmpfs $TMPDIR -o,size=40k
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ DESCRIPTION = "Userspace framebuffer boot logo based on usplash."
|
|||||||
SECTION = "base"
|
SECTION = "base"
|
||||||
LICENSE = "GPL"
|
LICENSE = "GPL"
|
||||||
PV = "0.0+svn${SRCDATE}"
|
PV = "0.0+svn${SRCDATE}"
|
||||||
|
PR = "r1"
|
||||||
|
|
||||||
SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
|
SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \
|
||||||
file://psplash-init"
|
file://psplash-init"
|
||||||
|
|||||||
Reference in New Issue
Block a user