Merge pull request #505 from itay-grudev/gpg2-fix

GPG2 Fixes
This commit is contained in:
tlaurion 2019-01-26 11:43:08 -05:00 committed by GitHub
commit 1699771fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,7 @@ CONFIG_CRYPTSETUP=y
CONFIG_FLASHROM=y
CONFIG_FLASHTOOLS=y
CONFIG_GPG=y
CONFIG_GPG2=y
CONFIG_KEXEC=y
CONFIG_UTIL_LINUX=y
CONFIG_LVM2=y

View File

@ -9,6 +9,7 @@ CONFIG_CRYPTSETUP=y
CONFIG_FLASHROM=y
CONFIG_FLASHTOOLS=y
CONFIG_GPG=y
CONFIG_GPG2=y
CONFIG_KEXEC=y
CONFIG_UTIL_LINUX=y
CONFIG_LVM2=y

View File

@ -49,7 +49,7 @@ if [ -z "$param_files" ]; then
fi
for tries in 1 2 3; do
if sha256sum $param_files | gpg --no-tty\
if sha256sum $param_files | gpg \
--digest-algo SHA256 \
--detach-sign \
-a \

View File

@ -18,6 +18,7 @@ pinentry_configure := ./configure \
--host x86_64-linux-musl \
--prefix "/" \
--enable-pinentry-tty \
--disable-libsecret \
--disable-fallback-curses \
--disable-pinentry-curses \
--disable-pinentry-qt5 \