From 250d6d43ffee20507533fbb0619b11ab0b4d5372 Mon Sep 17 00:00:00 2001 From: ZeroChaos Date: Thu, 27 Jun 2013 00:30:47 -0400 Subject: [PATCH] fix permissions on udev rules when setting a group on a device typically you only set write for root and the group not for world. should be 660 not 666, 666 is the devil. --- host/hackrf-tools/52-hackrf.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/hackrf-tools/52-hackrf.rules b/host/hackrf-tools/52-hackrf.rules index 49f5aff3..1ebb20db 100644 --- a/host/hackrf-tools/52-hackrf.rules +++ b/host/hackrf-tools/52-hackrf.rules @@ -1 +1 @@ -ATTR{idVendor}=="1d50", ATTR{idProduct}=="604b", SYMLINK+="hackrf-%k", MODE="666", GROUP="plugdev" +ATTR{idVendor}=="1d50", ATTR{idProduct}=="604b", SYMLINK+="hackrf-%k", MODE="660", GROUP="plugdev"