From c1f86dac48e9af79b153c2f101c36ad78a60cfdf Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 15 Jun 2023 20:21:57 -0700 Subject: layers: Move READMEs to markdown format The READMEs are often viewed from websites markdown format which is much as readable as text and yet friendlier in browsers. Signed-off-by: Khem Raj --- README | 7 ---- README.md | 7 ++++ meta-filesystems/README | 101 --------------------------------------------- meta-filesystems/README.md | 101 +++++++++++++++++++++++++++++++++++++++++++++ meta-gnome/README | 16 ------- meta-gnome/README.md | 16 +++++++ meta-initramfs/README | 35 ---------------- meta-initramfs/README.md | 35 ++++++++++++++++ meta-multimedia/README | 17 -------- meta-multimedia/README.md | 17 ++++++++ meta-networking/README | 40 ------------------ meta-networking/README.md | 40 ++++++++++++++++++ meta-oe/README | 31 -------------- meta-oe/README.md | 31 ++++++++++++++ meta-perl/README | 90 ---------------------------------------- meta-perl/README.md | 90 ++++++++++++++++++++++++++++++++++++++++ meta-python/README | 41 ------------------ meta-python/README.md | 41 ++++++++++++++++++ meta-webserver/README | 66 ----------------------------- meta-webserver/README.md | 66 +++++++++++++++++++++++++++++ meta-xfce/README | 22 ---------- meta-xfce/README.md | 22 ++++++++++ 22 files changed, 466 insertions(+), 466 deletions(-) delete mode 100644 README create mode 100644 README.md delete mode 100644 meta-filesystems/README create mode 100644 meta-filesystems/README.md delete mode 100644 meta-gnome/README create mode 100644 meta-gnome/README.md delete mode 100644 meta-initramfs/README create mode 100644 meta-initramfs/README.md delete mode 100644 meta-multimedia/README create mode 100644 meta-multimedia/README.md delete mode 100644 meta-networking/README create mode 100644 meta-networking/README.md delete mode 100644 meta-oe/README create mode 100644 meta-oe/README.md delete mode 100644 meta-perl/README create mode 100644 meta-perl/README.md delete mode 100644 meta-python/README create mode 100644 meta-python/README.md delete mode 100644 meta-webserver/README create mode 100644 meta-webserver/README.md delete mode 100644 meta-xfce/README create mode 100644 meta-xfce/README.md diff --git a/README b/README deleted file mode 100644 index 7318f09cdb..0000000000 --- a/README +++ /dev/null @@ -1,7 +0,0 @@ -Collection of layers for the OE-core universe - -Main layer maintainer: Khem Raj - -This repository is a collection of layers to suppliment OE-Core -with additional packages, Each layer have designated maintainer -Please see the respective READMEs in the layer subdirectories diff --git a/README.md b/README.md new file mode 100644 index 0000000000..7318f09cdb --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +Collection of layers for the OE-core universe + +Main layer maintainer: Khem Raj + +This repository is a collection of layers to suppliment OE-Core +with additional packages, Each layer have designated maintainer +Please see the respective READMEs in the layer subdirectories diff --git a/meta-filesystems/README b/meta-filesystems/README deleted file mode 100644 index 78a4429ce2..0000000000 --- a/meta-filesystems/README +++ /dev/null @@ -1,101 +0,0 @@ -This README file contains information on the contents of the -filesystems layer. - -Please see the corresponding sections below for details. - - -Dependencies -============ - -This layer depends on: - - URI: git://git.openembedded.org/openembedded-core - layers: meta - branch: master - - URI: git://git.openembedded.org/meta-openembedded - layers: meta-oe - branch: master - -Patches -======= - -Please submit any patches against the filesystems layer to the -OpenEmbedded development mailing list (openembedded-devel@lists.openembedded.org) -with '[meta-filesystems]' in the subject. - -Layer maintainer: Khem Raj - -When sending single patches, please use something like: - - git send-email -1 -M \ - --to openembedded-devel@lists.openembedded.org \ - --subject-prefix='meta-filesystems][PATCH' - - -Table of Contents -================= - - I. Adding the filesystems layer to your build - II. Misc - - -I. Adding the filesystems layer to your build -================================================= - -In order to use this layer, you need to make the build system aware of -it. - -Assuming the filesystems layer exists at the top-level of your -yocto build tree, you can add it to the build system by adding the -location of the filesystems layer to bblayers.conf, along with any -other layers needed. e.g.: - - BBLAYERS ?= " \ - /path/to/yocto/meta \ - /path/to/yocto/meta-oe \ - /path/to/yocto/meta-filesystems \ - " - - -II. Misc -======== - - --- physfs --- - A library to provide abstract access to various archives - - --- fuse --- - Filesystem in Userspace (FUSE) is a simple interface for userspace programs - to export a virtual filesystem to the Linux kernel. - - --- ifuse --- - A fuse filesystem to access the contents of an iPhone or iPod Touch - - --- sshfs-fuse --- - A filesystem client based on the SSH File Transfer Protocol - - --- owfs --- - An easy way to use the 1-Wire file system - - --- ntfs-3g-ntfsprogs --- - The ntfs-3g is a freely available read/write NTFS driver for Linux and - ntfsprogs includes utilities for doing all required tasks to NTFS partitions. - - --- cramfs --- - Builds cramfs filesystems for embedded systems - - --- smbnetfs --- - SMBNetFS is a Linux/FreeBSD filesystem that allow you to use samba/microsoft - network in the same manner as the network neighborhood in Microsoft Windows. - - --- fuse-exfat --- - A read and write exFAT driver for FUSE - - --- exfat-utils --- - Utilities to create, check, label and dump exFAT filesystem - - --- f2fs-tools --- - Tools needed for creating and managing f2fs partitions - - --- xfsprogs --- - It provides XFS filesystem utilities. diff --git a/meta-filesystems/README.md b/meta-filesystems/README.md new file mode 100644 index 0000000000..78a4429ce2 --- /dev/null +++ b/meta-filesystems/README.md @@ -0,0 +1,101 @@ +This README file contains information on the contents of the +filesystems layer. + +Please see the corresponding sections below for details. + + +Dependencies +============ + +This layer depends on: + + URI: git://git.openembedded.org/openembedded-core + layers: meta + branch: master + + URI: git://git.openembedded.org/meta-openembedded + layers: meta-oe + branch: master + +Patches +======= + +Please submit any patches against the filesystems layer to the +OpenEmbedded development mailing list (openembedded-devel@lists.openembedded.org) +with '[meta-filesystems]' in the subject. + +Layer maintainer: Khem Raj + +When sending single patches, please use something like: + + git send-email -1 -M \ + --to openembedded-devel@lists.openembedded.org \ + --subject-prefix='meta-filesystems][PATCH' + + +Table of Contents +================= + + I. Adding the filesystems layer to your build + II. Misc + + +I. Adding the filesystems layer to your build +================================================= + +In order to use this layer, you need to make the build system aware of +it. + +Assuming the filesystems layer exists at the top-level of your +yocto build tree, you can add it to the build system by adding the +location of the filesystems layer to bblayers.conf, along with any +other layers needed. e.g.: + + BBLAYERS ?= " \ + /path/to/yocto/meta \ + /path/to/yocto/meta-oe \ + /path/to/yocto/meta-filesystems \ + " + + +II. Misc +======== + + --- physfs --- + A library to provide abstract access to various archives + + --- fuse --- + Filesystem in Userspace (FUSE) is a simple interface for userspace programs + to export a virtual filesystem to the Linux kernel. + + --- ifuse --- + A fuse filesystem to access the contents of an iPhone or iPod Touch + + --- sshfs-fuse --- + A filesystem client based on the SSH File Transfer Protocol + + --- owfs --- + An easy way to use the 1-Wire file system + + --- ntfs-3g-ntfsprogs --- + The ntfs-3g is a freely available read/write NTFS driver for Linux and + ntfsprogs includes utilities for doing all required tasks to NTFS partitions. + + --- cramfs --- + Builds cramfs filesystems for embedded systems + + --- smbnetfs --- + SMBNetFS is a Linux/FreeBSD filesystem that allow you to use samba/microsoft + network in the same manner as the network neighborhood in Microsoft Windows. + + --- fuse-exfat --- + A read and write exFAT driver for FUSE + + --- exfat-utils --- + Utilities to create, check, label and dump exFAT filesystem + + --- f2fs-tools --- + Tools needed for creating and managing f2fs partitions + + --- xfsprogs --- + It provides XFS filesystem utilities. diff --git a/meta-gnome/README b/meta-gnome/README deleted file mode 100644 index fbb0d72476..0000000000 --- a/meta-gnome/README +++ /dev/null @@ -1,16 +0,0 @@ -Dependencies ------------- -This layer depends on: - -URI: git://git.openembedded.org/openembedded-core -branch: master - -URI: git://git.openembedded.org/meta-openembedded -branch: master - -Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-gnome]' in the subject' - -When sending single patches, please using something like: -git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-gnome][PATCH' - -Layer maintainer: Andreas Müller diff --git a/meta-gnome/README.md b/meta-gnome/README.md new file mode 100644 index 0000000000..fbb0d72476 --- /dev/null +++ b/meta-gnome/README.md @@ -0,0 +1,16 @@ +Dependencies +------------ +This layer depends on: + +URI: git://git.openembedded.org/openembedded-core +branch: master + +URI: git://git.openembedded.org/meta-openembedded +branch: master + +Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-gnome]' in the subject' + +When sending single patches, please using something like: +git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-gnome][PATCH' + +Layer maintainer: Andreas Müller diff --git a/meta-initramfs/README b/meta-initramfs/README deleted file mode 100644 index 119293a741..0000000000 --- a/meta-initramfs/README +++ /dev/null @@ -1,35 +0,0 @@ -meta-initramfs -============== - -This layer contains the metadata necessary to build the klibc library and -utilities (shared and static) plus other tools useful for the creation of -small-sized initramfs. - - -Dependencies ------------- - -This layer depends on: - -URI: git://git.openembedded.org/meta-openembedded -branch: master - - -Maintenance ------------ - -Send patches / pull requests to openembedded-devel@lists.openembedded.org -with '[meta-initramfs]' in the subject. - -When sending single patches, please using something like: -git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-initramfs][PATCH' - -Interm layer maintainer: Khem Raj - - -License -------- - -All metadata is MIT licensed unless otherwise stated. Source code included -in tree for individual recipes is under the LICENSE stated in each recipe -(.bb file) unless otherwise stated. diff --git a/meta-initramfs/README.md b/meta-initramfs/README.md new file mode 100644 index 0000000000..119293a741 --- /dev/null +++ b/meta-initramfs/README.md @@ -0,0 +1,35 @@ +meta-initramfs +============== + +This layer contains the metadata necessary to build the klibc library and +utilities (shared and static) plus other tools useful for the creation of +small-sized initramfs. + + +Dependencies +------------ + +This layer depends on: + +URI: git://git.openembedded.org/meta-openembedded +branch: master + + +Maintenance +----------- + +Send patches / pull requests to openembedded-devel@lists.openembedded.org +with '[meta-initramfs]' in the subject. + +When sending single patches, please using something like: +git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-initramfs][PATCH' + +Interm layer maintainer: Khem Raj + + +License +------- + +All metadata is MIT licensed unless otherwise stated. Source code included +in tree for individual recipes is under the LICENSE stated in each recipe +(.bb file) unless otherwise stated. diff --git a/meta-multimedia/README b/meta-multimedia/README deleted file mode 100644 index 235c34331b..0000000000 --- a/meta-multimedia/README +++ /dev/null @@ -1,17 +0,0 @@ -This layer depends on: - -URI: git://git.openembedded.org/openembedded-core -branch: master - -URI: git://git.openembedded.org/meta-openembedded -layers: meta-oe -branch: master - -Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-multimedia]' in the subject - -When sending single patches, please use something like: -git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-multimedia][PATCH' - -You are encouraged to fork the mirror on github https://github.com/openembedded/meta-openembedded to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like GitLab, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch ' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI. - -Layer maintainer: Andreas Müller diff --git a/meta-multimedia/README.md b/meta-multimedia/README.md new file mode 100644 index 0000000000..235c34331b --- /dev/null +++ b/meta-multimedia/README.md @@ -0,0 +1,17 @@ +This layer depends on: + +URI: git://git.openembedded.org/openembedded-core +branch: master + +URI: git://git.openembedded.org/meta-openembedded +layers: meta-oe +branch: master + +Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-multimedia]' in the subject + +When sending single patches, please use something like: +git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-multimedia][PATCH' + +You are encouraged to fork the mirror on github https://github.com/openembedded/meta-openembedded to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like GitLab, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch ' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI. + +Layer maintainer: Andreas Müller diff --git a/meta-networking/README b/meta-networking/README deleted file mode 100644 index 34e11a96dd..0000000000 --- a/meta-networking/README +++ /dev/null @@ -1,40 +0,0 @@ -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) - -Dependencies ------------- - -This layer depends on: - -URI: git://git.openembedded.org/openembedded-core -branch: master - -For some recipes, the meta-oe layer is required: - -URI: git://git.openembedded.org/meta-openembedded -subdirectory: meta-oe -branch: master - -URI: git://git.openembedded.org/meta-openembedded -subdirectory: meta-python -branch: master - -Maintenance ------------ -Layer maintainers: Khem Raj - Armin Kuster (recipes-netkit) - - -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/README.md b/meta-networking/README.md new file mode 100644 index 0000000000..34e11a96dd --- /dev/null +++ b/meta-networking/README.md @@ -0,0 +1,40 @@ +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) + +Dependencies +------------ + +This layer depends on: + +URI: git://git.openembedded.org/openembedded-core +branch: master + +For some recipes, the meta-oe layer is required: + +URI: git://git.openembedded.org/meta-openembedded +subdirectory: meta-oe +branch: master + +URI: git://git.openembedded.org/meta-openembedded +subdirectory: meta-python +branch: master + +Maintenance +----------- +Layer maintainers: Khem Raj + Armin Kuster (recipes-netkit) + + +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-oe/README b/meta-oe/README deleted file mode 100644 index 676a2c8925..0000000000 --- a/meta-oe/README +++ /dev/null @@ -1,31 +0,0 @@ -meta-oe -======= - -This layer depends on: - -URI: git://github.com/openembedded/openembedded-core.git -branch: master - -luajit recipe requires host compiler to be able to generate 32bit code when target is 32bit -e.g. arm, so ensure that $CC -m32 is functional on build host, if building this recipe, needed -packages to fullfit this might have different names on different host distributions -e.g. on archlinux based distributions install prerequisites like below - -pacman -S lib32-gcc-libs lib32-glibc - -Ubuntu -sudo apt-get install gcc-multilib linux-libc-dev:i386 - -Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-oe]' in the subject' - -When sending single patches, please use something like: -'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix="meta-oe][PATCH"' - -You are encouraged to fork the mirror on GitHub https://github.com/openembedded/meta-openembedded -to share your patches, this is preferred for patch sets consisting of more than one patch. - -Other services like GitLab, repo.or.cz or self-hosted setups are of course accepted as well, -'git fetch ' works the same on all of them. We recommend GitHub because it is free, easy -to use, has been proven to be reliable and has a really good web GUI. - -layer maintainer: Khem Raj diff --git a/meta-oe/README.md b/meta-oe/README.md new file mode 100644 index 0000000000..676a2c8925 --- /dev/null +++ b/meta-oe/README.md @@ -0,0 +1,31 @@ +meta-oe +======= + +This layer depends on: + +URI: git://github.com/openembedded/openembedded-core.git +branch: master + +luajit recipe requires host compiler to be able to generate 32bit code when target is 32bit +e.g. arm, so ensure that $CC -m32 is functional on build host, if building this recipe, needed +packages to fullfit this might have different names on different host distributions +e.g. on archlinux based distributions install prerequisites like below + +pacman -S lib32-gcc-libs lib32-glibc + +Ubuntu +sudo apt-get install gcc-multilib linux-libc-dev:i386 + +Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-oe]' in the subject' + +When sending single patches, please use something like: +'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix="meta-oe][PATCH"' + +You are encouraged to fork the mirror on GitHub https://github.com/openembedded/meta-openembedded +to share your patches, this is preferred for patch sets consisting of more than one patch. + +Other services like GitLab, repo.or.cz or self-hosted setups are of course accepted as well, +'git fetch ' works the same on all of them. We recommend GitHub because it is free, easy +to use, has been proven to be reliable and has a really good web GUI. + +layer maintainer: Khem Raj diff --git a/meta-perl/README b/meta-perl/README deleted file mode 100644 index 13014b0ff3..0000000000 --- a/meta-perl/README +++ /dev/null @@ -1,90 +0,0 @@ -meta-perl -========= -This layer provides commonly-used perl related recipes such as perl libraries -in the Comprehensive Perl Archive Network. - -Contents and Help ------------------ - -In this section the contents of the layer is listed, along with a short -help for each package. - - -- libdbi-perl -- - The DBI is a database access module for the Perl programming language. - It defines a set of methods, variables, and conventions that provide - a consistent database interface, independent of the actual database - being used. - |<- Scope of DBI ->| - .-. .--------------. .-------------. - .-------. | |---| XYZ Driver |---| XYZ Engine | - | Perl | | | `--------------' `-------------' - | script| |A| |D| .--------------. .-------------. - | using |--|P|--|B|---|Oracle Driver |---|Oracle Engine| - | DBI | |I| |I| `--------------' `-------------' - | API | | |... - |methods| | |... Other drivers - `-------' | |... - `-' - - -- libdbd-sqlite-perl -- - DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire - thing in the distribution. So in order to get a fast transaction capable - RDBMS working for your perl project you simply have to install this - module, and nothing else. - - usage: there is a test case to show you how it works - - 1) vim local.conf: - ... - IMAGE_INSTALL:append = " libdbd-sqlite-perl" - PERL_DBM_TEST = "1" - ... - 2) build core-image-sato and boot the target - - 3) run "sqlite-perl-test.pl" on target. This script includes five - operations create/insert/update/delete/select to do with a table. - - More information can be found in the recipe's git log. - -Dependencies ------------- - -This layer depends on: - - URI: git://git.openembedded.org/openembedded-core - branch: master - -Adding the meta-perl layer to your build ---------------------------------------- - -In order to use this layer, you need to make the build system aware of -it. - -Assuming the meta-perl layer exists at the top-level of your -yocto build tree, you can add it to the build system by adding the -location of the meta-perl layer to bblayers.conf, along with any -other layers needed. e.g.: - - BBLAYERS ?= " \ - /path/to/oe-core/meta \ - /path/to/layer/meta-perl \ - -Maintenance ------------ - -Send patches / pull requests to openembedded-devel@lists.openembedded.org with -'[meta-perl]' in the subject. - -When sending single patches, please using something like: -git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-perl][PATCH' - -Layer maintainers: - Hongxu Jia - Tim "moto-timo" Orling - -License -------- - -All metadata is MIT licensed unless otherwise stated. Source code included -in tree for individual recipes is under the LICENSE stated in each recipe -(.bb file) unless otherwise stated. diff --git a/meta-perl/README.md b/meta-perl/README.md new file mode 100644 index 0000000000..13014b0ff3 --- /dev/null +++ b/meta-perl/README.md @@ -0,0 +1,90 @@ +meta-perl +========= +This layer provides commonly-used perl related recipes such as perl libraries +in the Comprehensive Perl Archive Network. + +Contents and Help +----------------- + +In this section the contents of the layer is listed, along with a short +help for each package. + + -- libdbi-perl -- + The DBI is a database access module for the Perl programming language. + It defines a set of methods, variables, and conventions that provide + a consistent database interface, independent of the actual database + being used. + |<- Scope of DBI ->| + .-. .--------------. .-------------. + .-------. | |---| XYZ Driver |---| XYZ Engine | + | Perl | | | `--------------' `-------------' + | script| |A| |D| .--------------. .-------------. + | using |--|P|--|B|---|Oracle Driver |---|Oracle Engine| + | DBI | |I| |I| `--------------' `-------------' + | API | | |... + |methods| | |... Other drivers + `-------' | |... + `-' + + -- libdbd-sqlite-perl -- + DBD::SQLite is a Perl DBI driver for SQLite, that includes the entire + thing in the distribution. So in order to get a fast transaction capable + RDBMS working for your perl project you simply have to install this + module, and nothing else. + + usage: there is a test case to show you how it works + + 1) vim local.conf: + ... + IMAGE_INSTALL:append = " libdbd-sqlite-perl" + PERL_DBM_TEST = "1" + ... + 2) build core-image-sato and boot the target + + 3) run "sqlite-perl-test.pl" on target. This script includes five + operations create/insert/update/delete/select to do with a table. + + More information can be found in the recipe's git log. + +Dependencies +------------ + +This layer depends on: + + URI: git://git.openembedded.org/openembedded-core + branch: master + +Adding the meta-perl layer to your build +--------------------------------------- + +In order to use this layer, you need to make the build system aware of +it. + +Assuming the meta-perl layer exists at the top-level of your +yocto build tree, you can add it to the build system by adding the +location of the meta-perl layer to bblayers.conf, along with any +other layers needed. e.g.: + + BBLAYERS ?= " \ + /path/to/oe-core/meta \ + /path/to/layer/meta-perl \ + +Maintenance +----------- + +Send patches / pull requests to openembedded-devel@lists.openembedded.org with +'[meta-perl]' in the subject. + +When sending single patches, please using something like: +git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-perl][PATCH' + +Layer maintainers: + Hongxu Jia + Tim "moto-timo" Orling + +License +------- + +All metadata is MIT licensed unless otherwise stated. Source code included +in tree for individual recipes is under the LICENSE stated in each recipe +(.bb file) unless otherwise stated. diff --git a/meta-python/README b/meta-python/README deleted file mode 100644 index 36c193957c..0000000000 --- a/meta-python/README +++ /dev/null @@ -1,41 +0,0 @@ -meta-python -================================ - -Introduction -------------------------- - -This layer is intended to be the home of python modules for OpenEmbedded. - -Dependencies -------------------------- - -The meta-python layer depends on: - - URI: git://git.openembedded.org/openembedded-core - layers: meta - branch: master - - URI: git://git.openembedded.org/meta-openembedded - layers: meta-oe - branch: master - -Contributing -------------------------- - -The meta-openembedded mailinglist -(openembedded-devel@lists.openembedded.org) is used for questions, -comments and patch review. It is subscriber only, so please register -before posting. - -Send pull requests to openembedded-devel@lists.openembedded.org with -'[meta-python]' in the subject. - -When sending single patches, please use something like: -git send-email -M -1 --to=openembedded-devel@lists.openembedded.org --subject-prefix='meta-python][PATCH' - -Maintenance -------------------------- - -Layer maintainers: - Tim "moto-timo" Orling - Derek Straka diff --git a/meta-python/README.md b/meta-python/README.md new file mode 100644 index 0000000000..36c193957c --- /dev/null +++ b/meta-python/README.md @@ -0,0 +1,41 @@ +meta-python +================================ + +Introduction +------------------------- + +This layer is intended to be the home of python modules for OpenEmbedded. + +Dependencies +------------------------- + +The meta-python layer depends on: + + URI: git://git.openembedded.org/openembedded-core + layers: meta + branch: master + + URI: git://git.openembedded.org/meta-openembedded + layers: meta-oe + branch: master + +Contributing +------------------------- + +The meta-openembedded mailinglist +(openembedded-devel@lists.openembedded.org) is used for questions, +comments and patch review. It is subscriber only, so please register +before posting. + +Send pull requests to openembedded-devel@lists.openembedded.org with +'[meta-python]' in the subject. + +When sending single patches, please use something like: +git send-email -M -1 --to=openembedded-devel@lists.openembedded.org --subject-prefix='meta-python][PATCH' + +Maintenance +------------------------- + +Layer maintainers: + Tim "moto-timo" Orling + Derek Straka diff --git a/meta-webserver/README b/meta-webserver/README deleted file mode 100644 index d23f6cc65c..0000000000 --- a/meta-webserver/README +++ /dev/null @@ -1,66 +0,0 @@ -meta-webserver -============== - -This layer provides support for building web servers, web-based -applications and related software. - - - -Dependencies ------------- - -This layer depends on: - -URI: git://git.openembedded.org/openembedded-core -subdirectory: meta -branch: master - -For some recipes, the meta-oe layer is required: - -URI: git://git.openembedded.org/meta-openembedded -subdirectory: meta-oe -branch: master - - - -Layout ------- - -recipes-httpd/ Web servers -recipes-php/ PHP applications -recipes-support/ Miscellaneous support recipes -recipes-webadmin/ Standalone web administration interfaces - - -Notes ------ - -* This layer used to provide a modphp recipe that built mod_php, but - this is now built as part of the php recipe in meta-oe. However, since - apache2 is required to build mod_php, and apache2 recipe is in this - layer and recipes in meta-oe can't depend on it, mod_php is not built - by default. If you do wish to use mod_php, you need to add "apache2" - to the PACKAGECONFIG value for the php recipe in order to enable it. - See here for info on how to do that: - - http://www.yoctoproject.org/docs/current/ref-manual/ref-manual.html#var-PACKAGECONFIG - - -Maintenance ------------ - -Send patches / pull requests to openembedded-devel@lists.openembedded.org -with '[meta-webserver]' in the subject. - -Layer maintainer: Derek Straka - - -License -------- - -All metadata is MIT licensed unless otherwise stated. Source code included -in tree for individual recipes is under the LICENSE stated in each recipe -(.bb file) unless otherwise stated. - -This README document is Copyright (C) 2012 Intel Corporation. - diff --git a/meta-webserver/README.md b/meta-webserver/README.md new file mode 100644 index 0000000000..d23f6cc65c --- /dev/null +++ b/meta-webserver/README.md @@ -0,0 +1,66 @@ +meta-webserver +============== + +This layer provides support for building web servers, web-based +applications and related software. + + + +Dependencies +------------ + +This layer depends on: + +URI: git://git.openembedded.org/openembedded-core +subdirectory: meta +branch: master + +For some recipes, the meta-oe layer is required: + +URI: git://git.openembedded.org/meta-openembedded +subdirectory: meta-oe +branch: master + + + +Layout +------ + +recipes-httpd/ Web servers +recipes-php/ PHP applications +recipes-support/ Miscellaneous support recipes +recipes-webadmin/ Standalone web administration interfaces + + +Notes +----- + +* This layer used to provide a modphp recipe that built mod_php, but + this is now built as part of the php recipe in meta-oe. However, since + apache2 is required to build mod_php, and apache2 recipe is in this + layer and recipes in meta-oe can't depend on it, mod_php is not built + by default. If you do wish to use mod_php, you need to add "apache2" + to the PACKAGECONFIG value for the php recipe in order to enable it. + See here for info on how to do that: + + http://www.yoctoproject.org/docs/current/ref-manual/ref-manual.html#var-PACKAGECONFIG + + +Maintenance +----------- + +Send patches / pull requests to openembedded-devel@lists.openembedded.org +with '[meta-webserver]' in the subject. + +Layer maintainer: Derek Straka + + +License +------- + +All metadata is MIT licensed unless otherwise stated. Source code included +in tree for individual recipes is under the LICENSE stated in each recipe +(.bb file) unless otherwise stated. + +This README document is Copyright (C) 2012 Intel Corporation. + diff --git a/meta-xfce/README b/meta-xfce/README deleted file mode 100644 index 3d6158628f..0000000000 --- a/meta-xfce/README +++ /dev/null @@ -1,22 +0,0 @@ -This layer depends on: - -URI: git://git.openembedded.org/openembedded-core -branch: master - -URI: git://git.openembedded.org/meta-openembedded -branch: master - -meta-xfce depends on meta-oe, meta-gnome and meta-multimedia in this repository. - -To avoid dependencies on meta-multimedia you need to mask recipes by adding -this to local.conf: - -BBMASK = "meta-xfce/recipes-multimedia" - -Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-xfce]' in the subject' - -When sending single patches, please using something like: -git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-xfce][PATCH' - -Layer maintainer: Kai Kang -Layer maintainer: Andreas Müller diff --git a/meta-xfce/README.md b/meta-xfce/README.md new file mode 100644 index 0000000000..3d6158628f --- /dev/null +++ b/meta-xfce/README.md @@ -0,0 +1,22 @@ +This layer depends on: + +URI: git://git.openembedded.org/openembedded-core +branch: master + +URI: git://git.openembedded.org/meta-openembedded +branch: master + +meta-xfce depends on meta-oe, meta-gnome and meta-multimedia in this repository. + +To avoid dependencies on meta-multimedia you need to mask recipes by adding +this to local.conf: + +BBMASK = "meta-xfce/recipes-multimedia" + +Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-xfce]' in the subject' + +When sending single patches, please using something like: +git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix='meta-xfce][PATCH' + +Layer maintainer: Kai Kang +Layer maintainer: Andreas Müller -- cgit v1.2.3-54-g00ecf