diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-01-02 12:25:21 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-03 08:58:26 +0000 |
commit | edc9198e167b3fdad8f927101e5cc81b5b720821 (patch) | |
tree | c2f533b1cc2839b9a96551c3faaaa0b7c98b3a8c /meta/recipes-core/dropbear | |
parent | 270d61ccb3c7003a46ca301e354613325e966f8a (diff) | |
download | poky-edc9198e167b3fdad8f927101e5cc81b5b720821.tar.gz |
dropbear: Disable lastlog and wtmp on musl
Not provided by musl library
(From OE-Core rev: 97dc1a2844d1f954fc0c86fe406ffbacc88a2133)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/dropbear')
-rw-r--r-- | meta/recipes-core/dropbear/dropbear.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-core/dropbear/dropbear.inc b/meta/recipes-core/dropbear/dropbear.inc index 080ee26b2e..a30f98faa4 100644 --- a/meta/recipes-core/dropbear/dropbear.inc +++ b/meta/recipes-core/dropbear/dropbear.inc | |||
@@ -58,6 +58,9 @@ EXTRA_OECONF += "\ | |||
58 | # This is causing [textrel] QA warning | 58 | # This is causing [textrel] QA warning |
59 | EXTRA_OECONF += "--disable-harden" | 59 | EXTRA_OECONF += "--disable-harden" |
60 | 60 | ||
61 | # musl does not implement wtmp/logwtmp APIs | ||
62 | EXTRA_OECONF_append_libc-musl = " --disable-wtmp --disable-lastlog" | ||
63 | |||
61 | do_install() { | 64 | do_install() { |
62 | install -d ${D}${sysconfdir} \ | 65 | install -d ${D}${sysconfdir} \ |
63 | ${D}${sysconfdir}/init.d \ | 66 | ${D}${sysconfdir}/init.d \ |