diff options
author | Adrian Bunk <bunk@stusta.de> | 2019-03-06 09:43:44 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-03-06 16:26:47 +0000 |
commit | ca3a3be312a76426d4bcde8066f6ffcd50a6777e (patch) | |
tree | c909d45ad29dfaefce8eb93edcd5da65d262fee0 | |
parent | a9d7fb54494c536568caec1e3aef5169ca6ccf36 (diff) | |
download | poky-ca3a3be312a76426d4bcde8066f6ffcd50a6777e.tar.gz |
rng-tools: Make nistbeacon support optional
Downloading your randomness directly from the US government
is a rare usecase but adds heavy dependencies.
Make it optional and non-default.
(From OE-Core rev: aecf7673095b2338ae4617900e8300b9601ca483)
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/rng-tools/rng-tools_6.6.bb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/recipes-support/rng-tools/rng-tools_6.6.bb b/meta/recipes-support/rng-tools/rng-tools_6.6.bb index d3361ae4e1..6796c9be9e 100644 --- a/meta/recipes-support/rng-tools/rng-tools_6.6.bb +++ b/meta/recipes-support/rng-tools/rng-tools_6.6.bb | |||
@@ -17,9 +17,7 @@ S = "${WORKDIR}/git" | |||
17 | 17 | ||
18 | inherit autotools update-rc.d systemd pkgconfig | 18 | inherit autotools update-rc.d systemd pkgconfig |
19 | 19 | ||
20 | DEPENDS = "curl \ | 20 | DEPENDS = " \ |
21 | libxml2 \ | ||
22 | openssl \ | ||
23 | sysfsutils \ | 21 | sysfsutils \ |
24 | " | 22 | " |
25 | 23 | ||
@@ -28,6 +26,7 @@ PACKAGECONFIG_libc-musl = "libargp libjitterentropy" | |||
28 | PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone," | 26 | PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone," |
29 | PACKAGECONFIG[libgcrypt] = "--with-libgcrypt,--without-libgcrypt,libgcrypt," | 27 | PACKAGECONFIG[libgcrypt] = "--with-libgcrypt,--without-libgcrypt,libgcrypt," |
30 | PACKAGECONFIG[libjitterentropy] = "--enable-jitterentropy,--disable-jitterentropy,libjitterentropy" | 28 | PACKAGECONFIG[libjitterentropy] = "--enable-jitterentropy,--disable-jitterentropy,libjitterentropy" |
29 | PACKAGECONFIG[nistbeacon] = "--with-nistbeacon,--without-nistbeacon,curl libxml2 openssl" | ||
31 | 30 | ||
32 | # Refer autogen.sh in rng-tools | 31 | # Refer autogen.sh in rng-tools |
33 | do_configure_prepend() { | 32 | do_configure_prepend() { |