791c5db743
The check-package script when ran gives warnings on ordering issues on all of these Config files. This patch cleans up all warnings related to the ordering in the Config files for packages starting with the letter g in the package directory. The appropriate ordering is: type, default, depends on, select, help See http://nightly.buildroot.org/#_config_files for more information. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_GNUPG
|
|
bool "gnupg"
|
|
depends on !BR2_PACKAGE_GNUPG2
|
|
select BR2_PACKAGE_ZLIB
|
|
select BR2_PACKAGE_NCURSES
|
|
help
|
|
GnuPG is the GNU project's complete and free implementation
|
|
of the OpenPGP standard as defined by RFC4880. GnuPG allows
|
|
to encrypt and sign your data and communication, features a
|
|
versatile key management system as well as access modules
|
|
for all kinds of public key directories. GnuPG, also known
|
|
as GPG, is a command line tool with features for easy
|
|
integration with other applications.
|
|
|
|
http://gnupg.org/
|
|
|
|
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
|
|
Support for RSA public key algorithm
|
|
|
|
config BR2_PACKAGE_GNUPG_GPGV
|
|
bool "gpgv"
|
|
help
|
|
gpgv is an OpenPGP signature verification tool.
|
|
|
|
This program is actually a stripped-down version of gpg
|
|
which is only able to check signatures. It is somewhat
|
|
smaller than the fully-blown gpg and uses a different (and
|
|
simpler) way to check that the public keys used to make the
|
|
signature are valid. There are no configuration files and
|
|
only a few options are implemented.
|
|
|
|
config BR2_PACKAGE_GNUPG_GPGSPLIT
|
|
bool "gpgsplit"
|
|
help
|
|
gpgsplit splits an OpenPGP message into packets.
|
|
|
|
endif
|