All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joe MacDonald <Joe.MacDonald@windriver.com>
To: <rongqing.li@windriver.com>
Cc: openembedded-devel@lists.openembedded.org
Subject: Re: [meta-networking][PATCH] tftp-hpa: make init script work
Date: Fri, 22 Mar 2013 09:11:45 -0400	[thread overview]
Message-ID: <20130322131145.GF5049@windriver.com> (raw)
In-Reply-To: <20130318153933.GB9185@windriver.com>

[-- Attachment #1: Type: text/plain, Size: 3651 bytes --]

[Re: [meta-networking][PATCH] tftp-hpa: make init script work] On 13.03.18 (Mon 11:39) Joe MacDonald wrote:

> Hey Roy,
> 
> [[meta-networking][PATCH] tftp-hpa: make init script work] On 13.03.05 (Tue 09:00) rongqing.li@windriver.com wrote:
> 
> > From: "Roy.Li" <rongqing.li@windriver.com>
> > 
> > 1. fix the daemon name, it should be in.tftpd-hpa
> > 2. root directory should be /var/lib/tftpboot, since /var/lib/tftpboot has been
> > installed, but /srv/tftpboot not
> 
> Hmm.  This is a bit problematic for me.  I wouldn't normally bat an eye
> at such a change, but because the original recipe specifically pointed
> the tftp server at /srv and when I looked at my own tftp server, that's
> where it was set.  It's been so long since I did anything with it I'd
> forgotten why I put the contents there, so I thought I'd have a quick
> look-see as to why.  Turns out that's actually the FHS-recommended
> location:
> 
>    http://www.pathname.com/fhs/pub/fhs-2.3.html#SRVDATAFORSERVICESPROVIDEDBYSYSTEM
> 
> And this has been identified and fixed in at least Ubuntu:
> 
>    https://bugs.launchpad.net/ubuntu/+source/tftp-hpa/+bug/84615
> 
> Unless there's a strong objection, I'd prefer to see a fix for this that
> updates the recipe to install into /svc/tftpboot, rather than changing
> the daemon options to look in /var/lib/tftpboot.

Roy?  Just a ping.

-J.

> 
> Changing the name is fine with me (will this cause pain for the systemd
> folks?).
> 
> -J.
> 
> > 
> > Signed-off-by: Roy.Li <rongqing.li@windriver.com>
> > ---
> >  meta-networking/recipes-daemons/tftp-hpa/files/default   |    2 +-
> >  meta-networking/recipes-daemons/tftp-hpa/files/init      |    2 +-
> >  meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb |    2 +-
> >  3 files changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/meta-networking/recipes-daemons/tftp-hpa/files/default b/meta-networking/recipes-daemons/tftp-hpa/files/default
> > index de2ed18..1dce7fd 100644
> > --- a/meta-networking/recipes-daemons/tftp-hpa/files/default
> > +++ b/meta-networking/recipes-daemons/tftp-hpa/files/default
> > @@ -1,3 +1,3 @@
> >  #Defaults for tftpd-hpa
> >  RUN_DAEMON="yes"
> > -OPTIONS="-l -s /srv/tftpboot"
> > +OPTIONS="-l -s /var/lib/tftpboot"
> > diff --git a/meta-networking/recipes-daemons/tftp-hpa/files/init b/meta-networking/recipes-daemons/tftp-hpa/files/init
> > index 5ad8c52..0561ff6 100644
> > --- a/meta-networking/recipes-daemons/tftp-hpa/files/init
> > +++ b/meta-networking/recipes-daemons/tftp-hpa/files/init
> > @@ -18,7 +18,7 @@ set -e
> >  
> >  PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
> >  DESC="HPA's tftpd"
> > -NAME=in.tftpd
> > +NAME=in.tftpd-hpa
> >  DAEMON=/usr/sbin/$NAME
> >  PIDFILE=/var/run/$NAME.pid
> >  SCRIPTNAME=/etc/init.d/tftpd-hpa
> > diff --git a/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb b/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb
> > index af48455..c116121 100644
> > --- a/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb
> > +++ b/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb
> > @@ -11,7 +11,7 @@ LICENSE = "BSD-4-Clause"
> >  LIC_FILES_CHKSUM = "file://MCONFIG.in;beginline=1;endline=9;md5=c28ba5adb43041fae4629db05c83cbdd \
> >                      file://tftp/tftp.c;beginline=1;endline=32;md5=988c1cba99d70858a26cd877209857f4"
> >  
> > -PR = "r0"
> > +PR = "r1"
> >  
> >  SRC_URI = "http://kernel.org/pub/software/network/tftp/tftp-hpa/tftp-hpa-${PV}.tar.bz2 \
> >             file://tftp-0.40-remap.patch \
-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

      reply	other threads:[~2013-03-22 13:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-05  1:00 [meta-networking][PATCH] tftp-hpa: make init script work rongqing.li
2013-03-18 15:39 ` Joe MacDonald
2013-03-22 13:11   ` Joe MacDonald [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130322131145.GF5049@windriver.com \
    --to=joe.macdonald@windriver.com \
    --cc=openembedded-devel@lists.openembedded.org \
    --cc=rongqing.li@windriver.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.