summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmkinitramfs10
1 files changed, 5 insertions, 5 deletions
diff --git a/mkinitramfs b/mkinitramfs
index fe60b4c..69c5289 100755
--- a/mkinitramfs
+++ b/mkinitramfs
@@ -217,21 +217,21 @@ function main {
# Copy binary and dependencies to cache dir
for bin in ${fqbins[@]}; do
# Copy the binary of interest
- install -D "${bin}" "${cache}/${bin}"
+ install -v -D "${bin}" "${cache}/${bin}"
local deps=$(get_deps ${bin})
# Copy each of the binary's deps
for dep in ${deps[@]}; do
- install -D ${dep} "${cache}/${dep}"
+ install -v -D ${dep} "${cache}/${dep}"
done
done
# Copy in message file
- [ -f "/etc/msg" ] && install -D "/etc/msg" "${cache}/etc/msg"
+ [ -f "/etc/msg" ] && install -v -D "/etc/msg" "${cache}/etc/msg"
# Copy in init script and add execute
- install -D -m 755 "${res_path}/init" "${cache}/init"
+ install -v -D -m 755 "${res_path}/init" "${cache}/init"
# Copy in the system shell profile
- install -D "/etc/profile" "${cache}/etc/profile"
+ install -v -D "/etc/profile" "${cache}/etc/profile"
# Create archive image
mkcpio ${cache} ${version}

Generated by cgit