[oe] [meta-oe][PATCH V2 09/25] atftp: Upgrade to latest from git

Joe MacDonald Joe.MacDonald at windriver.com
Mon Jan 7 16:04:57 UTC 2013


[Re: [oe] [meta-oe][PATCH V2 09/25] atftp: Upgrade to latest from git] On 13.01.07 (Mon 08:01) Khem Raj wrote:

> On Monday, January 7, 2013, Joe MacDonald wrote:
> 
> > Hi Khem,
> >
> > [Re: [oe] [meta-oe][PATCH V2 09/25] atftp: Upgrade to latest from git] On
> > 13.01.06 (Sun 17:23) Khem Raj wrote:
> >
> > > On Sun, Jan 6, 2013 at 1:36 AM, Martin Jansa <martin.jansa at gmail.com<javascript:;>>
> > wrote:
> > > > On Sun, Jan 06, 2013 at 01:12:32AM -0800, Khem Raj wrote:
> > > >> Add patches to let atftp serve huge ramdisks >500M in size
> > > >
> > > > I don't see this patch
> > > > http://patchwork.openembedded.org/patch/41955/
> > > > in V2, can you update status on patchwork to indicate which patches are
> > > > superseeded by V2 and which are still valid?
> > > >
> > >
> > > I would suggest to actually drop all V1 patches since I have
> > > reshuffled them quite a bit and take all V2 fresh
> > > I have also pushed this latest series into contrib repo
> > >
> > >
> > http://git.openembedded.org/meta-openembedded-contrib/log/?h=kraj/updates
> >
> > I'm looking at that now.  The only comment / request I have right now is
> > about atftp.  It was on my list of stuff to update and move into
> > meta-networking.  If there's no objection it that, would you mind moving
> > it there at the same time?  I'd been planning to have it in
> > meta-networking/recipes-daemons.
> 
> 
> Yes that's ok but I trout of doing the move as a separate step which does
> not have other changes
> For ease of surfing the history in future. It's not only atftpd but there
> are move recipes that need to
> Move into this layer

Okay, that seems reasonable to me.

-J.

> 
> 
> >
> > Thanks,
> > -J.
> >
> > >
> > >
> > > > Thanks
> > > >
> > > >>
> > > >> Signed-off-by: Khem Raj <raj.khem at gmail.com>
> > > >> ---
> > > >>  .../atftp/{atftp_0.7.bb => atftp_git.bb}           |   18 +--
> > > >>  ...tpd-0.7_circumvent_tftp_size_restrictions.patch |  158
> > ++++++++++++++++++++
> > > >>  .../atftpd-0.7_unprotected_assignments_crash.patch |  145
> > ++++++++++++++++++
> > > >>  3 files changed, 311 insertions(+), 10 deletions(-)
> > > >>  rename meta-oe/recipes-extended/atftp/{atftp_0.7.bb => atftp_git.bb}
> > (59%)
> > > >>  create mode 100644
> > meta-oe/recipes-extended/atftp/files/atftpd-0.7_circumvent_tftp_size_restrictions.patch
> > > >>  create mode 100644
> > meta-oe/recipes-extended/atftp/files/atftpd-0.7_unprotected_assignments_crash.patch
> > > >>
> > > >> diff --git a/meta-oe/recipes-extended/atftp/atftp_0.7.bbb/meta-oe/recipes-extended/atftp/
> > atftp_git.bb
> > > >> similarity index 59%
> > > >> rename from meta-oe/recipes-extended/atftp/atftp_0.7.bb
> > > >> rename to meta-oe/recipes-extended/atftp/atftp_git.bb
> > > >> index ff1e11d..774dd68 100644
> > > >> --- a/meta-oe/recipes-extended/atftp/atftp_0.7.bb
> > > >> +++ b/meta-oe/recipes-extended/atftp/atftp_git.bb
> > > >> @@ -3,13 +3,16 @@ SECTION = "network"
> > > >>  HOMEPAGE = "http://packages.debian.org/atftp"
> > > >>  LICENSE = "GPLv2"
> > > >>  LIC_FILES_CHKSUM =
> > "file://LICENSE;md5=94d55d512a9ba36caa9b7df079bae19f"
> > > >> -PR = "r4"
> > > >> +PV = "0.7.1+git${SRCPV}"
> > > >>
> > > >> -SRC_URI =
> > "${DEBIAN_MIRROR}/main/a/atftp/atftp_${PV}.dfsg.orig.tar.gz;name=archive \
> > > >> -
> > ${DEBIAN_MIRROR}/main/a/atftp/atftp_${PV}.dfsg-11.diff.gz;name=patch \
> > > >> -           file://atftpd.init"
> > > >> +SRCREV = "be3291a18c069ae23a124ffdc56d64a5ff0bbec7"
> > > >>
> > > >> -S = "${WORKDIR}/atftp-${PV}.dfsg"
> > > >> +SRC_URI = "git://
> > atftp.git.sourceforge.net/gitroot/atftp/atftp;protocol=git \
> > > >> +           file://atftpd-0.7_circumvent_tftp_size_restrictions.patch
> > \
> > > >> +           file://atftpd-0.7_unprotected_assignments_crash.patch \
> > > >> +           file://atftpd.init \
> > > >> +          "
> > > >> +S = "${WORKDIR}/git"
> > > >>
> > > >>  inherit autotools update-rc.d useradd
> > > >>
> > > >> @@ -35,8 +38,3 @@ PACKAGES =+ "atftpd"
> > > >>  FILES_${PN} = "${bindir}/*"
> > > >>
> > > >>  FILES_${PN}d = "${sbindir}/* ${sysconfdir}/init.d/* /srv/tftp"
> > > >> -
> > > >> -SRC_URI[archive.md5sum] = "aa269044a6f992eca78fee2f6119643c"
> > > >> -SRC_URI[archive.sha256sum] =
> > "18815f5b67290fac087c6b9da28dfa5e0feb722096f5c5de52e59b46026da559"
> > > >> -SRC_URI[patch.md5sum] = "1636f199bf32c754a7bf34a5c647d138"
> > > >> -SRC_URI[patch.sha256sum] =
> > "0df33f6c09c2b2de58a84d7bb757844fc9538cd4d6c8d9c463da5270ebc2e41d"
> > > >> diff --git
> > a/meta-oe/recipes-extended/atftp/files/atftpd-0.7_circumvent_tftp_size_restrictions.patch
> > b/meta-oe/recipes-extended/atftp/files/atftpd-0.7_circumvent_tftp_size_restrictions.patch
> > > >> new file mode 100644
> > > >> index 0000000..9aeb351
> > > >> --- /dev/null
> > -Joe MacDonald.
> > :wq
> >
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel at lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-- 
-Joe MacDonald.
:wq
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 198 bytes
Desc: Digital signature
URL: <http://lists.openembedded.org/pipermail/openembedded-devel/attachments/20130107/8134cffa/attachment-0002.sig>


More information about the Openembedded-devel mailing list