author | harlekin <harlekin> | 2002-08-30 12:19:13 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-08-30 12:19:13 (UTC) |
commit | 56640f56c2c0a5191a47927d48dea1e7df98c985 (patch) (side-by-side diff) | |
tree | 05f65b835e99f629f3658672cfdbf7f023aa41b7 | |
parent | 73ccaa41947cd22902b96c18f3b96a6f9f3e565c (diff) | |
download | opie-56640f56c2c0a5191a47927d48dea1e7df98c985.zip opie-56640f56c2c0a5191a47927d48dea1e7df98c985.tar.gz opie-56640f56c2c0a5191a47927d48dea1e7df98c985.tar.bz2 |
make it earlier in boot process
-rw-r--r-- | library/opie-bootsplash.control | 2 | ||||
-rwxr-xr-x | mkipks | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/library/opie-bootsplash.control b/library/opie-bootsplash.control index 98d9339..aad3a84 100644 --- a/library/opie-bootsplash.control +++ b/library/opie-bootsplash.control @@ -1,7 +1,7 @@ -Files: etc/init.d/bootsplash etc/rc2.d/S01bootsplash pics/bootsplash/bootlogo +Files: etc/init.d/bootsplash etc/rcS.d/S01bootsplash pics/bootsplash/bootlogo Priority: optinal Section: opie/system Maintainer: Project Opie <opie@handhelds.org> Architecture: arm Version: $QPE_VERSION-$SUB_VERSION.2 Description: Splash screen aptempt @@ -1,36 +1,37 @@ #!/bin/sh QTE_VERSION=2.3.3 DEB_VERSION=2.0 # Have to do this here, since CVS can't store symlinks mkdir -p etc/rc2.d rm -f etc/rc2.d/S98opie ln -s ../init.d/opie etc/rc2.d/S98opie -rm -f etc/rc2.d/S01bootsplash -ln -s ../init.d/opie etc/rc2.d/S01bootsplash +mkdir -p etc/rcS.d +rm -f etc/rcS.d/S01bootsplash +ln -s ../init.d/opie etc/rcS.d/S01bootsplash rm -f ipaq/etc/rc2.d/S96opieatd ln -s ../init.d/opieatd ipaq/etc/rc2.d/S96opieatd VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/include/qpe/version.h) SUB_VERSION=$(sed -n -e 's,.*SUB_VERSION \"\(.*\)\".*,\1,p' <$OPIEDIR/include/qpe/version.h) if grep -q 'QPE_VERSION .*snapshot' $OPIEDIR/include/qpe/version.h then VERSION_CVS="$(date +%Y%m%d)" SUB_VERSION=$VERSION_CVS else VERSION_CVS="" fi QPE_VERSION=$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT ARCH=arm STRIP=arm-linux-strip STRIP_FILES="*ARM*not stripped" |