summaryrefslogtreecommitdiffstats
path: root/meta-app-framework/README-AGL.md
blob: bd0c2de8fd160b6d9e9d9f6197f366a6e08b0ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Overview
========

The
[AGL Project](https://www.automotivelinux.org/) is an automotive-specific
development environment that provides a Linux distribution
[AGL UCB](https://www.automotivelinux.org/software/unified-code-base).

AGL uses layers designed to be compatible with the
[Yocto Project](https://www.yoctoproject.org) and the
[OpenEmbedded Project (OE)](https://www.openembedded.org/wiki/Main_Page).

This section provides information about the layers used by the AGL Project:

* **`meta-agl/meta-app-framework`**: Application (lifecycle) manager

    ```
    $ git clone https://gerrit.automotivelinux.org/gerrit/AGL/meta-agl
    ```

Maintenance
-----------

All patches must be submitted via the AGL Gerrit instance at
<https://gerrit.automotivelinux.org>.  See this wiki page for
details:

<https://wiki.automotivelinux.org/agl-distro/contributing>

Layer maintainers:
* Jan-Simon Möller <jsmoeller@linuxfoundation.org>
/aws/aws-iot-device-sdk-embedded-C" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=acc7a1bf87c055789657b148939e4b40" SRC_URI = "\ git://github.com/aws/aws-iot-device-sdk-embedded-C.git;protocol=https \ file://Makefile.aws \ file://aws_iot_config.h \ file://awsiotsdk.pc \ " SRCREV = "d039f075e1cc2a2a7fc20edc6868f328d8d36b2f" S = "${WORKDIR}/git" B = "${WORKDIR}/build" DEPENDS = "mbedtls" RDEPENDS_${PN} += "mbedtls" do_configure_prepend() { cp ${WORKDIR}/Makefile.aws ${S}/src cp ${WORKDIR}/aws_iot_config.h ${S}/include cp ${WORKDIR}/awsiotsdk.pc ${S} } do_compile() { cd ${S}/src oe_runmake -f ./Makefile.aws DESTDIR=${D} all } do_install() { cd ${S}/src oe_runmake -f ./Makefile.aws DESTDIR=${D} install } BBCLASSEXTEND = "native nativesdk" ALLOW_EMPTY_${PN} = "1"