diff options
author | Nick Hainke <vincent@systemli.org> | 2021-10-25 09:36:56 +0200 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-10-27 23:16:09 -0700 |
commit | efaa971914ad4bcf7400c934f5dabcf610671070 (patch) | |
tree | 64c6184641e8d8d73caffb599dee55384e6e95f8 /utils/gpsd | |
parent | 164bd1fdf826303cfaf32918cdc3354dad13fbe0 (diff) |
gpsd: update to 3.23.1
3.23.1: 2021-09-21
Improve ubx cycle detection.
Add quirks for Jackson Labs nonstandard NMEA
Change STATUS_NO_FIX to STATUS_UNK to avoid confusion with fix mode.
Change STATUS_FIX to STATUS_GPS to avoid confusion with fix mode.
Change STATUS_DGPS_FIX to STATUS_DGPS to avoid confusion with fix mode.
Split SOURCE_ACM from SOURCE_USB. ACM has no speeds.
Add speeds 1 mbps, 1.152 mbps, 1.5 mbps, and higher. When libc supports them.
Improve autobaud.
Add new u-blox M10 messages.
Fix u-blox M6, M7 initialization issues.
Various ubxtool and gpxlogger updates.
Add mtk3301_speed_switcher()
No API changes, except for STATUS_* as above.
No ABI changes.
Fallback to "python3" if "python" not found.
Signed-off-by: Nick Hainke <vincent@systemli.org>
Diffstat (limited to 'utils/gpsd')
-rw-r--r-- | utils/gpsd/Makefile | 4 | ||||
-rw-r--r-- | utils/gpsd/patches/0002-ncurses6_detection.patch | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/utils/gpsd/Makefile b/utils/gpsd/Makefile index 60e40f058..086da3b8c 100644 --- a/utils/gpsd/Makefile +++ b/utils/gpsd/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gpsd -PKG_VERSION:=3.23 +PKG_VERSION:=3.23.1 PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@SAVANNAH/$(PKG_NAME) -PKG_HASH:=e36429b9f6fc42004894dff3dc4453f5b43f95af8533b96d3d135987418da9df +PKG_HASH:=ca2c466df783c57b8a07ad3f5c67943186d05befdc377de938ed111d1358a8c1 PKG_MAINTAINER:=Pushpal Sidhu <psidhu.devel@gmail.com> PKG_LICENSE:=BSD-3-Clause diff --git a/utils/gpsd/patches/0002-ncurses6_detection.patch b/utils/gpsd/patches/0002-ncurses6_detection.patch index 13ad85c9d..0d16776a0 100644 --- a/utils/gpsd/patches/0002-ncurses6_detection.patch +++ b/utils/gpsd/patches/0002-ncurses6_detection.patch @@ -1,6 +1,6 @@ --- a/SConscript +++ b/SConscript -@@ -1027,6 +1027,8 @@ if not cleaning and not helping: +@@ -1038,6 +1038,8 @@ if not cleaning and not helping: ncurseslibs += pkg_config('tinfo', rpath_hack=True) # It's not yet known whether rpath_hack is appropriate for # ncurses5-config. |