summaryrefslogtreecommitdiff
path: root/meta/packages/psplash/files/psplash-init
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/psplash/files/psplash-init')
-rwxr-xr-xmeta/packages/psplash/files/psplash-init5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/packages/psplash/files/psplash-init b/meta/packages/psplash/files/psplash-init
index ea370d622..66c85e933 100755
--- a/meta/packages/psplash/files/psplash-init
+++ b/meta/packages/psplash/files/psplash-init
@@ -7,7 +7,8 @@
# Default-Stop:
### END INIT INFO
-for x in $(cat /proc/cmdline); do
+read CMDLINE < /proc/cmdline
+for x in $CMDLINE; do
case $x in
psplash=false)
echo "Boot splashscreen disabled"
@@ -21,7 +22,7 @@ mount tmpfs -t tmpfs $TMPDIR -o,size=40k
rotation=0
if [ -e /etc/rotation ]; then
- rotation=`cat /etc/rotation`
+ read rotation < /etc/rotation
fi
/usr/bin/psplash --angle $rotation &