diff options
author | Hans de Goede <hdegoede@redhat.com> | 2019-08-17 16:24:33 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2019-08-22 14:57:35 +1000 |
commit | 01d3aee86625bd798a5e69afb92517d5530c7ed1 (patch) | |
tree | af7a77af65f727f130f7dc8bf40649cf1701f666 /lib/crypto/Makefile | |
parent | 906a4bb97f5d0389cae9cc3634e8059fed5334b5 (diff) | |
download | linux-01d3aee86625bd798a5e69afb92517d5530c7ed1.tar.gz linux-01d3aee86625bd798a5e69afb92517d5530c7ed1.tar.bz2 linux-01d3aee86625bd798a5e69afb92517d5530c7ed1.zip |
crypto: sha256 - Make lib/crypto/sha256.c suitable for generic use
Before this commit lib/crypto/sha256.c has only been used in the s390 and
x86 purgatory code, make it suitable for generic use:
* Export interesting symbols
* Add -D__DISABLE_EXPORTS to CFLAGS_sha256.o for purgatory builds to
avoid the exports for the purgatory builds
* Add to lib/crypto/Makefile and crypto/Kconfig
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib/crypto/Makefile')
-rw-r--r-- | lib/crypto/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/crypto/Makefile b/lib/crypto/Makefile index 101a321b8a99..cbe0b6a6450d 100644 --- a/lib/crypto/Makefile +++ b/lib/crypto/Makefile @@ -8,3 +8,6 @@ libarc4-y := arc4.o obj-$(CONFIG_CRYPTO_LIB_DES) += libdes.o libdes-y := des.o + +obj-$(CONFIG_CRYPTO_LIB_SHA256) += libsha256.o +libsha256-y := sha256.o |