Re: [ptxdist] [PATCH 1/3] gpsd: merge GPSD_SYSTEMD and GPSD_SYSTEMD_UNIT options

2020-07-20 Thread ladis
On Mon, Jul 20, 2020 at 02:59:33PM +0200, Michael Olbrich wrote: > On Mon, Jul 20, 2020 at 01:51:15PM +0200, Roland Hieber wrote: > > The current systemd socket unit relies on compiled-in systemd support in > > the gpsd binary, so we would need to enable GPSD_SYSTEMD with > > GPSD_SYSTEMD_UNIT anyw

[ptxdist] [PATCH v3] modemmanager: config: allow arbitrary AT command via DBus

2020-07-20 Thread Bruno Thomsen
This feature is useful when needing to approve a device under RED directive for the EU market where it's required to use the same firmware that ships to customers during radio testing. As this work typically involves the use of hidden/custom commands not need for every day operation. Signed-off-by

[ptxdist] [PATCH v2 4/5] host-squashfs-tools: conditional select lzo and xz dependencies

2020-07-20 Thread Bruno Thomsen
Only select host lzo and host xz packages when needed to speed up complete build time and avoid unnecessary dependencies. Signed-off-by: Bruno Thomsen --- No changes since version 1. rules/host-squashfs-tools.in | 4 ++-- rules/host-squashfs-tools.make | 4 ++-- 2 files changed, 4 insertions(

[ptxdist] [PATCH v2 5/5] host-squashfs-tools: fix lz4 compression option

2020-07-20 Thread Bruno Thomsen
Conditional select host-lz4 package if lz4 compressions is used by image-root-squashfs and enable support in package. Signed-off-by: Bruno Thomsen --- No changes since version 1. rules/host-squashfs-tools.in | 1 + rules/host-squashfs-tools.make | 1 + 2 files changed, 2 insertions(+) diff -

[ptxdist] [PATCH v2 1/5] host-zstd: new package

2020-07-20 Thread Bruno Thomsen
This package can be used by squashfs-tools. Signed-off-by: Bruno Thomsen --- Changes since version 1: Replaced HOST_CMAKE_USR with HOST_CMAKE_OPT rules/host-zstd.in | 6 ++ rules/host-zstd.make | 42 ++ 2 files changed, 48 insertions(+) create mod

[ptxdist] [PATCH v2 3/5] host-squashfs-tools: add support for zstd contitional

2020-07-20 Thread Bruno Thomsen
Only enable host zstd package dependency when needed, so it doesn't build unnecessary packages. Signed-off-by: Bruno Thomsen --- Changes since version 1: Removed all /usr/local paths changes in HOST_SQUASHFS_TOOLS_MAKE_ENV. This looks cleaner :) rules/host-squashfs-tools.in | 1 + rules/host-

[ptxdist] [PATCH v2 2/5] image-root-squashfs: add zstd compression option

2020-07-20 Thread Bruno Thomsen
Set block size and compression level parameters for optimal result by default. BLOCK_SIZE="1M" EXTRA_ARGS="-Xcompression-level 22" It's still very fast on an ordinary laptop. Signed-off-by: Bruno Thomsen --- No changes since version 1. platforms/image-root-squashfs.in | 11 ++- 1 file

Re: [ptxdist] [PATCH 1/3] gpsd: merge GPSD_SYSTEMD and GPSD_SYSTEMD_UNIT options

2020-07-20 Thread Michael Olbrich
On Mon, Jul 20, 2020 at 01:51:15PM +0200, Roland Hieber wrote: > The current systemd socket unit relies on compiled-in systemd support in > the gpsd binary, so we would need to enable GPSD_SYSTEMD with > GPSD_SYSTEMD_UNIT anyways. Vice versa, there is no use in having > compiled-in systemd socket a

[ptxdist] [PATCH 2/3] gpsd: make 'ublox' driver option more recognizable

2020-07-20 Thread Roland Hieber
The configure option itself is named 'ublox', so there is no reason to unnecessarily abbreviate the option in the menu and make it harder to recognize. Signed-off-by: Roland Hieber --- rules/gpsd.in | 4 ++-- rules/gpsd.make | 2 +- scripts/migrate/migrate_ptx | 2 ++ 3

[ptxdist] [PATCH 3/3] gpsd: fix usage of GPSD_DRIVER_NTRIP option

2020-07-20 Thread Roland Hieber
Signed-off-by: Roland Hieber --- rules/gpsd.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/gpsd.make b/rules/gpsd.make index 794e185ccaa7..78e0471dd104 100644 --- a/rules/gpsd.make +++ b/rules/gpsd.make @@ -93,7 +93,7 @@ GPSD_CONF_OPT := \ nmea0183=$(call p

[ptxdist] [PATCH 1/3] gpsd: merge GPSD_SYSTEMD and GPSD_SYSTEMD_UNIT options

2020-07-20 Thread Roland Hieber
The current systemd socket unit relies on compiled-in systemd support in the gpsd binary, so we would need to enable GPSD_SYSTEMD with GPSD_SYSTEMD_UNIT anyways. Vice versa, there is no use in having compiled-in systemd socket activation support without the systemd socket unit. Merge both options.