Initial commit
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
From 92747aab189aa3cee954ab31ee019205f8984155 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sat, 27 May 2023 17:22:10 -0700
|
||||
Subject: [PATCH] cmake: Allow SYSTEMCTL_BIN to be overridden from environment
|
||||
|
||||
This allows to encode correct paths which are inside the target rootfs
|
||||
for systemctl
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
CMakeLists.txt | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 9b7462861..c4d82fb49 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -226,7 +226,10 @@ else()
|
||||
set(CYTHON_EXECUTABLE "")
|
||||
endif()
|
||||
|
||||
-find_program(SYSTEMCTL_BIN systemctl HINTS "/usr/bin" "/bin")
|
||||
+if (NOT SYSTEMCTL_BIN)
|
||||
+ find_program(SYSTEMCTL_BIN systemctl HINTS "/usr/bin" "/bin")
|
||||
+endif()
|
||||
+
|
||||
if (NOT SYSTEMCTL_BIN)
|
||||
set (SYSTEMCTL_BIN "/bin/systemctl")
|
||||
endif()
|
||||
--
|
||||
2.40.1
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
SUMMARY = "Userspace support for InfiniBand/RDMA verbs"
|
||||
DESCRIPTION = "This is the userspace components for the Linux Kernel's drivers Infiniband/RDMA subsystem."
|
||||
SECTION = "libs"
|
||||
|
||||
DEPENDS = "libnl"
|
||||
RDEPENDS:${PN} = "bash perl"
|
||||
|
||||
SRC_URI = "git://github.com/linux-rdma/rdma-core.git;branch=master;protocol=https \
|
||||
file://0001-cmake-Allow-SYSTEMCTL_BIN-to-be-overridden-from-envi.patch"
|
||||
SRCREV = "f2789cbd394c5839e8942d585a494ab72fd97e39"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
#Default Dual License https://github.com/linux-rdma/rdma-core/blob/master/COPYING.md
|
||||
LICENSE = "BSD-2-Clause | GPL-2.0-only"
|
||||
LIC_FILES_CHKSUM = "file://COPYING.BSD_FB;md5=0ec18bae1a9df92c8d6ae01f94a289ae \
|
||||
file://COPYING.GPL2;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
||||
|
||||
EXTRA_OECMAKE = " \
|
||||
-DCMAKE_INSTALL_SYSTEMD_SERVICEDIR=${systemd_system_unitdir} \
|
||||
-DSYSTEMCTL_BIN=${base_bindir}/systemctl \
|
||||
-DCMAKE_INSTALL_PERLDIR=${libdir}/perl5/${@get_perl_version(d)} \
|
||||
-DNO_MAN_PAGES=1 \
|
||||
"
|
||||
|
||||
LTO = ""
|
||||
|
||||
FILES_SOLIBSDEV = ""
|
||||
FILES:${PN} += "${libdir}/*"
|
||||
INSANE_SKIP:${PN} += "dev-so"
|
||||
|
||||
inherit cmake cpan-base pkgconfig python3native python3targetconfig systemd
|
||||
|
||||
SYSTEMD_SERVICE:${PN} = " \
|
||||
srp_daemon.service \
|
||||
iwpmd.service \
|
||||
ibacm.socket \
|
||||
rdma-load-modules@.service \
|
||||
srp_daemon_port@.service \
|
||||
rdma-hw.target \
|
||||
ibacm.service \
|
||||
"
|
||||
SYSTEMD_AUTO_ENABLE = "disable"
|
||||
|
||||
OECMAKE_FIND_ROOT_PATH_MODE_PROGRAM = "BOTH"
|
||||
Reference in New Issue
Block a user