From: Christian Gromm Date: Thu, 23 Jun 2016 11:07:38 +0000 (+0200) Subject: meta-agl-demo: add recipes-most X-Git-Tag: 2.0.0~4 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=AGL%2Fmeta-agl-demo.git;a=commitdiff_plain;h=18e358f3aa4abe46910471f120339060693d8537 meta-agl-demo: add recipes-most This patch adds the recipes needed to copy the applicatons from the most-can-demo-bin folder of the staging area to and the /home/root directory. It is needed to run the MOST video demo and the CAN application on the agl-demo-platform. v2: Changed folder recipes-demo-hmi as per discussion in gerrit (jsmoeller) Change-Id: I5de98416a4d32b794552a2e42d4e95129704db47 Signed-off-by: Christian Gromm Signed-off-by: Jan-Simon Möller --- diff --git a/recipes-demo-hmi/ALS2016-demo/can-lin_0.1.bb b/recipes-demo-hmi/ALS2016-demo/can-lin_0.1.bb new file mode 100644 index 000000000..1cca96ccc --- /dev/null +++ b/recipes-demo-hmi/ALS2016-demo/can-lin_0.1.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "CAN-LIN Application" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" +PR = "r0" + +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/staging/most-can-demo-bin;protocol=https" + +S = "${WORKDIR}/git" +SRCREV = "cd6e46d117934139efdf5fac33fbeb59b66e45b6" + +do_configure() { + echo "" +} + +do_compile() { + echo "" +} + +do_install() { + install -m 0755 -d ${D}${bindir} + install -m 0644 ${S}/OptoLyzerMoccaApp ${D}${bindir} +} + diff --git a/recipes-demo-hmi/ALS2016-demo/vod_0.1.bb b/recipes-demo-hmi/ALS2016-demo/vod_0.1.bb new file mode 100644 index 000000000..670e680ef --- /dev/null +++ b/recipes-demo-hmi/ALS2016-demo/vod_0.1.bb @@ -0,0 +1,30 @@ +DESCRIPTION = "Video on demand" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" +PR = "r0" + +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/staging/most-can-demo-bin;protocol=https" + +S = "${WORKDIR}/git" +SRCREV = "cd6e46d117934139efdf5fac33fbeb59b66e45b6" + +do_configure() { + echo "" +} + +do_compile() { + echo "" +} + +do_install() { + install -m 0755 -d ${D}${bindir} ${D}${base_dir}/home/root ${D}${docdir}/video-on-demand + install -m 0644 ${S}/NetworkManager ${D}${bindir} + install -m 0644 ${S}/VideoOnDemand ${D}${bindir} + install -m 0644 ${S}/vod-client ${D}${bindir} + install -m 0644 ${S}/config-agl.xml ${D}${base_dir}/home/root + install -m 0644 ${S}/i2c-slim-amplifier.script ${D}${base_dir}/home/root + install -m 0644 ${S}/i2c-uda1388-v2.script ${D}${base_dir}/home/root +# install -m 0644 ${WORKDIR}/README.txt ${D}${docdir}/video-on-demand +} +FILES_${PN} += "/home/root*" +