From 4c11e1267f8ff5ff8ede042c5015732be886c776 Mon Sep 17 00:00:00 2001 From: hoinzy Date: Wed, 15 Jul 2026 14:24:13 +0000 Subject: [PATCH] Add u-blox 7 device rules to gpsd configuration 60-gpsd.rules lacked the u-blox 7 USB ID 1546:01a7. Consequently, /dev/gps0 was never created and gpsd started with no devices. I had applied this patch the last 2 years, and the receiver worked flawless with it. --- gpsd/60-gpsd.rules | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gpsd/60-gpsd.rules b/gpsd/60-gpsd.rules index 29eb3d3..8a4e35e 100644 --- a/gpsd/60-gpsd.rules +++ b/gpsd/60-gpsd.rules @@ -42,6 +42,8 @@ ATTR{idVendor}=="1546", ATTR{idProduct}=="01a5", SYMLINK="gps%n", RUN+="/lib/ude ATTR{idVendor}=="0403", ATTR{idProduct}=="6001", SYMLINK="gps%n", RUN+="/lib/udev/gpsd.hotplug.wrapper" # u-blox 4 ATTR{idVendor}=="1546", ATTR{idProduct}=="01a4", SYMLINK="gps%n", RUN+="/lib/udev/gpsd.hotplug.wrapper" +# u-blox 7 +ATTRS{idVendor}=="1546", ATTRS{idProduct}=="01a7", SYMLINK+="gps%n", RUN+="/lib/udev/gpsd.hotplug.wrapper" RUN+="/lib/udev/gpsd.hotplug.wrapper"