Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv16446/scripts
Modified Files:
linux
Added Files:
fblogo
Log Message:
added fblogo for devil tux logo during framebuffer boot mode
--- NEW FILE: fblogo ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/fblogo,v $
# $Revision: 1.1 $
# $Date: 2003/12/18 16:44:44 $
#
# http://www.devil-linux.org
# you need the next line, otherwise script won't be executed !!!
# DL-build-system v3
### BEGIN INIT INFO
# Provides: fblogo
# Required-Start: $basebuildtools $libs
# Required-Stop:
# Default-Start: 1
# Default-Stop:
# Description: description
### END INIT INFO
# get the directoryname of the script
MYDIR=${0%/*}
# source functions and config
source $MYDIR/settings
source $MYDIR/functions
case $1 in
build )
make || exit 1
# install it in the lfsssystem for the kernel build script
make PREFIX=/usr install || exit 1
;;
* )
echo "ERROR ($0)"
echo "please add parameter so I know what to do"
exit 1
;;
esac
Index: linux
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/linux,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- linux 17 Dec 2003 14:55:47 -0000 1.46
+++ linux 18 Dec 2003 16:44:44 -0000 1.47
@@ -10,7 +10,7 @@
### BEGIN INIT INFO
# Provides: linux
-# Required-Start: $basebuildtools $libs pptp-patches grsecurity xfsprogs LVM patch-o-matic super-freeswan bridge-utils lm_sensors iproute2 watchdog MOSKRN pcwd usbat-02
+# Required-Start: $basebuildtools $libs pptp-patches grsecurity xfsprogs LVM patch-o-matic super-freeswan bridge-utils lm_sensors iproute2 watchdog MOSKRN pcwd usbat-02 fblogo
# Required-Stop:
# Default-Start: 1 2
# Default-Stop:
@@ -26,6 +26,10 @@
case $1 in
build )
+ if [ ! -e include/linux/linux_logo.h.org ]; then
+ mv include/linux/linux_logo.h include/linux/linux_logo.h.org
+ fblogo $DL_DIR/other/fblogo.png include/linux/linux_logo.h || exit 1
+ fi
if [ -e .config.add ]; then
# append settings from other progs to config file
cat .config.add >> .config || exit 1
|