diff options
author | Dimitri Staessens <dimitri.staessens@ugent.be> | 2017-12-15 18:39:07 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-12-17 13:21:06 +0100 |
commit | 3d024b8f3b8a2a1abbaeabafa8377ac49f24b32a (patch) | |
tree | ddac5d782133f6b9bb3474d671708c586b0909d0 /src/ipcpd | |
parent | 757cbecfeb13e0db0fd8db7b2a3e8c57f733e77d (diff) | |
download | ouroboros-3d024b8f3b8a2a1abbaeabafa8377ac49f24b32a.tar.gz ouroboros-3d024b8f3b8a2a1abbaeabafa8377ac49f24b32a.zip |
ipcpd: Find raptor kernel module in default path
The raptor module is now installed in /lib/modules/$(uname -r)/extra
and ouroboros will look for the module there.
Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be>
Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Diffstat (limited to 'src/ipcpd')
-rw-r--r-- | src/ipcpd/raptor/CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ipcpd/raptor/CMakeLists.txt b/src/ipcpd/raptor/CMakeLists.txt index 03411941..2eb3b9b7 100644 --- a/src/ipcpd/raptor/CMakeLists.txt +++ b/src/ipcpd/raptor/CMakeLists.txt @@ -15,11 +15,9 @@ include_directories(${CMAKE_BINARY_DIR}/include) if (CMAKE_SYSTEM_NAME STREQUAL "Linux") find_path(RAPTOR_KERNEL_MODULE NAMES - raptor.ko raptor.ko.gz HINTS - /lib/modules/${CMAKE_SYSTEM_VERSION}/ - /lib/modules/${CMAKE_SYSTEM_VERSION}/extramodules/ + /lib/modules/${CMAKE_SYSTEM_VERSION}/extra ) mark_as_advanced(RAPTOR_KERNEL_MODULE) |