mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-27 10:30:52 +00:00
new package: add package 'berryboot-tools'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
09eea737a9
commit
804e2f52c4
39
packages/tools/berryboot-tools/install
Normal file
39
packages/tools/berryboot-tools/install
Normal file
@ -0,0 +1,39 @@
|
||||
#!/bin/sh
|
||||
|
||||
################################################################################
|
||||
# This file is part of OpenELEC - http://www.openelec.tv
|
||||
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
||||
#
|
||||
# This Program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# This Program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
||||
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
||||
# http://www.gnu.org/copyleft/gpl.html
|
||||
################################################################################
|
||||
|
||||
. config/options $1
|
||||
|
||||
PLYMOUTH_DIR="$BUILD/plymouth-lite-*"
|
||||
PLYMOUTH_PKG_DIR=`find $PACKAGES -type d -name plymouth-lite 2>/dev/null`
|
||||
|
||||
mkdir -p $INSTALL
|
||||
cp $PKG_DIR/scripts/berryboot-init $INSTALL
|
||||
|
||||
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
|
||||
else
|
||||
cp $PLYMOUTH_PKG_DIR/splash/splash.png $INSTALL/splash
|
||||
fi
|
36
packages/tools/berryboot-tools/meta
Normal file
36
packages/tools/berryboot-tools/meta
Normal file
@ -0,0 +1,36 @@
|
||||
################################################################################
|
||||
# This file is part of OpenELEC - http://www.openelec.tv
|
||||
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
||||
#
|
||||
# This Program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# This Program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
||||
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
||||
# http://www.gnu.org/copyleft/gpl.html
|
||||
################################################################################
|
||||
|
||||
PKG_NAME="berryboot-tools"
|
||||
PKG_VERSION="0.1"
|
||||
PKG_REV="1"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="http://www.openelec.tv"
|
||||
PKG_URL=""
|
||||
PKG_DEPENDS="zlib"
|
||||
PKG_BUILD_DEPENDS="toolchain zlib libpng plymouth-lite"
|
||||
PKG_PRIORITY="optional"
|
||||
PKG_SECTION="tools"
|
||||
PKG_SHORTDESC="berryboot-tools: tools for berryboot support"
|
||||
PKG_LONGDESC="berryboot-tools: tools for berryboot support"
|
||||
PKG_IS_ADDON="no"
|
||||
|
||||
PKG_AUTORECONF="no"
|
56
packages/tools/berryboot-tools/scripts/berryboot-init
Normal file
56
packages/tools/berryboot-tools/scripts/berryboot-init
Normal file
@ -0,0 +1,56 @@
|
||||
#!/bin/sh
|
||||
|
||||
################################################################################
|
||||
# This file is part of OpenELEC - http://www.openelec.tv
|
||||
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
||||
#
|
||||
# This Program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# This Program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
||||
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
||||
# http://www.gnu.org/copyleft/gpl.html
|
||||
################################################################################
|
||||
|
||||
UPDATEDIR=${DATADIR}/storage/.update
|
||||
UPDATEFILE=${UPDATEDIR}/SYSTEM
|
||||
SPLASHIMAGE="/squashfs/splash/splash.png"
|
||||
|
||||
#
|
||||
# load splash
|
||||
# berryboot is based on uClibc, so run ply-image via ld.so directly
|
||||
#
|
||||
|
||||
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
|
||||
fi
|
||||
|
||||
#
|
||||
# Check if OpenELEC downloaded an update
|
||||
#
|
||||
|
||||
if [ -f "${UPDATEFILE}" ]; then
|
||||
echo "Updating OpenELEC..."
|
||||
cd /
|
||||
umount -f /squashfs > /dev/null 2>&1
|
||||
mv -f "${UPDATEFILE}" "/mnt/images/${IMAGE}"
|
||||
rm -rf "${UPDATEDIR}/*"
|
||||
sync
|
||||
echo "Done, rebooting now..."
|
||||
sleep 5
|
||||
reboot -f
|
||||
fi
|
@ -104,6 +104,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="default"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="no"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -104,6 +104,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="default"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="no"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -104,6 +104,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="default"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="no"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -104,6 +104,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="default"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="no"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -104,6 +104,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="default"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="no"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -104,6 +104,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="default"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="no"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -104,6 +104,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="default"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="no"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -104,6 +104,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="4.7"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="yes"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -104,6 +104,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="default"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="no"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -99,6 +99,9 @@
|
||||
# default: default mainline gcc
|
||||
GCC_VERSION="default"
|
||||
|
||||
# install Berryboot support tools
|
||||
BERRYBOOT_TOOLS="no"
|
||||
|
||||
# Kernel to use. values can be:
|
||||
# default: default mainline kernel
|
||||
# ti-omap4: Ti's OMAP4 kernel
|
||||
|
@ -141,6 +141,9 @@ IMAGE_NAME="$DISTRONAME-$TARGET_VERSION"
|
||||
# Sensors support
|
||||
[ "$SENSOR_SUPPORT" = "yes" ] && $SCRIPTS/install lm_sensors
|
||||
|
||||
# Berryboot support
|
||||
[ "$BERRYBOOT_TOOLS" = "yes" ] && $SCRIPTS/install berryboot-tools
|
||||
|
||||
# Installer support
|
||||
[ "$INSTALLER_SUPPORT" = "yes" ] && $SCRIPTS/install installer
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user