diff options
author | 2014-07-31 11:53:59 -0400 | |
---|---|---|
committer | 2014-07-31 15:18:50 -0400 | |
commit | a876278442bb035f0c55a3edf0742febf9a6d6a9 (patch) | |
tree | 0556f61274a4d2c1168717e72a4d899cc88f60d2 /meta-openstack | |
parent | d6ce6b1c2a3c17f4157717ded2414a1bc4df2b03 (diff) | |
download | meta-cloud-services-a876278442bb035f0c55a3edf0742febf9a6d6a9.tar.gz meta-cloud-services-a876278442bb035f0c55a3edf0742febf9a6d6a9.tar.bz2 meta-cloud-services-a876278442bb035f0c55a3edf0742febf9a6d6a9.zip |
cirros: make root home configurable
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack')
-rw-r--r-- | meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb | 6 |
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 9ebd2b7e..cb58e9df 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 INHIBIT_PACKAGE_STRIP="1" do_install() { - install -d ${D}/root/images - install -m 755 ${WORKDIR}/${PN}-${PV}-x86_64-disk.img ${D}/root/images + install -d ${D}/${ROOT_HOME}/images + install -m 755 ${WORKDIR}/${PN}-${PV}-x86_64-disk.img ${D}/${ROOT_HOME}/images } PACKAGES = "cirros-guest-image" -FILES_cirros-guest-image = "/root/images/*" +FILES_cirros-guest-image = "${ROOT_HOME}/images/*" |