diff options
author | Joe MacDonald <joe.macdonald@windriver.com> | 2012-08-27 00:35:17 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-08-27 14:16:45 +0200 |
commit | 213f18c766af0e7abe0a8e85137214af770456d4 (patch) | |
tree | 57fcf9b01c4d181f26ecfa6403142e651f0a2542 | |
parent | 39efb7357fbea52c2208dbfb2f94f8ef8f7827be (diff) | |
download | meta-openembedded-213f18c766af0e7abe0a8e85137214af770456d4.tar.gz |
meta-networking: add layer
A home for networking-related packages. This includes protocol support,
servers / daemons and utilities.
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
-rw-r--r-- | meta-networking/COPYING.MIT | 17 | ||||
-rw-r--r-- | meta-networking/MAINTAINERS | 31 | ||||
-rw-r--r-- | meta-networking/README | 28 | ||||
-rw-r--r-- | meta-networking/conf/layer.conf | 11 |
4 files changed, 87 insertions, 0 deletions
diff --git a/meta-networking/COPYING.MIT b/meta-networking/COPYING.MIT new file mode 100644 index 000000000..fb950dc69 --- /dev/null +++ b/meta-networking/COPYING.MIT | |||
@@ -0,0 +1,17 @@ | |||
1 | Permission is hereby granted, free of charge, to any person obtaining a copy | ||
2 | of this software and associated documentation files (the "Software"), to deal | ||
3 | in the Software without restriction, including without limitation the rights | ||
4 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
5 | copies of the Software, and to permit persons to whom the Software is | ||
6 | furnished to do so, subject to the following conditions: | ||
7 | |||
8 | The above copyright notice and this permission notice shall be included in | ||
9 | all copies or substantial portions of the Software. | ||
10 | |||
11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
12 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
14 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
15 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
16 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
17 | THE SOFTWARE. | ||
diff --git a/meta-networking/MAINTAINERS b/meta-networking/MAINTAINERS new file mode 100644 index 000000000..393f037d7 --- /dev/null +++ b/meta-networking/MAINTAINERS | |||
@@ -0,0 +1,31 @@ | |||
1 | This file contains a list of maintainers for the meta-networking layer. | ||
2 | |||
3 | Please submit any patches against meta-networking to the OpenEmbedded | ||
4 | development mailing list (openembedded-devel@lists.openembedded.org) with | ||
5 | '[meta-networking]' in the subject. | ||
6 | |||
7 | When sending single patches, please use something like: | ||
8 | |||
9 | git send-email -1 \ | ||
10 | --to openembedded-devel@lists.openembedded.org \ | ||
11 | --subject-prefix=meta-networking][PATCH | ||
12 | |||
13 | You may also contact the maintainers directly. | ||
14 | |||
15 | Descriptions of section entries: | ||
16 | |||
17 | M: Mail patches to: FullName <address@domain> | ||
18 | F: Files and directories with wildcard patterns. | ||
19 | A trailing slash includes all files and subdirectory files. | ||
20 | F: recipes-devtools/ all files in and below recipes-devtools | ||
21 | F: recipes-selinux/* all files in recipes-selinux, but not below | ||
22 | One pattern per line. Multiple F: lines acceptable. | ||
23 | |||
24 | Please keep this list in alphabetical order. | ||
25 | |||
26 | Maintainers List (try to look for most precise areas first) | ||
27 | |||
28 | COMMON | ||
29 | M: Joe MacDonald <joe.macdonald@windriver.com> | ||
30 | F: conf | ||
31 | F: recipes-* | ||
diff --git a/meta-networking/README b/meta-networking/README new file mode 100644 index 000000000..438f4422c --- /dev/null +++ b/meta-networking/README | |||
@@ -0,0 +1,28 @@ | |||
1 | meta-networking | ||
2 | =============== | ||
3 | |||
4 | This layer is intended to be a central point for networking-related | ||
5 | packages and configuration. It should be useful directly on top of | ||
6 | oe-core and compliments meta-openembedded. It should be primarily useful | ||
7 | to the following groups: | ||
8 | |||
9 | - Anyone building a small networking device (eg. a home router / | ||
10 | bridge / switch). | ||
11 | |||
12 | - Anyone wanting to add network services to their device (eg. | ||
13 | anything that might benefit from a small ftp/tftp server) | ||
14 | |||
15 | Dependencies | ||
16 | ------------ | ||
17 | |||
18 | This layer depends on: | ||
19 | |||
20 | URI: git://git.openembedded.org/openembedded-core | ||
21 | branch: master | ||
22 | revision: HEAD | ||
23 | |||
24 | Maintenance | ||
25 | ----------- | ||
26 | |||
27 | Please see the MAINTAINERS file for information on contacting the | ||
28 | maintainers of this layer, as well as instructions for submitting patches. | ||
diff --git a/meta-networking/conf/layer.conf b/meta-networking/conf/layer.conf new file mode 100644 index 000000000..f26a17265 --- /dev/null +++ b/meta-networking/conf/layer.conf | |||
@@ -0,0 +1,11 @@ | |||
1 | # We have a conf and classes directory, add to BBPATH | ||
2 | BBPATH := "${BBPATH}:${LAYERDIR}" | ||
3 | |||
4 | # We have a packages directory, add to BBFILES | ||
5 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \ | ||
6 | ${LAYERDIR}/recipes-*/*/*.bbappend" | ||
7 | |||
8 | BBFILE_COLLECTIONS += "networking" | ||
9 | BBFILE_PATTERN_networking := "^${LAYERDIR}/" | ||
10 | BBFILE_PRIORITY_networking = "5" | ||
11 | |||