summaryrefslogtreecommitdiffstats
path: root/meta-networking
diff options
context:
space:
mode:
authorChristos Gavros <gavrosc@yahoo.com>2025-10-15 09:38:56 +1300
committerAnuj Mittal <anuj.mittal@intel.com>2025-10-30 14:43:33 +0800
commit68f8ea24d0faff3366a05e3be0b37890c9096551 (patch)
tree30ce4cac44bc3b0ee112f5231579581116cc9118 /meta-networking
parentb03f8e79afade5830baefb7a009c70959bf5c798 (diff)
downloadmeta-openembedded-68f8ea24d0faff3366a05e3be0b37890c9096551.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> (cherry picked from commit bb138b9f6b0ae7a77b5be468356a9ed0d7787c88) Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'meta-networking')
-rw-r--r--meta-networking/recipes-protocols/net-snmp/net-snmp_5.9.4.bb3
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 395b02df00..f9572a1869 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
@@ -53,6 +53,8 @@ PACKAGECONFIG[perl] = "--enable-embedded-perl --with-perl-modules=yes, --disable
53PACKAGECONFIG[smux] = "" 53PACKAGECONFIG[smux] = ""
54PACKAGECONFIG[systemd] = "--with-systemd, --without-systemd" 54PACKAGECONFIG[systemd] = "--with-systemd, --without-systemd"
55 55
56SYSCONTACT_DISTRO ?= "no-contact-set@example.com"
57
56EXTRA_OECONF = " \ 58EXTRA_OECONF = " \
57 --enable-shared \ 59 --enable-shared \
58 --disable-manuals \ 60 --disable-manuals \
@@ -61,6 +63,7 @@ EXTRA_OECONF = " \
61 --with-persistent-directory=${localstatedir}/lib/net-snmp \ 63 --with-persistent-directory=${localstatedir}/lib/net-snmp \
62 --with-endianness=${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', 'little', 'big', d)} \ 64 --with-endianness=${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', 'little', 'big', d)} \
63 --with-mib-modules='${MIB_MODULES}' \ 65 --with-mib-modules='${MIB_MODULES}' \
66 --with-sys-contact='${SYSCONTACT_DISTRO}' \
64" 67"
65 68
66MIB_MODULES = "" 69MIB_MODULES = ""