Files
px4_drv/dkms/post_remove
nns779 c4000b0544 Makefileなどの修正
複数のカーネルバージョンに対するモジュールがインストールさている環境において、アンインストール時に99-px4video.rulesを削除してはならない場合にも削除してしまう問題を修正
2018-10-06 22:33:12 +09:00

5 lines
156 B
Bash
Executable File

#!/bin/sh
if [ `find /lib/modules/ -name px4_drv.ko | wc -l` -eq 0 ]; then
rm -fv /etc/udev/rules.d/90-px4.rules /etc/udev/rules.d/99-px4video.rules
fi