aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2017-10-18 14:30:32 +0300
committerTimo Teräs <timo.teras@iki.fi>2017-10-18 15:01:03 +0300
commit75475f7e89527ee6d2b9b4a8b4f8172467afc04e (patch)
treebacc6b942314d2d9954c0f8411d106c0e34d2f61
parent2ee0346e5c8f8d9de0909c7e2af950b25e2e925a (diff)
downloadalpine-conf-75475f7e89527ee6d2b9b4a8b4f8172467afc04e.tar.bz2
alpine-conf-75475f7e89527ee6d2b9b4a8b4f8172467afc04e.tar.xz
setup-bootable: quiet down warnings and extra statistics
-rw-r--r--setup-bootable.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup-bootable.in b/setup-bootable.in
index ff13321..06127be 100644
--- a/setup-bootable.in
+++ b/setup-bootable.in
@@ -312,7 +312,7 @@ if [ -n "$srcdir" ]; then
for i in $files_to_move; do
if [ -e "$srcdir"/$i ]; then
vecho "Copying $srcdir/$i to $destdir/.new/"
- cp -a "$srcdir"/$i "$destdir"/.new/
+ cp -dR "$srcdir"/$i "$destdir"/.new/
fi
done
elif [ -n "$srcurl" ]; then
@@ -402,7 +402,7 @@ fsync $dest
syslinux $dest
if [ -b $parent_dev ]; then
- dd if=/usr/share/syslinux/mbr.bin of=$parent_dev
+ dd if=/usr/share/syslinux/mbr.bin of=$parent_dev status=none
else
echo "Warning: Could not find the parent device for $dest"
fi