diff options
author | Jay Freeman <saurik@saurik.com> | 2018-02-27 11:49:38 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2018-02-27 11:49:38 +0000 |
commit | 8315a8898c2b768534c3a3ec02e8eb5c59fc3e7b (patch) | |
tree | 786a36d348d2541081fd8ce651bb5bb9dd25d204 /data | |
parent | f48670ad413a129d2980bac67ac02a5f6099ae77 (diff) |
Support TLS v1.2 in apt http method (thekirbylover).
git-svn-id: http://svn.telesphoreo.org/trunk@821 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data')
-rw-r--r-- | data/apt7-lib/make.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/data/apt7-lib/make.sh b/data/apt7-lib/make.sh index ca48d2df0..373980ce9 100644 --- a/data/apt7-lib/make.sh +++ b/data/apt7-lib/make.sh @@ -5,3 +5,8 @@ pkg: mkdir -p /usr cp -a "$(PKG_DEST_ _apt7)"/usr/lib "${PKG_DEST}"/usr pkg: rm -f /usr/lib/apt/methods/https pkg: ln -s http /usr/lib/apt/methods/https + +pkg: hexdump -ve '1/1 "%.2X"' /usr/lib/apt/methods/http | sed -e 's/\(0C0000005C0000001800000002000000\)00......\(000096002F53797374656D2F4C6962726172792F4672616D65776F726B732F436F7265466F756E646174696F6E2E6672616D65776F726B2F436F7265466F756E646174696F6E0000\)/\1000EAA05\2/' | xxd -r -p >"${PKG_DEST}"/usr/lib/apt/methods/http_ +pkg: mv -f /usr/lib/apt/methods/http_ /usr/lib/apt/methods/http +pkg: chmod 755 /usr/lib/apt/methods/http +pkg: ldid -S /usr/lib/apt/methods/http |