diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2016-10-29 14:24:34 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2016-10-29 15:06:08 +0200 |
commit | f0dcd3584751dd52d56c6bfa5d0ae70fcd53982a (patch) | |
tree | 156d86a1d33c60fbaaf6fc9f27c46c56b83f0a03 /recipes-demo-hmi/MediaPlayer | |
parent | eb689fa7b8a252ca1ae933ca9fe0c57e6757e87d (diff) |
Change /opt/AGL to /usr/AGL for ostree integration
Ostree (sota) does not preserve /opt , so move /opt/AGL to /usr/AGL
for inclusion in the ota.
Fixes: SPEC-304
Change-Id: I1efcc9c0c2142e9b97f9dbd6b5972493ead8bebc
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'recipes-demo-hmi/MediaPlayer')
-rw-r--r-- | recipes-demo-hmi/MediaPlayer/MediaPlayer.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-demo-hmi/MediaPlayer/MediaPlayer.bb b/recipes-demo-hmi/MediaPlayer/MediaPlayer.bb index 681b84f0b..c19a29b04 100644 --- a/recipes-demo-hmi/MediaPlayer/MediaPlayer.bb +++ b/recipes-demo-hmi/MediaPlayer/MediaPlayer.bb @@ -25,7 +25,7 @@ do_configure() { # empty folder for now do_install() { - mkdir -p ${D}/opt/AGL/${PN}/ + mkdir -p ${D}/usr/AGL/${PN}/ } -FILES_${PN} = "/opt/AGL/${PN}/" +FILES_${PN} = "/usr/AGL/${PN}/" |