summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/nss/nss/signlibs.sh
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2014-09-04 13:42:08 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-11-06 16:45:21 +0000
commit8569e10e59a539d0ac8d4f3db2cc81aa0681a7c8 (patch)
tree54bdca1a1eefd5d95667a80ca3d614b5afa69a0a /meta/recipes-support/nss/nss/signlibs.sh
parentc1809c4b899994cf97686cc27345a2d7b262c547 (diff)
downloadpoky-8569e10e59a539d0ac8d4f3db2cc81aa0681a7c8.tar.gz
nss: Upgrade to 3.17
CVE patches removed since they have been implemented upstream Rename patch dir (files) to generic PN name (From OE-Core rev: ff3ca87477f2caf9e2228ed100f243f5ea831577) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/nss/nss/signlibs.sh')
-rw-r--r--meta/recipes-support/nss/nss/signlibs.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-support/nss/nss/signlibs.sh b/meta/recipes-support/nss/nss/signlibs.sh
new file mode 100644
index 0000000000..1ec79f4576
--- /dev/null
+++ b/meta/recipes-support/nss/nss/signlibs.sh
@@ -0,0 +1,20 @@
1#!/bin/sh
2
3# signlibs.sh
4#
5# (c)2010 Wind River Systems, Inc.
6#
7# regenerates the .chk files for the NSS libraries that require it
8# since the ones that are built have incorrect checksums that were
9# calculated on the host where they really need to be done on the
10# target
11
12CHK_FILES=`find /lib* /usr/lib* -name "*.chk"`
13SIGN_BINARY=`which shlibsign`
14for I in $CHK_FILES
15do
16 DN=`dirname $I`
17 BN=`basename $I .chk`
18 FN=$DN/$BN.so
19 $SIGN_BINARY -i $FN
20done