diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2009-02-10 14:36:43 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2009-02-10 14:36:43 +0000 |
commit | 807062445ea97112b7a339b6649c3b096ec2c579 (patch) | |
tree | 97f1e009c7c1003cc487f43603f8df0088c697df | |
parent | ee46bc7bbddea0ec57b8d1c5ea7db605e599333b (diff) | |
download | bootsplash-807062445ea97112b7a339b6649c3b096ec2c579.tar bootsplash-807062445ea97112b7a339b6649c3b096ec2c579.tar.gz bootsplash-807062445ea97112b7a339b6649c3b096ec2c579.tar.bz2 bootsplash-807062445ea97112b7a339b6649c3b096ec2c579.tar.xz bootsplash-807062445ea97112b7a339b6649c3b096ec2c579.zip |
- Release 3.2.19
- really fix changing splash theme
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | scripts/make-boot-splash-raw | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ NAME=bootsplash -VERSION := 3.2.18 +VERSION := 3.2.19 SUBDIRS=scripts fb fbmngplay fbtruetype splash po FILES=$(SUBDIRS) Makefile ChangeLog README diff --git a/scripts/make-boot-splash-raw b/scripts/make-boot-splash-raw index eb99109..5b03e2d 100755 --- a/scripts/make-boot-splash-raw +++ b/scripts/make-boot-splash-raw @@ -30,8 +30,8 @@ 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|etc/splashy|usr/share/splashy/themes' > $tmp_dir/initrd if [ -x /sbin/splashy ]; then - (echo /etc/splashy/themes; /usr/sbin/splashy_find_files) \ - | perl -MFile::Basename -ne 'm,^/(etc/splashy/.*|usr/share/splashy/themes/.*), and print $1 . "\n" . dirname($1) . "\n"' \ + (echo /etc/splashy/themes ; echo /usr/share/splashy/themes ; /usr/sbin/splashy_find_files ) \ + | perl -MFile::Basename -ne 'm,^/(etc/splashy/.*|usr/share/splashy/.*), and print $1 . "\n" . dirname($1) . "\n"' \ | sort -u | (cd / ; cpio -o -c -L --quiet -O $tmp_dir/initrd --append) elif [[ -x /sbin/splash ]]; then /sbin/splash -s -f $config > $tmp_dir/bootsplash |