From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: openembedded-devel@lists.openembedded.org
Subject: [meta-networking][PATCH 00/11] More networking recipes
Date: Mon, 3 Dec 2012 17:44:06 +0000 [thread overview]
Message-ID: <cover.1354555874.git.paul.eggleton@linux.intel.com> (raw)
These are updated, rebased and extended versions of patches originally
submitted by Vladimir Redzhepoff and Yauhen Kharuzhy, now applied to
meta-networking after discussion with them. This series also moves
libnfnetlink to meta-networking and adds some additional netfilter
library recipes needed for current versions of the netfilter suite.
Note that the original patch for pure-ftpd said that it was an updated
version of a recipe from OE-Classic; there was no such recipe in
OE-Classic however so I have commented it as a new recipe.
The libnetfilter-queue recipe was written from scratch as I did not
notice it was in OE-Classic; neither version has anything particularly
interesting in it and this version is more up-to-date.
The following changes since commit 85ab35f4edac91ecc180161e97c6698f1c10928b:
netperf: Correct license flags (2012-11-30 11:49:56 -0500)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib paule/networking2
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/networking2
Paul Eggleton (11):
netcat: add from OE-Classic
libnfnetlink: move to meta-networking and update to 1.0.1
libmnl: add new recipe for version 1.0.3
libnetfilter-conntrack: add from OE-Classic and update
libnetfilter-cttimeout: add new recipe for version 1.0.0
libnetfilter-cthelper: add new recipe for version 1.0.0
libnetfilter-queue: add new recipe for version 1.0.2
conntrack-tools: add from OE-Classic, update and tidy up
ebtables: add from OE-Classic, update and tidy up
pure-ftpd: add new recipe for 1.0.36
pptp-linux: add from OE-Classic, update and tidy up
...coded-usr-local-includes-from-configure.a.patch | 38 ++++
.../pure-ftpd/pure-ftpd/nostrip.patch | 30 ++++
.../recipes-daemons/pure-ftpd/pure-ftpd_1.0.36.bb | 19 ++
.../conntrack-tools/conntrack-tools_1.4.0.bb | 33 ++++
.../conntrack-tools/files/conntrack-failover | 77 ++++++++
.../recipes-filter/conntrack-tools/files/init | 87 +++++++++
.../ebtables-2.0.10-4/01debian_defaultconfig.patch | 50 ++++++
.../ebtables/ebtables-2.0.10-4/ebtables.init | 186 ++++++++++++++++++++
.../ebtables-2.0.10-4/installnonroot.patch | 43 +++++
.../recipes-filter/ebtables/ebtables_2.0.10-4.bb | 52 ++++++
.../recipes-filter/libmnl/libmnl_1.0.3.bb | 12 ++
.../libnetfilter/libnetfilter-conntrack_1.0.2.bb | 14 ++
.../libnetfilter/libnetfilter-cthelper_1.0.0.bb | 14 ++
.../libnetfilter/libnetfilter-cttimeout_1.0.0.bb | 13 ++
.../libnetfilter/libnetfilter-queue_1.0.2.bb | 14 ++
.../libnfnetlink/libnfnetlink_1.0.1.bb | 11 +-
.../pptp-linux/pptp-linux-1.7.2/options.pptp | 30 ++++
.../pptp-linux/pptp-linux_1.7.2.bb | 29 +++
.../recipes-support/netcat/netcat_0.7.1.bb | 21 +++
19 files changed, 768 insertions(+), 5 deletions(-)
create mode 100644 meta-networking/recipes-daemons/pure-ftpd/pure-ftpd/0001-Remove-hardcoded-usr-local-includes-from-configure.a.patch
create mode 100644 meta-networking/recipes-daemons/pure-ftpd/pure-ftpd/nostrip.patch
create mode 100644 meta-networking/recipes-daemons/pure-ftpd/pure-ftpd_1.0.36.bb
create mode 100644 meta-networking/recipes-filter/conntrack-tools/conntrack-tools_1.4.0.bb
create mode 100644 meta-networking/recipes-filter/conntrack-tools/files/conntrack-failover
create mode 100644 meta-networking/recipes-filter/conntrack-tools/files/init
create mode 100644 meta-networking/recipes-filter/ebtables/ebtables-2.0.10-4/01debian_defaultconfig.patch
create mode 100755 meta-networking/recipes-filter/ebtables/ebtables-2.0.10-4/ebtables.init
create mode 100644 meta-networking/recipes-filter/ebtables/ebtables-2.0.10-4/installnonroot.patch
create mode 100644 meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb
create mode 100644 meta-networking/recipes-filter/libmnl/libmnl_1.0.3.bb
create mode 100644 meta-networking/recipes-filter/libnetfilter/libnetfilter-conntrack_1.0.2.bb
create mode 100644 meta-networking/recipes-filter/libnetfilter/libnetfilter-cthelper_1.0.0.bb
create mode 100644 meta-networking/recipes-filter/libnetfilter/libnetfilter-cttimeout_1.0.0.bb
create mode 100644 meta-networking/recipes-filter/libnetfilter/libnetfilter-queue_1.0.2.bb
rename meta-oe/recipes-connectivity/libnfnetlink/libnfnetlink_1.0.0.bb => meta-networking/recipes-filter/libnfnetlink/libnfnetlink_1.0.1.bb (60%)
create mode 100644 meta-networking/recipes-protocols/pptp-linux/pptp-linux-1.7.2/options.pptp
create mode 100644 meta-networking/recipes-protocols/pptp-linux/pptp-linux_1.7.2.bb
create mode 100644 meta-networking/recipes-support/netcat/netcat_0.7.1.bb
--
1.7.10.4
next reply other threads:[~2012-12-03 17:58 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-03 17:44 Paul Eggleton [this message]
2012-12-03 17:44 ` [meta-networking][PATCH 01/11] netcat: add from OE-Classic Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 02/11] libnfnetlink: move to meta-networking and update to 1.0.1 Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 03/11] libmnl: add new recipe for version 1.0.3 Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 04/11] libnetfilter-conntrack: add from OE-Classic and update Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 05/11] libnetfilter-cttimeout: add new recipe for version 1.0.0 Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 06/11] libnetfilter-cthelper: " Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 07/11] libnetfilter-queue: add new recipe for version 1.0.2 Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 08/11] conntrack-tools: add from OE-Classic, update and tidy up Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 09/11] ebtables: " Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 10/11] pure-ftpd: add new recipe for 1.0.36 Paul Eggleton
2012-12-03 17:44 ` [meta-networking][PATCH 11/11] pptp-linux: add from OE-Classic, update and tidy up Paul Eggleton
2012-12-04 19:00 ` [meta-networking][PATCH 00/11] More networking recipes Joe MacDonald
2012-12-07 21:22 ` Joe MacDonald
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.1354555874.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