diff options
4 files changed, 60 insertions, 0 deletions
diff --git a/meta-openstack-compute-deploy/README b/meta-openstack-compute-deploy/README new file mode 100644 index 0000000..12c2bae --- /dev/null +++ b/meta-openstack-compute-deploy/README | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | meta-openstack-compute-deploy | ||
| 2 | ============================= | ||
| 3 | |||
| 4 | This layer provides support configuring and deploying the recipes to create a | ||
| 5 | compute node. | ||
| 6 | |||
| 7 | Dependencies | ||
| 8 | ------------ | ||
| 9 | |||
| 10 | This layer depends on: | ||
| 11 | |||
| 12 | URI: git://github.com/openembedded/oe-core.git | ||
| 13 | branch: master | ||
| 14 | revision: HEAD | ||
| 15 | prio: default | ||
| 16 | |||
| 17 | URI: git://github.com/openembedded/meta-oe.git | ||
| 18 | patches: 0001-python-sqlalchemy-update-to-0.7.9.patch | ||
| 19 | revision: HEAD | ||
| 20 | layers: meta-oe | ||
| 21 | meta-networking | ||
| 22 | meta-ruby | ||
| 23 | |||
| 24 | URI: git://git.yoctoproject.org/meta-virtualization | ||
| 25 | branch: master | ||
| 26 | revision: head | ||
| 27 | |||
| 28 | meta-openstack | ||
| 29 | branch: master | ||
| 30 | revision: head | ||
| 31 | |||
| 32 | Maintenance | ||
| 33 | ----------- | ||
| 34 | |||
| 35 | Send pull requests, patches, comments or questions to meta-virtualization@yoctoproject.org | ||
| 36 | |||
| 37 | When sending single patches, please using something like: | ||
| 38 | 'git send-email -1 --to meta-virtualization@yoctoproject.org --subject-prefix=meta-virtualization][PATCH' | ||
| 39 | |||
| 40 | Maintainers: Bruce Ashfield <bruce.ashfield@windriver.com> | ||
| 41 | |||
| 42 | License | ||
| 43 | ------- | ||
| 44 | |||
| 45 | All metadata is MIT licensed unless otherwise stated. Source code included | ||
| 46 | in tree for individual recipes is under the LICENSE stated in each recipe | ||
| 47 | (.bb file) unless otherwise stated. | ||
| 48 | |||
diff --git a/meta-openstack-compute-deploy/classes/compute.bbclass b/meta-openstack-compute-deploy/classes/compute.bbclass new file mode 100644 index 0000000..46749b1 --- /dev/null +++ b/meta-openstack-compute-deploy/classes/compute.bbclass | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | CONTROLLER_IP ?= "192.168.7.2" | ||
| 2 | CONTROLLER_HOST ?= "192.168.7.2" | ||
diff --git a/meta-openstack-compute-deploy/conf/layer.conf b/meta-openstack-compute-deploy/conf/layer.conf new file mode 100644 index 0000000..44a035b --- /dev/null +++ b/meta-openstack-compute-deploy/conf/layer.conf | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | # We have a conf and classes directory, append to BBPATH | ||
| 2 | BBPATH .= ":${LAYERDIR}" | ||
| 3 | |||
| 4 | # We have a recipes directory, add to BBFILES | ||
| 5 | BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend" | ||
| 6 | |||
| 7 | BBFILE_COLLECTIONS += "openstack-compute-deploy-layer" | ||
| 8 | BBFILE_PATTERN_openstack-compute-deploy-layer := "^${LAYERDIR}/" | ||
| 9 | BBFILE_PRIORITY_openstack-compute-deploy-layer = "6" | ||
diff --git a/meta-openstack-compute-deploy/recipes-devtools/python/python-quantum_2013.1.3.bbappend b/meta-openstack-compute-deploy/recipes-devtools/python/python-quantum_2013.1.3.bbappend new file mode 100644 index 0000000..1c10253 --- /dev/null +++ b/meta-openstack-compute-deploy/recipes-devtools/python/python-quantum_2013.1.3.bbappend | |||
| @@ -0,0 +1 @@ | |||
| inherit compute | |||
