diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2016-10-02 13:13:32 +0200 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2016-10-02 13:13:32 +0200 |
commit | 47ed8eb365a5aa12592e0626da33d36b35638963 (patch) | |
tree | 87245118d39191a94d3baf7ed324ee6d66656b8e | |
parent | 38f5f6389a0d7c17c0f11cc7927625012ae90888 (diff) | |
download | eficast-47ed8eb365a5aa12592e0626da33d36b35638963.tar.gz eficast-47ed8eb365a5aa12592e0626da33d36b35638963.tar.bz2 eficast-47ed8eb365a5aa12592e0626da33d36b35638963.zip |
make-boot-image.sh : Minor cosmetics
-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 |