From 43cbd821058f2cef0cb1485e87c894c906a54a71 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 1 Mar 2007 11:18:17 +0000 Subject: use cpio-filter to remove bootsplash from initrd without being root (removing a file using cpio implies "cpio -i" then "cpio -o", but devices can't be created as non-root) --- scripts/make-boot-splash-raw | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'scripts/make-boot-splash-raw') diff --git a/scripts/make-boot-splash-raw b/scripts/make-boot-splash-raw index e453b55..f5279fe 100755 --- a/scripts/make-boot-splash-raw +++ b/scripts/make-boot-splash-raw @@ -28,17 +28,12 @@ fi if `/bin/zcat $initrd_file 2> /dev/null | /bin/cpio -t &> /dev/null`; then tmp_dir=`mktemp -d` - pushd $tmp_dir &> /dev/null - /bin/zcat $initrd_file 2>/dev/null | /bin/cpio -id 2>/dev/null + /bin/zcat $initrd_file | cpio-filter --exclude bootsplash > $tmp_dir/initrd if [[ -x /sbin/splash ]]; then /sbin/splash -s -f $config > $tmp_dir/bootsplash - else - if [[ -f $tmp_dir/bootsplash ]]; then - rm -f $tmp_dir/bootsplash - fi + echo bootsplash | (cd $tmp_dir ; cpio -o -c -O $tmp_dir/initrd --append) fi - /bin/find . -print | cpio --quiet -c -o 2> /dev/null | gzip -c > $initrd_file - popd &> /dev/null + gzip -c $tmp_dir/initrd > $initrd_file rm -rf $tmp_dir else $splash_dir/scripts/remove-boot-splash $initrd_file -- cgit v1.2.1