From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from dude02.hi.pengutronix.de ([2001:67c:670:100:1d::28] helo=dude02.lab.pengutronix.de) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ioQ3P-0007my-C5 for ptxdist@pengutronix.de; Mon, 06 Jan 2020 11:56:11 +0100 Received: from mol by dude02.lab.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1ioQ3P-0002VC-4l for ptxdist@pengutronix.de; Mon, 06 Jan 2020 11:56:11 +0100 Date: Mon, 6 Jan 2020 11:56:11 +0100 From: Michael Olbrich Message-ID: <20200106105611.GC5858@pengutronix.de> References: <20191206080514.GA1387859@lenoch> <20191206102156.ewbsmx2yj2di7cwf@pengutronix.de> <20191206103527.GA2137842@lenoch> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20191206103527.GA2137842@lenoch> Subject: Re: [ptxdist] [PATCH] gpsd: Optionally install systemd unit files List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de On Fri, Dec 06, 2019 at 11:35:27AM +0100, Ladislav Michl wrote: > On Fri, Dec 06, 2019 at 11:21:56AM +0100, Michael Olbrich wrote: > > On Fri, Dec 06, 2019 at 09:05:14AM +0100, Ladislav Michl wrote: > > > Signed-off-by: Ladislav Michl > > > --- > > > Note, udev rules and sysv init script are left as an excercise > > > for respective users (I do not have hardware to test with) :) > > > > > > ...ice-files-to-match-installation-path.patch | 37 +++++++++++++++++++ > > > patches/gpsd-3.19/series | 3 +- > > > projectroot/etc/default/gpsd | 5 +++ > > > rules/gpsd.in | 6 +++ > > > rules/gpsd.make | 14 +++++++ > > > 5 files changed, 64 insertions(+), 1 deletion(-) > > > create mode 100644 patches/gpsd-3.19/0003-Fix-systemd-service-files-to-match-installation-path.patch > > > create mode 100644 projectroot/etc/default/gpsd > > > > > > diff --git a/patches/gpsd-3.19/0003-Fix-systemd-service-files-to-match-installation-path.patch b/patches/gpsd-3.19/0003-Fix-systemd-service-files-to-match-installation-path.patch > > > new file mode 100644 > > > index 000000000..e88320b91 > > > --- /dev/null > > > +++ b/patches/gpsd-3.19/0003-Fix-systemd-service-files-to-match-installation-path.patch > > > @@ -0,0 +1,37 @@ > > > +From: Ladislav Michl > > > +Date: Fri, 6 Dec 2019 08:12:03 +0100 > > > +Subject: [PATCH] Fix systemd service files to match installation path > > > + > > > +--- > > > + systemd/gpsd.service | 3 +-- > > > + systemd/gpsdctl@.service | 5 ++--- > > > > I'd prefer custom files in projectroot instead of the patch. > > Well, I decided to patch gpsd instead of projectroot file as this way we > notice something changed upstream. But I have no strong preference here. > > > > + 2 files changed, 3 insertions(+), 5 deletions(-) > > > + > > > +diff --git a/systemd/gpsd.service b/systemd/gpsd.service > > > +index c1f193cc6942..6fa229561adf 100644 > > > +--- a/systemd/gpsd.service > > > ++++ b/systemd/gpsd.service > > > +@@ -7,8 +7,7 @@ After=chronyd.service > > > + [Service] > > > + Type=forking > > > + EnvironmentFile=-/etc/default/gpsd > > > +-EnvironmentFile=-/etc/sysconfig/gpsd > > > +-ExecStart=/usr/local/sbin/gpsd $GPSD_OPTIONS $OPTIONS $DEVICES > > > ++ExecStart=/usr/sbin/gpsd $GPSD_OPTIONS $DEVICES > > > + > > > + [Install] > > > + WantedBy=multi-user.target > > > +diff --git a/systemd/gpsdctl@.service b/systemd/gpsdctl@.service > > > +index 1c80101de340..58c5176defae 100644 > > > +--- a/systemd/gpsdctl@.service > > > ++++ b/systemd/gpsdctl@.service > > > +@@ -8,7 +8,6 @@ After=dev-%i.device > > > + Type=oneshot > > > + Environment="GPSD_SOCKET=/var/run/gpsd.sock" > > > + EnvironmentFile=-/etc/default/gpsd > > > +-EnvironmentFile=-/etc/sysconfig/gpsd > > > + RemainAfterExit=yes > > > +-ExecStart=/bin/sh -c "[ \"$USBAUTO\" = true ] && /usr/local/sbin/gpsdctl add /dev/%I || :" > > > +-ExecStop=/bin/sh -c "[ \"$USBAUTO\" = true ] && /usr/local/sbin/gpsdctl remove /dev/%I || :" > > > ++ExecStart=/bin/sh -c "[ \"$USBAUTO\" = true ] && /usr/sbin/gpsdctl add /dev/%I || :" > > > ++ExecStop=/bin/sh -c "[ \"$USBAUTO\" = true ] && /usr/sbin/gpsdctl remove /dev/%I || :" > > > diff --git a/patches/gpsd-3.19/series b/patches/gpsd-3.19/series > > > index 32349387e..9250c5aaf 100644 > > > --- a/patches/gpsd-3.19/series > > > +++ b/patches/gpsd-3.19/series > > > @@ -2,4 +2,5 @@ > > > #tag:base --start-number 1 > > > 0001-Search-for-ncursesw-pkgconfig.patch > > > 0002-Fix-python-binding-cross-compilation.patch > > > -# a402ea49345e59dc5c9f5487c0ce65c6 - git-ptx-patches magic > > > +0003-Fix-systemd-service-files-to-match-installation-path.patch > > > +# 4ae3d41ecea44cc4df7cf9e46c50b850 - git-ptx-patches magic > > > diff --git a/projectroot/etc/default/gpsd b/projectroot/etc/default/gpsd > > > new file mode 100644 > > > index 000000000..8a860598b > > > --- /dev/null > > > +++ b/projectroot/etc/default/gpsd > > > @@ -0,0 +1,5 @@ > > > +# Devices gpsd should connect at boot time > > > +DEVICES="" > > > + > > > +# Other options passed to gpsd > > > +GPSD_OPTIONS="" > > > > No. Overwriting this file or the service file in the BSP make no > > difference. There is no admin who might want to modify this file. Just > > provide a service without the EnvironmentFile=. It can be overwritten in > > the BSP if necessary. > > This will add additional work for whoever wants to support sysv init as > config is shared. Only if someone uses both systemd and sysv init and I don't think anyone does this in one project. > Also I recently added Linux-PAM, shadow-utils, updated SELinux and added You've updated the SELinux packages? I've moved that stuff to staging because it was very old. And I've not used tested this in a long time. So you'll need to upstream your SELinux packages or the SELinux support will be removed completely in a year or so. > global PAM and ACL options, so I feel this could be pretty decent desktop > distro with myself as an admin ;-) I'd like to keep PTXdist as simple as possible in that regard. And in this case drop-in files work just as well as a EnvironmentFile=. > So dropping config option and using BSP files if found sounds sane to me. > Or is failing out on not found file preferable? (as default service file > makes no sense) Please add the units to projectroot/ in PTXdist. This should work out of the box without extra files. Just make the units as simple as possible. Michael > ladis > > > Michael > > > > > diff --git a/rules/gpsd.in b/rules/gpsd.in > > > index 660088969..aebf735d6 100644 > > > --- a/rules/gpsd.in > > > +++ b/rules/gpsd.in > > > @@ -278,6 +278,12 @@ menu "install options" > > > queries with a format that is substantially easier to > > > parse than the NMEA 0183 emitted by most GPS receivers. > > > > > > + config GPSD_SYSTEMD_UNIT > > > + bool > > > + default y > > > + depends on INITMETHOD_SYSTEMD && GPSD_GPSD > > > + prompt "systemd unit files for gpsd" > > > + > > > config GPSD_GPS2UDP > > > bool > > > prompt "gps2udp" > > > diff --git a/rules/gpsd.make b/rules/gpsd.make > > > index ae4e0628e..a3a5c8ba4 100644 > > > --- a/rules/gpsd.make > > > +++ b/rules/gpsd.make > > > @@ -151,6 +151,12 @@ ifneq ($(call remove_quotes,$(PTXCONF_GPSD_MAX_DEVICES)),) > > > GPSD_CONF_OPT += max_devices=$(PTXCONF_GPSD_MAX_DEVICES) > > > endif > > > > > > +# ---------------------------------------------------------------------------- > > > +# Install > > > +# ---------------------------------------------------------------------------- > > > + > > > +GPSD_INSTALL_OPT := udev-install > > > + > > > # ---------------------------------------------------------------------------- > > > # Target-Install > > > # ---------------------------------------------------------------------------- > > > @@ -174,6 +180,14 @@ endif > > > ifdef PTXCONF_GPSD_PYTHON > > > @$(call install_glob, gpsd, 0, 0, -, \ > > > /usr/lib/python$(PYTHON3_MAJORMINOR), *.so *.py) > > > +endif > > > +ifdef PTXCONF_GPSD_SYSTEMD_UNIT > > > + @$(call install_alternative, gpsd, 0, 0, 644, /etc/default/gpsd) > > > + @$(call install_alternative, gpsd, 0, 0, 644, /lib/systemd/system/gpsdctl@.service) > > > + @$(call install_alternative, gpsd, 0, 0, 644, /lib/systemd/system/gpsd.service) > > > + @$(call install_link, gpsd, ../gpsd.service, \ > > > + /lib/systemd/system/multi-user.target.wants/gpsd.service) > > > + @$(call install_alternative, gpsd, 0, 0, 644, /lib/systemd/system/gpsd.socket) > > > endif > > > @$(call install_finish, gpsd) > > > > > > -- > > > 2.24.0 > > > > > > > > > _______________________________________________ > > > ptxdist mailing list > > > ptxdist@pengutronix.de > > > > > > > -- > > Pengutronix e.K. | | > > Steuerwalder Str. 21 | http://www.pengutronix.de/ | > > 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | > > Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | > > > > _______________________________________________ > > ptxdist mailing list > > ptxdist@pengutronix.de > > _______________________________________________ > ptxdist mailing list > ptxdist@pengutronix.de > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de