ACC SHELL

Path : /lib/mkinitrd/setup/
File Upload :
Current File : //lib/mkinitrd/setup/93-done.sh

#!/bin/bash
#
#%stage: boot
#%depends: progs sharedlibs
#

pushd . > /dev/null 2>&1
cd $tmp_mnt
find bin sbin -type f -print0 | xargs -0 chmod 0755
if ! find . ! -name "*~" | cpio -H newc --create | gzip -9 > $tmp_initrd.gz
then
    oops 8 "Failed to build initrd"
fi
popd > /dev/null 2>&1
if ! cp -f $tmp_initrd.gz $initrd_image ; then
    oops 8 "Failed to install initrd"
fi
rm -rf $tmp_mnt


ACC SHELL 2018