summaryrefslogtreecommitdiffstats
path: root/meta-networking
Commit message (Collapse)AuthorAgeFilesLines
* tcpdump: upgrade 4.99.4 -> 4.99.5Yi Zhao2024-09-013-132/+2
| | | | | | | | ChangeLog: https://git.tcpdump.org/tcpdump/blob/HEAD:/CHANGES Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* snort3: upgrade 3.3.3.0 -> 3.3.4.0Yi Zhao2024-08-291-1/+1
| | | | | | | | | | | | | | | ChangeLog: https://github.com/snort3/snort3/releases/tag/3.3.4.0 * appid: notify binder on service change * appid: replaced hsessions vector of raw pointers into vector of smart pointers * ftp_telnet: refactoring ftp-data * latency, dce, stream_ip: fix max pegs incorrectly declared sum * telnet: avoid flush when cr or lf is between commands Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* unbound: upgrade 1.20.0 -> 1.21.0Wang Mingyu2024-08-281-3/+3
| | | | | | | | Changelog: https://github.com/NLnetLabs/unbound/releases/tag/release-1.21.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* samba: upgrade 4.19.7 -> 4.19.8Wang Mingyu2024-08-281-1/+1
| | | | | | | | Changelog: https://www.samba.org/samba/history/samba-4.19.8.html Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* networkmanager: upgrade 1.48.6 -> 1.48.10Wang Mingyu2024-08-281-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mdns: upgrade 2200.120.24 -> 2200.140.11Wang Mingyu2024-08-281-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtdb: upgrade 1.4.11 -> 1.4.12Wang Mingyu2024-08-281-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bluealsa: Update cython patch to latest upstream patchKhem Raj2024-08-261-5/+5
| | | | | | This patch reflects the latest revision submitted upstream Signed-off-by: Khem Raj <raj.khem@gmail.com>
* frr: Upgrade to 10.1 releaseKhem Raj2024-08-221-2/+2
| | | | | | | | Changes are here [1] [1] https://github.com/FRRouting/frr/commit/14c29f83a0dfbc4023cdfff34ed38cf43dca409c Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nftables: fix pep517-backend warningQuentin Schulz2024-08-211-6/+6
| | | | | | | | | | | | | | | | | | | | | | | nftables has a pyproject.toml file since v1.0.9, c.f. https://git.netfilter.org/nftables/commit/?id=8e603e0f7eec7c0000344a004228a30fbf0ece5c Styhead has started to complain when a recipe inherits setuptools3 and a proper pyproject.toml is provided in sources. This uses python_pep517 functions instead of the setuptools3 ones, inherits the proper class (still using setuptools3 but through pep517 process). Notably, the python PACKAGECONFIG has its build dependency on python3-setuptools-native removed as it's brought in by python_setuptools_build_meta inherit, which is performed whenever the python PACKAGECONFIG is selected. This avoids a "duplicate" but no change in behavior is expected. This was only build tested. Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* blueman: fix installation pathsMartin Jansa2024-08-191-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * pass systemdsystemunitdir and systemduserunitdir to set correct directories instead of using libdir from: meson.build:systemd_base_path = join_paths(libdir, 'systemd') which is wrong e.g. with multilib where libdir might be /usr/lib64 instead of usr/lib used in ${nonarch_base_libdir} which is used by systemd_* variables: export systemd_system_unitdir="/usr/lib/systemd/system" export systemd_user_unitdir="/usr/lib/systemd/user" fixes: ERROR: Didn't find service unit 'blueman-mechanism.service', specified in SYSTEMD_SERVICE:blueman. * inherit python3targetconfig to install into right python site-packages without this it installs into /usr/lib/python3.12/site-packages/ instead of /usr/lib64/python3.12/site-packages set in PYTHON_SITEPACKAGES_DIR variable used in FILES, causing blueman: 295 installed and not shipped files. [installed-vs-shipped] # $PYTHON_SITEPACKAGES_DIR # set oe-core/meta/classes-recipe/python3-dir.bbclass:11 # "${libdir}/${PYTHON_DIR}/site-packages" PYTHON_SITEPACKAGES_DIR="/usr/lib64/python3.12/site-packages" Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* networkmanager: remove modemmanager rdependsAdrian Freihofer2024-08-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit: 5edb8335dc46450fd6bcdbb3fcf55336b32bd422 The Networkmanager package must not depend on ModemManager. Only the Networkmanager-wwan package should depend on the ModemManager package. The mobile-broadband-provider-info is fully optional and it is often not required for embedded devices. Let the user choose if it gets installed or not. Adding it explicitely to IMAGE_INSTALL is simple. Adding an RRECOMMENS would work as well. But adding an RDEPENDS is bad. In general, NetworkManager packaging is intended to provide a set of binary packages suitable for building many different images. NetworkManager is designed to be used for binary packages distributions where it is not possible to rebuild NetworkManager just to install Modemmanager. Also for OE, where a rebuilding is possible, a rebuild is a disadvantage. So please do not destroy this flexibility by adding RDEPENDS, which are firstly wrong and secondly only suitable for your specific needs. Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ot-br-posix: Define config files explicitlyKhem Raj2024-08-191-0/+2
| | | | | | Otherwise it picks up from build area with absolute paths into builddir Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ippool: Fix buildpaths QA errorKhem Raj2024-08-191-6/+1
| | | | | | | | Pass OE's CFLAGS via CC since the Makefile disregards these flags from environment and has it own notion of it. This ensures that flags to rewrite debug flags are passed down correctly to compiler. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fwknop: Specify target locations of gpg and wgetKhem Raj2024-08-191-1/+3
| | | | | | | | This fixes emitting buildpaths into binary and also fixes the issue where these tools wont exist on the paths they were found on build machine Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fwknop: Upgrade to 2.6.11Khem Raj2024-08-183-61/+3
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* snort3: upgrade 3.3.2.0 -> 3.3.3.0Yi Zhao2024-08-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ChangeLog: https://github.com/snort3/snort3/releases/tag/3.3.3.0 * control: code cleanup * control: handle control commands after packet threads are fully initialised * daq: add outstanding packets counter * extractor: add flow hash key * file_api: max depth is set as part of initial config * file: remove unused variable in FileFlows destructor * filters: update dev_notes.txt with details for event_filter * flow: optimize timeout handling for different packet type * http_inspect: add peg counts for gzip, known-not-supported, and unknown * http_inspect: log normalized URI in extra data * ips_options: separate main thread pcre counts from packet threads stats * memory: account memory for profiler only when packet thread is involved * src: resolve various warnings * stream_tcp: make sure ports are correctly swapped when filling a meta-ACK packet Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dnsmasq: set config dhcp6, broken-rtc by FEATURESJörg Sommer2024-08-161-1/+6
| | | | | | | | Some of the PACKAGECONFIG can be derived from the DISTRO_FEATURES and MACHINE_FEATURES. Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dnsmasq: Install conf example from upstream instead of our versionJörg Sommer2024-08-162-300/+1
| | | | | | | | Our version was copied 2011 and is out of date. The changes in the meantime affected only comments. Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* keepalived: Make build reproducibleKhem Raj2024-08-152-0/+34
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ndisc: Remove buildpaths from binariesKhem Raj2024-08-151-0/+4
| | | | | | | | configure emits its arguments into binaries via PACKAGE_CONFIGURE_INVOCATION therefore edit the paths from this in generated config.h before it gets into binaries. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* proftpd: Upgrade to 1.3.8bKhem Raj2024-08-151-4/+10
| | | | | | Fix buildpaths QA Errors while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* blueman: Fix buildpathe issue with cython generated codeKhem Raj2024-08-152-1/+40
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Markus Volk <f_l_k@t-online.de>
* freediameter: Fix buildpaths QA errorKhem Raj2024-08-152-4/+44
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wolfssl: Add packageconfig for reproducible buildKhem Raj2024-08-141-0/+3
| | | | | | | | | Make this option turned on by default Fixes WARNING: wolfssl-5.7.2-r0 do_package_qa: QA Issue: File /usr/lib/libwolfssl.so.42.2.0 in package wolfssl contains reference to TMPDIR [buildpaths] Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vsomeip: Fix build with GCC-14Khem Raj2024-08-103-0/+1295
| | | | | | New libstdc++ headers do not include iomanip via other headers anymore Signed-off-by: Khem Raj <raj.khem@gmail.com>
* blueman: Fix do_package QA issuealperak2024-08-091-0/+1
| | | | | | | | | | | | ERROR: blueman-2.4.3-r0 do_package: QA Issue: blueman: Files/directories were installed but not shipped in any package: /usr/lib/systemd/system /usr/lib/systemd/system/blueman-mechanism.service Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. blueman: 2 installed and not shipped files. [installed-vs-shipped] ERROR: blueman-2.4.3-r0 do_package: Fatal QA errors were found, failing task. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* blueman: update 2.3.5 -> 2.4.3Markus Volk2024-08-094-171/+3
| | | | | | | | | | | | | | | | Remove 0001-meson-add-pythoninstalldir-option.patch. It was fixed by: [https://github.com/blueman-project/blueman/pull/1700] Remove 0001-Search-for-cython3.patch. It was fixed by: [https://github.com/blueman-project/blueman/blob/2682501e313831ed20ea3a809036e84bdb449fc7/module/meson.build#L1] Remove 0001-meson-add-pythoninstalldir-option.patch. Not quite sure about this one, but even without this patch there are no issues to enable bluetooth on my side Dont add polkit rule. It is now added by default. Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wavemon: upgrade 0.9.5 -> 0.9.6Wang Mingyu2024-08-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openvpn: upgrade 2.6.11 -> 2.6.12Wang Mingyu2024-08-092-4/+4
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openipmi: upgrade 2.0.35 -> 2.0.36Wang Mingyu2024-08-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* networkmanager: upgrade 1.48.4 -> 1.48.6Wang Mingyu2024-08-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtdb: upgrade 1.4.10 -> 1.4.11Wang Mingyu2024-08-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* squid: Upgrade to 6.10Peter Marko2024-08-042-2/+2
| | | | | | | Solves CVE-2024-37894 Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdaq: upgrade 3.0.15 -> 3.0.16Yi Zhao2024-08-011-1/+2
| | | | | | | | ChangeLog: https://github.com/snort3/libdaq/releases/tag/v3.0.16 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tcpreplay: upgrade 4.4.4 -> 4.5.1Yi Zhao2024-08-014-164/+1
| | | | | | | | | | ChangeLog: https://github.com/appneta/tcpreplay/releases/tag/v4.5.1 Drop patches that have been merged upstream. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* snort3: upgrade 3.3.1.0 -> 3.3.2.0Yi Zhao2024-08-011-1/+1
| | | | | | | | ChangeLog: https://github.com/snort3/snort3/releases/tag/3.3.2.0 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tayga: Fix contains reference to TMPDIR [buildpaths] warningalperak2024-07-311-0/+3
| | | | | | | | | WARNING: tayga-0.9.2-r0 do_package_qa: QA Issue: File /usr/sbin/.debug/tayga in package tayga-dbg contains reference to TMPDIR [buildpaths] Make sure that the OE provided CFLAGS are passed to the compiler. Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* snort3: upgrade 3.1.84.0 -> 3.3.1.0Yi Zhao2024-07-282-1/+3
| | | | | | | | | | | ChangeLog: https://github.com/snort3/snort3/releases/tag/3.2.1.0 https://github.com/snort3/snort3/releases/tag/3.2.2.0 https://github.com/snort3/snort3/releases/tag/3.3.0.0 https://github.com/snort3/snort3/releases/tag/3.3.1.0 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* znc: Fix buildpaths QA errorsJ. S.2024-07-271-0/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tcpreplay: Fix CVE-2023-4256Poonam Jadhav2024-07-252-0/+28
| | | | | | | | | | | Add patch to fix tcpreplay CVE-2023-4256 dlt_jnpr_ether_cleanup: check config before cleanup Links: https://github.com/appneta/tcpreplay/pull/851 https://github.com/appneta/tcpreplay/issues/813#issuecomment-2245557093 Signed-off-by: Poonam Jadhav <poonam.jadhav@kpit.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nftables: change ptest output formatJiaying Song2024-07-191-2/+6
| | | | | | | | | This change adds a simple format for the skip results. The format selected is the automake "simple test" format: "result: testname" Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nftables: upgrade 1.0.9 -> 1.1.0Yi Zhao2024-07-173-102/+1
| | | | | | | | | | ChangeLog: https://www.netfilter.org/projects/nftables/files/changes-nftables-1.1.0.txt * Drop backport patches. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libnftnl: upgrade 1.2.6 -> 1.2.7Yi Zhao2024-07-171-1/+1
| | | | | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wolfssl: upgrade 5.7.0 -> 5.7.2Wang Mingyu2024-07-151-1/+1
| | | | | | | | Changelog: https://github.com/wolfSSL/wolfssl/releases/tag/v5.7.2-stable Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* wireshark: upgrade 4.2.5 -> 4.2.6Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | | | | | | | Bugfixes: =========== * RADIUS dissector's dictionary loading broken in many ways. * 3.4 -> 3.6.5 ASCII display is broken on CentOS 7. * Funnel/Lua: Closing child window disconnects buttons of parent. * Lua detection fails with Alpine Linux: missing: LUA_LIBRARIES. * vnd.3gpp.5gnas payloads of type SMS not decoded inside HTTP2 5GC. * TCP Stream Graphs green sliding window line not displayed correctly. * Wireshark window doesn't fully fit on screen on small resolutions and can't be resized properly on Russian language. * Wireshark started from command line doesn't set gui.fileopen_remembered_dir correctly on Windows. * Wireshark expects wrong length for DHCP Relay Agent Information Source Port Suboption. * SIP P-Access-Network-Info header not correctly decoded. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sngrep: upgrade 1.8.1 -> 1.8.2Wang Mingyu2024-07-151-1/+1
| | | | | | | | Changelog: capture: fix possible buffer overflow while processing RTP payload Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* networkmanager: upgrade 1.48.2 -> 1.48.4Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | Changelog: ========== * Support matching a OVS system interface by MAC address. * When looking up the system hostname from the reverse DNS lookup of addresses configured on interfaces, NetworkManager now takes into account the content of /etc/hosts. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ipset: upgrade 7.21 -> 7.22Wang Mingyu2024-07-151-1/+1
| | | | | | | | | | | | Changelog: ========== - ipset: fix json output format for IPSET_OPT_IP - tests: add namespace test and take into account delayed set removal at module remove - Update autoconfig tools to build cleanly on Debian bookworm Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fetchmail: disable rpath to fix buildpaths warning.Wang Mingyu2024-07-101-4/+1
| | | | | | | | | | There was an error with the last modification to the buildpaths warning, which could cause segment error. fix the following warning about buildpath: WARNING: fetchmail-6.4.38-r0 do_package_qa: QA Issue: File /usr/bin/fetchmail in package fetchmail contains reference to TMPDIR [buildpaths] Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>