blob: c963025193fcfb82b40dbead8aac8045e4b442b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/bin/sh
# -*- Mode: shell-script -*-
# Copyright (C) 2002 by Chmouel Boudjnah <chmouel@mandrakesoft.com>
# Redistribution of this file is permitted under the terms of the GNU
# Public License (GPL)
# $Id$
: ${splash_dir=/usr/share/bootsplash}
: ${splash_cfg=/etc/bootsplash}
[ $# = 3 ] || { echo "usage: $0 <initrd> <resolution> <theme>"; exit 1; }
initrd_file=$1
resolution=$2
THEME=$3
if [[ -f $splash_cfg/themes/$THEME/config/bootsplash-$resolution.cfg ]];then
config=$splash_cfg/themes/$THEME/config/bootsplash-$resolution.cfg
fi
if [[ -z $config ]];then
echo "Can't find a config file for resolution $resolution";
exit 1;
fi
# warly: we cannot use file command which is in /usr/bin/
# initrd_type=`zcat /boot/initrd-2.6.14-2mdk.ramfs.img | file -`
if `/bin/zcat $initrd_file 2> /dev/null | /bin/cpio -t &> /dev/null`; then
tmp_dir=`mktemp -d`
/bin/zcat $initrd_file | cpio-filter --exclude bootsplash > $tmp_dir/initrd
if [[ -x /sbin/splash ]]; then
/sbin/splash -s -f $config > $tmp_dir/bootsplash
echo bootsplash | (cd $tmp_dir ; cpio -o -c --quiet -O $tmp_dir/initrd --append)
fi
gzip -c $tmp_dir/initrd > $initrd_file
rm -rf $tmp_dir
else
$splash_dir/scripts/remove-boot-splash $initrd_file
if [[ -x /sbin/splash ]]; then
/sbin/splash -s -f $config >> $initrd_file
fi
fi
|