diff options
-rwxr-xr-x | make-boot-image.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make-boot-image.sh b/make-boot-image.sh index 25301c2..ccba121 100755 --- a/make-boot-image.sh +++ b/make-boot-image.sh @@ -44,7 +44,7 @@ function mkchroot d=$(echo "$p" | grep -o '.*/') && mkdir -p "$dest/$d" && # Copy file - echo ${PS4}cp --dereference --preserve=mode "$p" "$dest/$p" && + echo + cp --dereference --preserve=mode "$p" "$dest/$p" && cp --dereference --preserve=mode "$p" "$dest/$p" && # Recursively copy shared libraries' shared libraries. mkchroot "$dest" $(ldd "$p" | egrep -o '/.* ') || return $? @@ -229,7 +229,7 @@ fi if [ ! -f "$WORKDIR/initrd/etc/keys.bmap" ] then # When using sudo with password auth, ask and cache pass first $ROOTCMD true - # The following compound command will suck at asking pass + # The following compound command will suck at asking pass $ROOTCMD dumpkeys | $ROOTCMD loadkeys -b > "$WORKDIR/initrd/etc/keys.bmap" fi |