blob: 022c51c0516a86cc9f7f247efd7c77617c64b1d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
#/bin/sh
set -eu
usage() {
echo usage: ./update.sh DIRECTORY 1>&2
exit 1
}
[[ $# -eq 1 ]] || usage
[[ -n "${1}" ]] || usage
DIR=$1
WORK_PATH=$PWD
OPENSSLLIB_PATH=$DIR/CryptoPkg/Library/OpensslLib
OPENSSL_PATH=$OPENSSLLIB_PATH/openssl
cd $OPENSSLLIB_PATH
perl -I. -Iopenssl/ process_files.pl
cd $DIR
git add -A CryptoPkg
git add CryptoPkg/Library/OpensslLib/openssl/include/openssl/opensslconf.h
git add CryptoPkg/Library/OpensslLib/openssl/configdata.pm
git add CryptoPkg/Library/OpensslLib/openssl/Makefile
git commit -m "Update openssl configs"
cd $WORK_PATH
cp $OPENSSLLIB_PATH/buildinf.h buildinf.h
cp $OPENSSL_PATH/e_os.h e_os.h
mkdir -p crypto
C_FILES="
LPdir_nyi.c
cpt_err.c
cryptlib.c
cversion.c
ebcdic.c
ex_data.c
init.c
mem.c
mem_clr.c
mem_dbg.c
mem_sec.c
o_dir.c
o_fips.c
o_fopen.c
o_init.c
o_str.c
o_time.c
threads_none.c
threads_pthread.c
threads_win.c uid.c
"
for file in $C_FILES
do
cp $OPENSSL_PATH/crypto/$file crypto
done
SUBDIRS="
include/internal/
aes
asn1
async/arch
async
bio
bn
buffer
cmac
comp
conf
dh
dso
err
evp
fips
hmac
kdf
lhash
md5
modes
objects
ocsp
pem
pkcs12
pkcs7
rand
rc4
rsa
sha
stack
txt_db
x509
x509v3
"
for dir in $SUBDIRS
do
mkdir -p crypto/$dir
cp $OPENSSL_PATH/crypto/$dir/*.[ch] crypto/$dir
done
# Remove unused files
rm -f crypto/aes/aes_x86core.c
rm -f crypto/x509v3/tabtest.c
rm -f crypto/x509v3/v3conf.c
rm -f crypto/x509v3/v3prin.c
find . -name "*.[ch]" -exec chmod -x {} \;
git add -A .
git commit -m "Update OpenSSL"
git config --local --add am.keepcr true
git am \
0001-OpenSSL-bio-b_print-disable-SSE.patch \
0002-OpenSSL-Pk7-smime-add-an-error-message.patch
|