mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
521 B
Executable File
521 B
Executable File
#!/bin/sh
BEGIN INIT INFO
Provides: psplash
Required-Start:
Required-Stop:
Default-Start: S
Default-Stop:
END INIT INFO
read CMDLINE < /proc/cmdline for x in $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
rotation=0 if [ -e /etc/rotation ]; then read rotation < /etc/rotation fi
/usr/bin/psplash --angle $rotation &