summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2014-07-31 11:53:59 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-07-31 15:18:50 -0400
commita876278442bb035f0c55a3edf0742febf9a6d6a9 (patch)
tree0556f61274a4d2c1168717e72a4d899cc88f60d2
parentd6ce6b1c2a3c17f4157717ded2414a1bc4df2b03 (diff)
downloadmeta-cloud-services-a876278442bb035f0c55a3edf0742febf9a6d6a9.tar.gz
cirros: make root home configurable
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb b/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb
index 9ebd2b7..cb58e9d 100644
--- a/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb
+++ b/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb
@@ -14,9 +14,9 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=80
14INHIBIT_PACKAGE_STRIP="1" 14INHIBIT_PACKAGE_STRIP="1"
15 15
16do_install() { 16do_install() {
17 install -d ${D}/root/images 17 install -d ${D}/${ROOT_HOME}/images
18 install -m 755 ${WORKDIR}/${PN}-${PV}-x86_64-disk.img ${D}/root/images 18 install -m 755 ${WORKDIR}/${PN}-${PV}-x86_64-disk.img ${D}/${ROOT_HOME}/images
19} 19}
20 20
21PACKAGES = "cirros-guest-image" 21PACKAGES = "cirros-guest-image"
22FILES_cirros-guest-image = "/root/images/*" 22FILES_cirros-guest-image = "${ROOT_HOME}/images/*"