diff options
| author | Christos Gavros <gavrosc@yahoo.com> | 2025-02-14 00:33:33 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-02-13 20:54:52 -0800 |
| commit | bb138b9f6b0ae7a77b5be468356a9ed0d7787c88 (patch) | |
| tree | 7dfcd377142ec9b3600cc5ce5188b3f48ca2468d | |
| parent | 91a0e892290e0cff803714d9f7445f3b89641c8e (diff) | |
| download | meta-openembedded-bb138b9f6b0ae7a77b5be468356a9ed0d7787c88.tar.gz | |
corosync: reproducibility issue
Corosync is not reproducible due to change of value
in NETSNMP_SYS_CONTACT which is set in net-snmp:
NETSNMP_SYS_CONTACT = "$ME@$LOC"
$ME = whoami
$LOC assigned domain name from /etc/resolv.conf
Use build in'--with-sys-contact' to overwrite it
https://autobuilder.yoctoproject.org/valkyrie/#/builders/87/builds/30/steps/28/logs/stdio
CC: Yoann Congal <yoann.congal@smile.fr>
CC: Randy MacLeod <randy.macleod@windriver.com>
Signed-off-by: Christos Gavros <gavrosc@yahoo.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb index d4945e482d..0840e4955b 100644 --- a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb +++ b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb | |||
| @@ -55,6 +55,8 @@ PACKAGECONFIG[perl] = "--enable-embedded-perl --with-perl-modules=yes, --disable | |||
| 55 | PACKAGECONFIG[smux] = "" | 55 | PACKAGECONFIG[smux] = "" |
| 56 | PACKAGECONFIG[systemd] = "--with-systemd, --without-systemd" | 56 | PACKAGECONFIG[systemd] = "--with-systemd, --without-systemd" |
| 57 | 57 | ||
| 58 | SYSCONTACT_DISTRO ?= "no-contact-set@example.com" | ||
| 59 | |||
| 58 | EXTRA_OECONF = " \ | 60 | EXTRA_OECONF = " \ |
| 59 | --enable-shared \ | 61 | --enable-shared \ |
| 60 | --disable-manuals \ | 62 | --disable-manuals \ |
| @@ -63,6 +65,7 @@ EXTRA_OECONF = " \ | |||
| 63 | --with-persistent-directory=${localstatedir}/lib/net-snmp \ | 65 | --with-persistent-directory=${localstatedir}/lib/net-snmp \ |
| 64 | --with-endianness=${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', 'little', 'big', d)} \ | 66 | --with-endianness=${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', 'little', 'big', d)} \ |
| 65 | --with-mib-modules='${MIB_MODULES}' \ | 67 | --with-mib-modules='${MIB_MODULES}' \ |
| 68 | --with-sys-contact='${SYSCONTACT_DISTRO}' \ | ||
| 66 | " | 69 | " |
| 67 | 70 | ||
| 68 | MIB_MODULES = "" | 71 | MIB_MODULES = "" |
