remove package 'splashutils'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
@ -25,7 +25,7 @@ PKG_ARCH="any"
|
|||||||
PKG_LICENSE="GPL"
|
PKG_LICENSE="GPL"
|
||||||
PKG_SITE="http://www.busybox.net"
|
PKG_SITE="http://www.busybox.net"
|
||||||
PKG_URL="http://busybox.net/downloads/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
PKG_URL="http://busybox.net/downloads/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
||||||
PKG_DEPENDS="bash kexec-tools v86d splashutils hdparm speedcontrol pastebinit zip"
|
PKG_DEPENDS="bash kexec-tools hdparm speedcontrol pastebinit zip"
|
||||||
PKG_BUILD_DEPENDS="toolchain busybox-hosttools"
|
PKG_BUILD_DEPENDS="toolchain busybox-hosttools"
|
||||||
PKG_PRIORITY="required"
|
PKG_PRIORITY="required"
|
||||||
PKG_SECTION="system"
|
PKG_SECTION="system"
|
||||||
|
@ -1,49 +0,0 @@
|
|||||||
#!/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
|
|
||||||
|
|
||||||
cd $PKG_BUILD
|
|
||||||
./configure --host=$TARGET_NAME \
|
|
||||||
--build=$HOST_NAME \
|
|
||||||
--enable-shared \
|
|
||||||
--disable-static \
|
|
||||||
--disable-debug \
|
|
||||||
--disable-static-binaries \
|
|
||||||
--disable-deprecated \
|
|
||||||
--disable-fbcondecor \
|
|
||||||
--disable-helper \
|
|
||||||
--disable-misc \
|
|
||||||
--with-gnu-ld \
|
|
||||||
--without-gpm \
|
|
||||||
--without-mng \
|
|
||||||
--with-png \
|
|
||||||
--with-ttf \
|
|
||||||
--with-ttf-kernel \
|
|
||||||
--with-essential-prefix="/" \
|
|
||||||
--with-essential-bindir="/bin" \
|
|
||||||
--with-essential-sbindir="/sbin" \
|
|
||||||
--with-essential-libdir="/lib" \
|
|
||||||
--with-themedir="/etc/splash" \
|
|
||||||
--without-klibc
|
|
||||||
|
|
||||||
make
|
|
@ -1,41 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# 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
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
#
|
|
||||||
# make variable directory structure
|
|
||||||
#
|
|
||||||
# runlevels: openelec, installer, textmode
|
|
||||||
|
|
||||||
if [ ! "$SPLASH" = "no" ]; then
|
|
||||||
progress "starting splash"
|
|
||||||
if [ -z "$SPLASH_THEME" ]; then
|
|
||||||
SPLASH_THEME="default"
|
|
||||||
fi
|
|
||||||
mkdir -p /run/splash/cache/
|
|
||||||
fbsplashd --theme=$SPLASH_THEME --type=bootup
|
|
||||||
|
|
||||||
echo "set tty silent 2" > /run/splash/cache/.splash
|
|
||||||
echo "set tty verbose 6" > /run/splash/cache/.splash
|
|
||||||
echo "set mode silent" > /run/splash/cache/.splash
|
|
||||||
echo "set message `lsb_release`" > /run/splash/cache/.splash
|
|
||||||
echo "repaint" > /run/splash/cache/.splash
|
|
||||||
chvt 2
|
|
||||||
fi
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
|||||||
#!/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
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/lib
|
|
||||||
cp -P $PKG_BUILD/src/.libs/libfbsplash.so* $INSTALL/lib
|
|
||||||
cp -P $PKG_BUILD/src/.libs/libfbsplashrender.so* $INSTALL/lib
|
|
||||||
rm -rf $INSTALL/lib/libfbsplashrender.so*T
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/bin
|
|
||||||
cp $PKG_BUILD/src/.libs/fbsplashd $INSTALL/bin
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/bin
|
|
||||||
cp $PKG_BUILD/src/.libs/splash_util $INSTALL/usr/bin
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/etc/splash
|
|
||||||
if [ -d $PROJECT_DIR/$PROJECT/splash ]; then
|
|
||||||
cp -R $PROJECT_DIR/$PROJECT/splash/* $INSTALL/etc/splash
|
|
||||||
else
|
|
||||||
cp -R $PKG_DIR/splash/default $INSTALL/etc/splash
|
|
||||||
fi
|
|
@ -1,36 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# 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="splashutils"
|
|
||||||
PKG_VERSION="1.5.4.4"
|
|
||||||
PKG_REV="1"
|
|
||||||
PKG_ARCH="any"
|
|
||||||
PKG_LICENSE="GPL"
|
|
||||||
PKG_SITE="http://dev.gentoo.org/~spock/projects/fbsplash"
|
|
||||||
PKG_URL="http://dev.gentoo.org/~spock/projects/fbsplash/archive/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
|
||||||
PKG_DEPENDS="libpng libjpeg-turbo freetype"
|
|
||||||
PKG_BUILD_DEPENDS="toolchain libpng libjpeg-turbo freetype"
|
|
||||||
PKG_PRIORITY="optional"
|
|
||||||
PKG_SECTION="system"
|
|
||||||
PKG_SHORTDESC="splashutils:"
|
|
||||||
PKG_LONGDESC="splashutils.."
|
|
||||||
PKG_IS_ADDON="no"
|
|
||||||
|
|
||||||
PKG_AUTORECONF="yes"
|
|
@ -1,24 +0,0 @@
|
|||||||
diff -Naur splashutils-1.5.4.4/src/fbsplash.h splashutils-1.5.4.4.patch/src/fbsplash.h
|
|
||||||
--- splashutils-1.5.4.4/src/fbsplash.h 2011-06-12 23:45:22.000000000 +0200
|
|
||||||
+++ splashutils-1.5.4.4.patch/src/fbsplash.h 2012-02-16 07:54:55.028245671 +0100
|
|
||||||
@@ -6,7 +6,7 @@
|
|
||||||
#include <linux/kd.h>
|
|
||||||
#include <linux/input.h>
|
|
||||||
|
|
||||||
-#define FBSPLASH_DIR "//lib/splash"
|
|
||||||
+#define FBSPLASH_DIR "/run/splash"
|
|
||||||
#define FBSPLASH_CACHEDIR FBSPLASH_DIR"/cache"
|
|
||||||
#define FBSPLASH_PIDFILE FBSPLASH_CACHEDIR"/daemon.pid"
|
|
||||||
#define FBSPLASH_PROFILE FBSPLASH_CACHEDIR"/profile"
|
|
||||||
diff -Naur splashutils-1.5.4.4/src/fbsplash.h.in splashutils-1.5.4.4.patch/src/fbsplash.h.in
|
|
||||||
--- splashutils-1.5.4.4/src/fbsplash.h.in 2011-06-12 23:43:39.000000000 +0200
|
|
||||||
+++ splashutils-1.5.4.4.patch/src/fbsplash.h.in 2012-02-16 07:54:39.069954498 +0100
|
|
||||||
@@ -6,7 +6,7 @@
|
|
||||||
#include <linux/kd.h>
|
|
||||||
#include <linux/input.h>
|
|
||||||
|
|
||||||
-#define FBSPLASH_DIR "@libdir@/splash"
|
|
||||||
+#define FBSPLASH_DIR "/run/splash"
|
|
||||||
#define FBSPLASH_CACHEDIR FBSPLASH_DIR"/cache"
|
|
||||||
#define FBSPLASH_PIDFILE FBSPLASH_CACHEDIR"/daemon.pid"
|
|
||||||
#define FBSPLASH_PROFILE FBSPLASH_CACHEDIR"/profile"
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 1024x768.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-1024x768.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-1024x768.png
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 1280x1024.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-1280x1024.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-1280x1024.png
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 1280x720.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-1280x720.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-1280x720.png
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 1280x800.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-1280x800.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-1280x800.png
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 1400x1050.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-1400x1050.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-1400x1050.png
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 1600x1200.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-1600x1200.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-1600x1200.png
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 1600x900.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-1600x900.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-1600x900.png
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 1920x1080.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-1920x1080.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-1920x1080.png
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 640x480.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-640x480.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-640x480.png
|
|
@ -1,16 +0,0 @@
|
|||||||
# This is a gensplash configuration file for
|
|
||||||
# theme OpenELEC, resolution 800x600.
|
|
||||||
|
|
||||||
# bgcolor is the text background (i.e. transparent) color.
|
|
||||||
bgcolor=0
|
|
||||||
|
|
||||||
# ttf message output parameters
|
|
||||||
text_x=10
|
|
||||||
text_y=10
|
|
||||||
text_size=18
|
|
||||||
text_color=#83b9dd
|
|
||||||
text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf
|
|
||||||
|
|
||||||
# name of the picture file (full path recommended)
|
|
||||||
pic=/etc/splash/default/images/splash-800x600.png
|
|
||||||
silentpic=/etc/splash/default/images/splash-800x600.png
|
|
Before Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 101 KiB |
Before Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 85 KiB |
Before Width: | Height: | Size: 112 KiB |
Before Width: | Height: | Size: 139 KiB |
Before Width: | Height: | Size: 104 KiB |
Before Width: | Height: | Size: 121 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 53 KiB |