From: Tadao Tanikawa Date: Thu, 15 Sep 2016 10:29:25 +0000 (+0900) Subject: Fix issues of dependencies and QA of ALS/CES2016 demo X-Git-Tag: 3.0.0~106 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=AGL%2Fmeta-agl-demo.git;a=commitdiff_plain;h=1285cbf5034408a3ab7225c3b0aeddc58f72ddc3 Fix issues of dependencies and QA of ALS/CES2016 demo This patch fixes these issues: - The packages qtmultimedia-qmlplugins, qtquickcontrols-qmlplugins and qtsvg-plugins are missing For RDEPENDS_${PN}, PN="ALS2016-demo" and PN="CES2016-demo" not work PN="als2016-demo" and PN="als2016-demo" work Probably root cause would be in elsewhere... - Many QA warning while copying ALS/CES2016 demo files Change-Id: I010f01f65769dd243a6ef77b0626e9c27a505119 Signed-off-by: Tadao Tanikawa --- diff --git a/recipes-demo-hmi/ALS2016-demo/ALS2016-demo.bb b/recipes-demo-hmi/ALS2016-demo/ALS2016-demo.bb index 04d00da05..8e43cfaa7 100644 --- a/recipes-demo-hmi/ALS2016-demo/ALS2016-demo.bb +++ b/recipes-demo-hmi/ALS2016-demo/ALS2016-demo.bb @@ -4,6 +4,8 @@ HOMEPAGE = "https://git.automotivelinux.org/gerrit/#/admin/projects/AGL/DemoA SECTION = "apps" +PN = "als2016-demo" + LICENSE = "MPL-2.0" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=815ca599c9df247a0c7f619bab123dad" @@ -30,7 +32,7 @@ do_configure() { # plain copy in own folder for now do_install() { mkdir -p ${D}/opt/AGL/ALS2016/ - cp -ar ./* ${D}/opt/AGL/ALS2016/ + cp -rf ./* ${D}/opt/AGL/ALS2016/ } FILES_${PN} = "/opt/AGL/" diff --git a/recipes-demo-hmi/CES2016-demo/CES2016-demo.bb b/recipes-demo-hmi/CES2016-demo/CES2016-demo.bb index aec13e476..2a44b460d 100644 --- a/recipes-demo-hmi/CES2016-demo/CES2016-demo.bb +++ b/recipes-demo-hmi/CES2016-demo/CES2016-demo.bb @@ -4,6 +4,8 @@ HOMEPAGE = "https://git.automotivelinux.org/gerrit/#/admin/projects/AGL/DemoA SECTION = "apps" +PN = "ces2016-demo" + LICENSE = "MPL-2.0" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=815ca599c9df247a0c7f619bab123dad" @@ -30,7 +32,7 @@ do_configure() { # plain copy in own folder for now do_install() { mkdir -p ${D}/opt/AGL/CES2016/ - cp -ar ./* ${D}/opt/AGL/CES2016/ + cp -rf ./* ${D}/opt/AGL/CES2016/ } FILES_${PN} = "/opt/AGL/" diff --git a/recipes-platform/images/agl-demo-platform.bb b/recipes-platform/images/agl-demo-platform.bb index 4ae985e90..6ed69ad1c 100644 --- a/recipes-platform/images/agl-demo-platform.bb +++ b/recipes-platform/images/agl-demo-platform.bb @@ -17,8 +17,8 @@ IMAGE_INSTALL_append = " \ # add packages for CES2016 demo IMAGE_INSTALL_append = " \ - ALS2016-demo \ - CES2016-demo \ + als2016-demo \ + ces2016-demo \ can-utils iproute2 \ python-curses \ dhcp-client \