Merge pull request #43 from rneugeba/initrdfix

initrd: don't include /mnt in the initrd
This commit is contained in:
Justin Cormack 2016-03-07 13:29:16 +00:00
commit c3488731f4

View File

@ -4,7 +4,7 @@ set -e
rm -rf /tmp/*
for f in $(ls | grep -vE 'dev|sys|proc|tmp|export')
for f in $(ls | grep -vE 'dev|sys|proc|tmp|export|mnt')
do
cp -a $f /tmp
done