From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: openembedded-devel@lists.openembedded.org
Subject: [meta-networking][PATCH 0/8] Networking recipes
Date: Mon, 19 Nov 2012 17:11:22 +0000 [thread overview]
Message-ID: <cover.1353345006.git.paul.eggleton@linux.intel.com> (raw)
The following changes since commit b69b6e04f12b2fc45a3ebac8c741bda41fea6409:
netperf: import from oe-classic and upgrade to 2.6.0 (2012-11-19 11:18:30 -0500)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib paule/networking
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/networking
Paul Eggleton (8):
tftp-hpa: add from OE-Classic, update and tidy up
tunctl: add from OE-Classic and tweak
quagga: add from OE-Classic, update and tidy-up
radvd: add from OE-Classic, update and tidy up
vblade: add from OE-Classic, update and tidy up
xl2tpd: add from OE-Classic, update and tidy up
proftpd: add from meta-baryon
mtr: add from OE-Classic, update and tidy up
.../recipes-daemons/proftpd/files/basic.conf.patch | 21 ++
.../recipes-daemons/proftpd/files/contrib.patch | 42 ++++
.../recipes-daemons/proftpd/files/default | 9 +
.../recipes-daemons/proftpd/files/make.patch | 66 ++++++
.../proftpd/files/proftpd-basic.init | 220 ++++++++++++++++++++
.../recipes-daemons/proftpd/proftpd_1.3.4b.bb | 61 ++++++
.../recipes-daemons/radvd/files/radvd.init | 124 +++++++++++
.../recipes-daemons/radvd/files/volatiles.03_radvd | 2 +
meta-networking/recipes-daemons/radvd/radvd.inc | 37 ++++
.../recipes-daemons/radvd/radvd_1.9.1.bb | 6 +
.../recipes-daemons/tftp-hpa/files/default | 3 +
.../recipes-daemons/tftp-hpa/files/init | 104 +++++++++
.../tftp-hpa/files/tftp-0.40-remap.patch | 19 ++
.../tftp-hpa/files/tftp-0.42-tftpboot.patch | 54 +++++
.../tftp-hpa/files/tftp-0.49-chk_retcodes.patch | 15 ++
.../tftp-hpa/files/tftp-0.49-cmd_arg.patch | 159 ++++++++++++++
.../tftp-hpa/files/tftp-hpa-0.39-tzfix.patch | 18 ++
.../files/tftp-hpa-0.49-fortify-strcpy-crash.patch | 26 +++
.../tftp-hpa/files/tftp-hpa-0.49-stats.patch | 14 ++
.../tftp-hpa/files/tftp-hpa-5.2-pktinfo.patch | 23 ++
.../recipes-daemons/tftp-hpa/files/tftp-xinetd | 18 ++
.../recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb | 66 ++++++
.../recipes-daemons/vblade/files/cross.patch | 16 ++
.../recipes-daemons/vblade/vblade_20.bb | 20 ++
.../quagga/files/fix-for-lib-inpath.patch | 19 ++
.../quagga/files/quagga-0.99.17-libcap.patch | 64 ++++++
.../recipes-protocols/quagga/files/quagga.default | 13 ++
.../recipes-protocols/quagga/files/quagga.init | 200 ++++++++++++++++++
.../quagga/files/volatiles.03_quagga | 3 +
.../quagga/files/watchquagga.default | 7 +
.../quagga/files/watchquagga.init | 64 ++++++
.../recipes-protocols/quagga/quagga.inc | 146 +++++++++++++
.../recipes-protocols/quagga/quagga_0.99.21.bb | 8 +
.../xl2tpd/xl2tpd-1.3.1/cflags.patch | 58 ++++++
.../recipes-protocols/xl2tpd/xl2tpd.inc | 35 ++++
.../recipes-protocols/xl2tpd/xl2tpd_1.3.1.bb | 8 +
.../recipes-support/mtr/files/no-gtk.patch | 31 +++
meta-networking/recipes-support/mtr/mtr_0.82.bb | 19 ++
meta-networking/recipes-support/tunctl/tunctl.inc | 15 ++
.../recipes-support/tunctl/tunctl_1.5.bb | 4 +
40 files changed, 1837 insertions(+)
create mode 100644 meta-networking/recipes-daemons/proftpd/files/basic.conf.patch
create mode 100644 meta-networking/recipes-daemons/proftpd/files/contrib.patch
create mode 100644 meta-networking/recipes-daemons/proftpd/files/default
create mode 100644 meta-networking/recipes-daemons/proftpd/files/make.patch
create mode 100644 meta-networking/recipes-daemons/proftpd/files/proftpd-basic.init
create mode 100644 meta-networking/recipes-daemons/proftpd/proftpd_1.3.4b.bb
create mode 100755 meta-networking/recipes-daemons/radvd/files/radvd.init
create mode 100644 meta-networking/recipes-daemons/radvd/files/volatiles.03_radvd
create mode 100644 meta-networking/recipes-daemons/radvd/radvd.inc
create mode 100644 meta-networking/recipes-daemons/radvd/radvd_1.9.1.bb
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/default
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/init
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/tftp-0.40-remap.patch
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/tftp-0.42-tftpboot.patch
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/tftp-0.49-chk_retcodes.patch
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/tftp-0.49-cmd_arg.patch
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-0.39-tzfix.patch
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-0.49-fortify-strcpy-crash.patch
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-0.49-stats.patch
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-5.2-pktinfo.patch
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/files/tftp-xinetd
create mode 100644 meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb
create mode 100644 meta-networking/recipes-daemons/vblade/files/cross.patch
create mode 100644 meta-networking/recipes-daemons/vblade/vblade_20.bb
create mode 100644 meta-networking/recipes-protocols/quagga/files/fix-for-lib-inpath.patch
create mode 100644 meta-networking/recipes-protocols/quagga/files/quagga-0.99.17-libcap.patch
create mode 100644 meta-networking/recipes-protocols/quagga/files/quagga.default
create mode 100644 meta-networking/recipes-protocols/quagga/files/quagga.init
create mode 100644 meta-networking/recipes-protocols/quagga/files/volatiles.03_quagga
create mode 100644 meta-networking/recipes-protocols/quagga/files/watchquagga.default
create mode 100644 meta-networking/recipes-protocols/quagga/files/watchquagga.init
create mode 100644 meta-networking/recipes-protocols/quagga/quagga.inc
create mode 100644 meta-networking/recipes-protocols/quagga/quagga_0.99.21.bb
create mode 100644 meta-networking/recipes-protocols/xl2tpd/xl2tpd-1.3.1/cflags.patch
create mode 100644 meta-networking/recipes-protocols/xl2tpd/xl2tpd.inc
create mode 100644 meta-networking/recipes-protocols/xl2tpd/xl2tpd_1.3.1.bb
create mode 100644 meta-networking/recipes-support/mtr/files/no-gtk.patch
create mode 100644 meta-networking/recipes-support/mtr/mtr_0.82.bb
create mode 100644 meta-networking/recipes-support/tunctl/tunctl.inc
create mode 100644 meta-networking/recipes-support/tunctl/tunctl_1.5.bb
--
1.7.9.5
next reply other threads:[~2012-11-19 17:26 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-19 17:11 Paul Eggleton [this message]
2012-11-19 17:11 ` [meta-networking][PATCH 1/8] tftp-hpa: add from OE-Classic, update and tidy up Paul Eggleton
2012-11-19 18:14 ` Joe MacDonald
2012-11-19 17:11 ` [meta-networking][PATCH 2/8] tunctl: add from OE-Classic and tweak Paul Eggleton
2012-11-19 17:11 ` [meta-networking][PATCH 3/8] quagga: add from OE-Classic, update and tidy-up Paul Eggleton
2012-11-19 17:55 ` Koen Kooi
2012-11-19 18:00 ` Paul Eggleton
2012-11-19 18:02 ` Koen Kooi
2012-11-19 17:11 ` [meta-networking][PATCH 4/8] radvd: add from OE-Classic, update and tidy up Paul Eggleton
2012-11-19 17:11 ` [meta-networking][PATCH 5/8] vblade: " Paul Eggleton
2012-11-19 17:11 ` [meta-networking][PATCH 6/8] xl2tpd: " Paul Eggleton
2012-11-19 17:11 ` [meta-networking][PATCH 7/8] proftpd: add from meta-baryon Paul Eggleton
2012-11-19 17:57 ` Koen Kooi
2012-11-19 17:11 ` [meta-networking][PATCH 8/8] mtr: add from OE-Classic, update and tidy up Paul Eggleton
2012-11-19 17:59 ` [meta-networking][PATCH 0/8] Networking recipes Koen Kooi
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=cover.1353345006.git.paul.eggleton@linux.intel.com \
--to=paul.eggleton@linux.intel.com \
--cc=openembedded-devel@lists.openembedded.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox