diff --git a/packages/tools/berryboot-tools/install b/packages/tools/berryboot-tools/install index d22fc5c7d0..ae0e5fd96d 100755 --- a/packages/tools/berryboot-tools/install +++ b/packages/tools/berryboot-tools/install @@ -32,8 +32,8 @@ mkdir -p $INSTALL/bin cp $PLYMOUTH_DIR/ply-image $INSTALL/bin mkdir -p $INSTALL/splash - if [ -f $PROJECT_DIR/$PROJECT/splash/splash.png ]; then - cp $PROJECT_DIR/$PROJECT/splash/splash.png $INSTALL/splash + if [ -f $PROJECT_DIR/$PROJECT/splash/splash-full.png ]; then + cp $PROJECT_DIR/$PROJECT/splash/splash-full.png $INSTALL/splash else - cp $PLYMOUTH_PKG_DIR/splash/splash.png $INSTALL/splash + cp $PLYMOUTH_PKG_DIR/splash/splash-full.png $INSTALL/splash fi diff --git a/packages/tools/berryboot-tools/scripts/berryboot-init b/packages/tools/berryboot-tools/scripts/berryboot-init index 87b35f7e04..f90369ec3f 100755 --- a/packages/tools/berryboot-tools/scripts/berryboot-init +++ b/packages/tools/berryboot-tools/scripts/berryboot-init @@ -22,7 +22,7 @@ UPDATEDIR=${DATADIR}/storage/.update UPDATEFILE=${UPDATEDIR}/SYSTEM -SPLASHIMAGE="/squashfs/splash/splash.png" +SPLASHIMAGE="/squashfs/splash/splash-full.png" # # load splash @@ -30,10 +30,6 @@ SPLASHIMAGE="/squashfs/splash/splash.png" # if [ -e /dev/fb0 -a -f "${SPLASHIMAGE}" ]; then -# set framebuffer to a default resolution (1024x768-32) - LD_LIBRARY_PATH=/squashfs/lib /squashfs/lib/ld.so \ - /squashfs/bin/busybox fbset -g 1024 768 1024 768 32 - # load splash LD_LIBRARY_PATH=/squashfs/lib /squashfs/lib/ld.so \ /squashfs/bin/ply-image ${SPLASHIMAGE} > /dev/null 2>&1