diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-07-31 11:53:59 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-07-31 11:53:59 -0400 |
commit | f7238d1d3d127954c3460e2ad015f68f3bfe95d8 (patch) | |
tree | 8801ebdf5ffca4ecafef2e19e7aac1d30001aafc /meta-openstack/recipes-extended/guest-images | |
parent | c233372f3a4efbe3c40c662e9a36e91f7582af2c (diff) | |
download | meta-cloud-services-f7238d1d3d127954c3460e2ad015f68f3bfe95d8.tar.gz |
cirros: make root home configurable
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-extended/guest-images')
-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 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 | |||
14 | INHIBIT_PACKAGE_STRIP="1" | 14 | INHIBIT_PACKAGE_STRIP="1" |
15 | 15 | ||
16 | do_install() { | 16 | do_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 | ||
21 | PACKAGES = "cirros-guest-image" | 21 | PACKAGES = "cirros-guest-image" |
22 | FILES_cirros-guest-image = "/root/images/*" | 22 | FILES_cirros-guest-image = "${ROOT_HOME}/images/*" |