diff options
author | Aaron Ball <nullspoon@oper.io> | 2019-05-21 09:49:17 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2019-05-21 09:49:17 -0600 |
commit | 5d652eb46cab242d999db7077ee943462e71c680 (patch) | |
tree | d9ecedeba4c944dcf3ac4c8060c9d73d4870e064 | |
parent | 3bfd1fe6f11acdc0ce9cac20c91e60909a8a84de (diff) | |
download | mkinitramfs-5d652eb46cab242d999db7077ee943462e71c680.tar.gz mkinitramfs-5d652eb46cab242d999db7077ee943462e71c680.tar.xz |
mkinitramfs:Enable verbose on all install commandsv1.1-rc9
This makes the process a bit more transparent and easier to troubleshoot
when things break.
-rwxr-xr-x | mkinitramfs | 10 |
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} |