Skip to content

Commit 33beb24

Browse files
committed
1 parent 0770811 commit 33beb24

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

conf/CMakeLists.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,13 @@ string(REGEX REPLACE "^%C%([^\n]*)" "\\1" file_content "${file_content}")
2525
file(WRITE "${CMAKE_BINARY_DIR}/direwolf.conf" "${file_content}")
2626

2727
# install udev rules for CM108
28+
# There are two locations. The one in /etc/udev/rules.d is meant for local customization and
29+
# takes precedence for the same name.
30+
# https://sources.debian.org/src/direwolf/1.7+dfsg-2/debian/patches/lib-udev-rules/
31+
# says that we should use the /usr/lib/udev/rules.d location.
2832
if(LINUX)
29-
install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
33+
#install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /etc/udev/rules.d/)
34+
install(FILES "${CUSTOM_CONF_DIR}/99-direwolf-cmedia.rules" DESTINATION /usr/lib/udev/rules.d/)
3035
endif()
3136

3237
install(FILES "${CMAKE_BINARY_DIR}/direwolf.conf" DESTINATION ${INSTALL_CONF_DIR})

0 commit comments

Comments
 (0)