File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,13 @@ string(REGEX REPLACE "^%C%([^\n]*)" "\\1" file_content "${file_content}")
25
25
file (WRITE "${CMAKE_BINARY_DIR} /direwolf.conf" "${file_content} " )
26
26
27
27
# 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.
28
32
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/)
30
35
endif ()
31
36
32
37
install (FILES "${CMAKE_BINARY_DIR} /direwolf.conf" DESTINATION ${INSTALL_CONF_DIR} )
You can’t perform that action at this time.
0 commit comments