From 03dccb4133d609bf67920cc3c22ad24d94f48b0a Mon Sep 17 00:00:00 2001 From: Erik Garrison Date: Thu, 12 Feb 2009 13:55:51 -0500 Subject: [PATCH] whitespace in OFW updater script While producing http://wiki.laptop.org/go/User:Erik_Garrison/Image_Digestor I discovered that the OFW updater script produced by the xodist tools had trailing whitespace after the lines. I rectified this by applying the attached patch to the line in question. After application I verified that the output of the bios-crypto 'hashfs' C script is byte-for-byte identical when run over the same input (in this case the os767.img). Signed-off-by: Andres Salomon --- mkjffs2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkjffs2.sh b/mkjffs2.sh index c635665..c1ced52 100755 --- a/mkjffs2.sh +++ b/mkjffs2.sh @@ -65,7 +65,7 @@ do_sha256() f=$1 eblocks=$((`stat --printf "%s\n" $f` / (128*1024))) for b in $(seq 0 $(($eblocks - 1))); do - sha=$(dd status=noxfer bs=128KiB skip=$b count=1 if=$f 2>/dev/null | sha256sum | cut -d- -f1) + sha=$(dd status=noxfer bs=128KiB skip=$b count=1 if=$f 2>/dev/null | sha256sum | cut -d\ -f1) echo "eblock: `printf '%x' $b` sha256 $sha" >> ${IMG_NAME} done } -- 2.39.2