pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/u-boot Improve POSIX shell portability



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6bf2a9c59a9c
branches:  trunk
changeset: 327062:6bf2a9c59a9c
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Wed Dec 19 12:03:01 2018 +0000

description:
Improve POSIX shell portability

diffstat:

 sysutils/u-boot/distinfo                                |   3 ++-
 sysutils/u-boot/patches/patch-tools_imx__cntr__image.sh |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (33 lines):

diff -r d899dd434e6a -r 6bf2a9c59a9c sysutils/u-boot/distinfo
--- a/sysutils/u-boot/distinfo  Wed Dec 19 06:55:42 2018 +0000
+++ b/sysutils/u-boot/distinfo  Wed Dec 19 12:03:01 2018 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.17 2018/12/14 00:52:26 jmcneill Exp $
+$NetBSD: distinfo,v 1.18 2018/12/19 12:03:01 ryoon Exp $
 
 SHA1 (u-boot-2018.11.tar.bz2) = e58e86c633ad3e2613196e0c0b0a7760ae5966d6
 RMD160 (u-boot-2018.11.tar.bz2) = f63c67750951d0e2883935a5d4cc3252f51a5453
@@ -12,3 +12,4 @@
 SHA1 (patch-include_configs_tegra-common-post.h) = dfc081d2a3f7cd32e340b03f6c77c629bffd29b4
 SHA1 (patch-include_configs_tegra-common.h) = 4cda8f9df2c7fc2b9cd9d4139ec679a42648e4f8
 SHA1 (patch-lib_bch.c) = b1f1c7418f1004c151b9e5e06ab7047a1736ae47
+SHA1 (patch-tools_imx__cntr__image.sh) = 715647e3b77b505513ae79b4fe673f4f7f9bf042
diff -r d899dd434e6a -r 6bf2a9c59a9c sysutils/u-boot/patches/patch-tools_imx__cntr__image.sh
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/u-boot/patches/patch-tools_imx__cntr__image.sh   Wed Dec 19 12:03:01 2018 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-tools_imx__cntr__image.sh,v 1.1 2018/12/19 12:03:01 ryoon Exp $
+
+* POSIX shell portablity fix
+
+--- tools/imx_cntr_image.sh.orig       2018-11-14 16:10:06.000000000 +0000
++++ tools/imx_cntr_image.sh
+@@ -10,7 +10,7 @@ file=$1
+ blobs=`awk '/^APPEND/ {print $2} /^IMAGE/ || /^DATA/ {print $3}' $file`
+ for f in $blobs; do
+       tmp=$srctree/$f
+-      if [ $f == "u-boot-dtb.bin" ]; then
++      if [ $f = "u-boot-dtb.bin" ]; then
+               continue
+       fi
+ 



Home | Main Index | Thread Index | Old Index