Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
From: Sławomir Błaszczyk <bslawomir330@gmail.com>
Date: Tue, 07 Apr 2026 13:54:00 +0200
Subject: [PATCH] tools: update frr-reload.py path to /usr/libexec/frr/

Upstream-Status: Submitted [https://github.com/openembedded/meta-openembedded/pull/1044]
Copy link
Copy Markdown
Contributor

@anujm1 anujm1 Apr 14, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Submitted is for patches submitted upstream. This is a valid issue and the status should be Pending. At the very least, it should be reported upstream. This would also need your Signed-off-by.

---
tools/frr-reload | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/frr-reload b/tools/frr-reload
index 75b31d0622..eb784da3d6 100755
--- a/tools/frr-reload
+++ b/tools/frr-reload
@@ -1,7 +1,7 @@
#!/bin/sh

-if test -e /usr/lib/frr/frr-reload.py; then
- exec /usr/lib/frr/frr-reload.py --reload /etc/frr/frr.conf
+if test -e /usr/libexec/frr/frr-reload.py; then
+ exec /usr/frrexec/frr-reload.py --reload /etc/frr/frr.conf
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It doesn't look like this has been tested.

fi
>&2 echo "Please install frr-pythontools package. Required for reload"
exit 1
--
2.41.0
1 change: 1 addition & 0 deletions meta-networking/recipes-protocols/frr/frr_9.1.3.bb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ LIC_FILES_CHKSUM = "file://doc/licenses/GPL-2.0;md5=b234ee4d69f5fce4486a80fdaf4a
SRC_URI = "git://github.com/FRRouting/frr.git;protocol=https;branch=stable/9.1 \
file://frr.pam \
file://0001-zebra-Mimic-GNU-basename-API-for-non-glibc-library-e.patch \
file://0002-tools-update-frr-reload.py-path-to-usr-libexec-frr.patch \
file://CVE-2024-55553.patch \
file://CVE-2025-61099-61100-61101-61102-61103-61104-61105-61106-61107_1.patch \
file://CVE-2025-61099-61100-61101-61102-61103-61104-61105-61106-61107_2.patch \
Expand Down