Linux
如何在 NixOS 中將規則文件添加到 /etc/udev/rules.d 中?
我正在遵循此說明:https ://github.com/nns779/px4_drv
make``fwtool
在builds目錄下it930x-firmware.bin
和builds核心模組下。make``driver``px4_drv
現在
it930x.nix
和px4_drv.nix
在這裡。https://gist.github.com/gtgteq/30cb73c344477d26f8c69768e010331a
/etc/udev/rules.d/99-px4video.rules
ofpx4_drv
不在系統中顯示。如何使這個規則文件可用?
按照伊曼紐爾的兩個指示,我的要點得到了更新。
在您的 configuration.nix 中,嘗試
services.udev.packages = [ px4_drv ]
您可能還需要將 installPhase 中的 udev 路徑更改為
$out/lib/udev/rules.d
,而不是$out/etc/udev/rules.d
。