Commit a6a2962d authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

gnupg: add option for AES cipher



Similar to our RSA option. Enabling this adds ~17K to the gpg binary (ARMv7):

ls -lah output/target/usr/bin/gpg{.orig,}
-rwxr-xr-x 1 peko peko 532K Jul  2 17:29 output/target/usr/bin/gpg
-rwxr-xr-x 1 peko peko 515K Jul  2 17:29 output/target/usr/bin/gpg.orig

Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 7f1def69
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -16,6 +16,11 @@ config BR2_PACKAGE_GNUPG

if BR2_PACKAGE_GNUPG

config BR2_PACKAGE_GNUPG_AES
	bool "AES support"
	help
	  Support for the AES cipher

config BR2_PACKAGE_GNUPG_RSA
	bool "RSA support"
	help
+6 −0
Original line number Diff line number Diff line
@@ -31,6 +31,12 @@ else
GNUPG_CONF_OPTS += --without-readline
endif

ifeq ($(BR2_PACKAGE_GNUPG_AES),y)
GNUPG_CONF_OPTS += --enable-aes
else
GNUPG_CONF_OPTS += --disable-aes
endif

ifeq ($(BR2_PACKAGE_GNUPG_RSA),y)
GNUPG_CONF_OPTS += --enable-rsa
else