plymouth-lite: add support for project based splash screens

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-06-29 10:06:15 +02:00
parent 62a00b6629
commit 616d948ccc
2 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,11 @@ if [ "$2" = initramfs ]; then
cp $PKG_BUILD/ply-image $INSTALL/initramfs/bin
mkdir -p $INSTALL/initramfs
cp $PKG_DIR/splash/Splash.png $INSTALL/initramfs/splash.png
if [ -f $PROJECT_DIR/$PROJECT/splash/splash.png ]; then
cp $PROJECT_DIR/$PROJECT/filesystem/splash/splash.png $INSTALL/initramfs/
else
cp $PKG_DIR/splash/splash.png $INSTALL/initramfs/
fi
exit 0
fi

View File

Before

Width:  |  Height:  |  Size: 292 KiB

After

Width:  |  Height:  |  Size: 292 KiB