* [meta-oe][PATCH] meta-networking: add layer
@ 2012-08-24 12:53 Joe MacDonald
2012-08-24 15:30 ` Koen Kooi
0 siblings, 1 reply; 3+ messages in thread
From: Joe MacDonald @ 2012-08-24 12:53 UTC (permalink / raw)
To: openembedded-devel
A home for networking-related packages. This includes protocol support,
servers / daemons and utilities.
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
---
meta-networking/COPYING.MIT | 17 +++++++++++++
meta-networking/MAINTAINERS | 31 ++++++++++++++++++++++++
meta-networking/README | 16 ++++++++++++
meta-networking/conf/distro/oe-networking.conf | 2 ++
meta-networking/conf/distro/poky-networking.conf | 4 +++
meta-networking/conf/layer.conf | 11 +++++++++
6 files changed, 81 insertions(+)
create mode 100644 meta-networking/COPYING.MIT
create mode 100644 meta-networking/MAINTAINERS
create mode 100644 meta-networking/README
create mode 100644 meta-networking/conf/distro/oe-networking.conf
create mode 100644 meta-networking/conf/distro/poky-networking.conf
create mode 100644 meta-networking/conf/layer.conf
diff --git a/meta-networking/COPYING.MIT b/meta-networking/COPYING.MIT
new file mode 100644
index 0000000..fb950dc
--- /dev/null
+++ b/meta-networking/COPYING.MIT
@@ -0,0 +1,17 @@
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/meta-networking/MAINTAINERS b/meta-networking/MAINTAINERS
new file mode 100644
index 0000000..5e825f0
--- /dev/null
+++ b/meta-networking/MAINTAINERS
@@ -0,0 +1,31 @@
+This file contains a list of maintainers for the meta-networking layer.
+
+Please submit any patches against meta-networking to the OpenEmbedded
+development mailing list (openembedded-devel@lists.openembedded.org) with
+'[meta-networking]' in the subject.
+
+When sending single patches, please use something like:
+
+ git send-email -1 \
+ --to openembedded-devel@lists.openembedded.org \
+ --subject-prefix=meta-networking][PATCH
+
+You may also contact the maintainers directly.
+
+Descriptions of section entries:
+
+ M: Mail patches to: FullName <address@domain>
+ F: Files and directories with wildcard patterns.
+ A trailing slash includes all files and subdirectory files.
+ F: recipes-devtools/ all files in and below meta-devtools
+ F: recipes-selinux/* all files in meta-selinux, but not below
+ One pattern per line. Multiple F: lines acceptable.
+
+Please keep this list in alphabetical order.
+
+Maintainers List (try to look for most precise areas first)
+
+COMMON
+M: Joe MacDonald <joe.macdonald@windriver.com>
+F: conf
+F: recipes-*
diff --git a/meta-networking/README b/meta-networking/README
new file mode 100644
index 0000000..3ac7269
--- /dev/null
+++ b/meta-networking/README
@@ -0,0 +1,16 @@
+meta-networking
+===============
+
+This layer is intended to be a central point for networking-related
+packages and configuration. It should be useful directly on top of
+oe-core and compliments meta-openembedded. It should be primarily useful
+to the following groups:
+
+ - Anyone building a small networking device (eg. a home router /
+ bridge / switch).
+
+ - Anyone wanting to add network services to their device (eg.
+ anything that might benefit from a small ftp/tftp server)
+
+Please see the MAINTAINERS file for information on contacting the
+maintainers of this layer, as well as instructions for submitting patches.
diff --git a/meta-networking/conf/distro/oe-networking.conf b/meta-networking/conf/distro/oe-networking.conf
new file mode 100644
index 0000000..af4a3cb
--- /dev/null
+++ b/meta-networking/conf/distro/oe-networking.conf
@@ -0,0 +1,2 @@
+DISTRO = "oe-networking"
+DISTROOVERRIDES .= ":networking"
diff --git a/meta-networking/conf/distro/poky-networking.conf b/meta-networking/conf/distro/poky-networking.conf
new file mode 100644
index 0000000..150f399
--- /dev/null
+++ b/meta-networking/conf/distro/poky-networking.conf
@@ -0,0 +1,4 @@
+require conf/distro/poky.conf
+
+DISTRO = "poky-networking"
+DISTROOVERRIDES = "poky:networking"
diff --git a/meta-networking/conf/layer.conf b/meta-networking/conf/layer.conf
new file mode 100644
index 0000000..f26a172
--- /dev/null
+++ b/meta-networking/conf/layer.conf
@@ -0,0 +1,11 @@
+# We have a conf and classes directory, add to BBPATH
+BBPATH := "${BBPATH}:${LAYERDIR}"
+
+# We have a packages directory, add to BBFILES
+BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
+ ${LAYERDIR}/recipes-*/*/*.bbappend"
+
+BBFILE_COLLECTIONS += "networking"
+BBFILE_PATTERN_networking := "^${LAYERDIR}/"
+BBFILE_PRIORITY_networking = "5"
+
--
1.7.11.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [meta-oe][PATCH] meta-networking: add layer
2012-08-24 12:53 [meta-oe][PATCH] meta-networking: add layer Joe MacDonald
@ 2012-08-24 15:30 ` Koen Kooi
2012-08-24 18:11 ` Joe MacDonald
0 siblings, 1 reply; 3+ messages in thread
From: Koen Kooi @ 2012-08-24 15:30 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 24-08-12 14:53, Joe MacDonald schreef:
> A home for networking-related packages. This includes protocol support,
> servers / daemons and utilities.
>
> Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com> ---
> meta-networking/COPYING.MIT | 17 +++++++++++++
> meta-networking/MAINTAINERS | 31
> ++++++++++++++++++++++++ meta-networking/README
> | 16 ++++++++++++ meta-networking/conf/distro/oe-networking.conf | 2
> ++ meta-networking/conf/distro/poky-networking.conf | 4 +++
Drop the distro stuff, those don't belong in a meta-oe sublayer
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org
iD8DBQFQN534MkyGM64RGpERAhTqAJ9bBbe3PPvdxY8vNUbI9vMVOybW8ACgrgXK
No2VBmX+kP3EyBuxhBiI2d8=
=eAFB
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-oe][PATCH] meta-networking: add layer
2012-08-24 15:30 ` Koen Kooi
@ 2012-08-24 18:11 ` Joe MacDonald
0 siblings, 0 replies; 3+ messages in thread
From: Joe MacDonald @ 2012-08-24 18:11 UTC (permalink / raw)
To: openembedded-devel
[Re: [oe] [meta-oe][PATCH] meta-networking: add layer] On 12.08.24 (Fri 17:30) Koen Kooi wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Op 24-08-12 14:53, Joe MacDonald schreef:
> > A home for networking-related packages. This includes protocol support,
> > servers / daemons and utilities.
> >
> > Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com> ---
> > meta-networking/COPYING.MIT | 17 +++++++++++++
> > meta-networking/MAINTAINERS | 31
> > ++++++++++++++++++++++++ meta-networking/README
> > | 16 ++++++++++++ meta-networking/conf/distro/oe-networking.conf | 2
> > ++ meta-networking/conf/distro/poky-networking.conf | 4 +++
>
> Drop the distro stuff, those don't belong in a meta-oe sublayer
Right, I should've caught that. Sorry.
Updated patch enroute.
-J.
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
> Comment: GPGTools - http://gpgtools.org
>
> iD8DBQFQN534MkyGM64RGpERAhTqAJ9bBbe3PPvdxY8vNUbI9vMVOybW8ACgrgXK
> No2VBmX+kP3EyBuxhBiI2d8=
> =eAFB
> -----END PGP SIGNATURE-----
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
--
Joe MacDonald, Sr. Member of Technical Staff, Linux Products Group, Wind River
direct 613.270.5750 mobile 613.291.7421 fax 613.592.2283
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-08-27 19:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-24 12:53 [meta-oe][PATCH] meta-networking: add layer Joe MacDonald
2012-08-24 15:30 ` Koen Kooi
2012-08-24 18:11 ` Joe MacDonald
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox