From d312c2fb6f0a00f3abb45e99d4085845715866c7 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Wed, 22 Nov 2017 10:39:00 +0100 Subject: Use ROOT_HOME variable, not /home/root MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This enforces the use of the dedicated variable ROOT_HOME of yocto instead of /home/root. Note that the use of root's home made in the patched demos is bad and have to be changed. Change-Id: Ib0095a62d75800a0427be27955d1b2216b14554f Signed-off-by: José Bollo --- recipes-demo-hmi/radio/radio_git.bb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'recipes-demo-hmi/radio/radio_git.bb') diff --git a/recipes-demo-hmi/radio/radio_git.bb b/recipes-demo-hmi/radio/radio_git.bb index 8563b018..4f8063a0 100644 --- a/recipes-demo-hmi/radio/radio_git.bb +++ b/recipes-demo-hmi/radio/radio_git.bb @@ -27,16 +27,16 @@ inherit qmake5 aglwgt AGL_RADIO_PRESETS_LOCALE ?= "CES" do_install_append() { - install -d ${D}/home/root/app-data/radio - install -m 0644 ${WORKDIR}/presets-CES.conf ${D}/home/root/app-data/radio/ - install -m 0644 ${WORKDIR}/presets-ALS.conf ${D}/home/root/app-data/radio/ - install -m 0644 ${WORKDIR}/presets-FOSDEM.conf ${D}/home/root/app-data/radio/ - install -m 0644 ${WORKDIR}/presets-${AGL_RADIO_PRESETS_LOCALE}.conf ${D}/home/root/app-data/radio/presets.conf + install -d ${D}${ROOT_HOME}/app-data/radio + install -m 0644 ${WORKDIR}/presets-CES.conf ${D}${ROOT_HOME}/app-data/radio/ + install -m 0644 ${WORKDIR}/presets-ALS.conf ${D}${ROOT_HOME}/app-data/radio/ + install -m 0644 ${WORKDIR}/presets-FOSDEM.conf ${D}${ROOT_HOME}/app-data/radio/ + install -m 0644 ${WORKDIR}/presets-${AGL_RADIO_PRESETS_LOCALE}.conf ${D}${ROOT_HOME}/app-data/radio/presets.conf } FILES_${PN} += " \ - /home/root/app-data/radio/presets-*.conf \ - /home/root/app-data/radio/presets.conf \ + ${ROOT_HOME}/app-data/radio/presets-*.conf \ + ${ROOT_HOME}/app-data/radio/presets.conf \ " RDEPENDS_${PN} += "agl-service-radio" -- cgit 1.2.3-korg