summaryrefslogtreecommitdiffstats
path: root/meta-egvirt/recipes-virtioloopback
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2024-06-25 15:37:58 -0400
committerScott Murray <scott.murray@konsulko.com>2024-06-25 15:37:58 -0400
commit1e0aba7a5d676ff11a6e2eda1f412172b842dc0e (patch)
treef84215a76f0f0ec40e9dae197c869239547bb0ec /meta-egvirt/recipes-virtioloopback
parent97310e350b19bc5e8cc391aba8394912eea19b4f (diff)
Remove meta-agl-flutter
Remove the meta-agl-flutter layer and its configuration template, as it is being moved to meta-agl. Bug-AGL: SPEC-5184 Change-Id: I59e9f8616a21d2e3b97da47baef1892c904d0002 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'meta-egvirt/recipes-virtioloopback')
0 files changed, 0 insertions, 0 deletions
Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
SUMMARY = "AGL Container Manager"
DESCRIPTION = "AGL Container Manager for AGL Instrument Cluster."
AUTHOR = "Naoto Yamaguchi/ AGL Instrument Cluster Expert Group"
HOMEPAGE = "https://github.com/AGLExport/container-manager"
BUGTRACKER = "https://github.com/AGLExport/container-manager/issues"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=89aea4e17d99a7cacdbeed46a0096b10"

DEPENDS = "systemd libmnl cjson lxc util-linux"

PV = "0.1.0+rev${SRCPV}"

SRC_URI = " \
    git://github.com/AGLExport/container-manager.git;branch=staging2;protocol=https \
    file://container-manager.service \
    file://container-manager.json \
    "
SRCREV = "0d1992efe362952003844904b046a174af205548"

S = "${WORKDIR}/git"

inherit autotools pkgconfig systemd features_check

REQUIRED_DISTRO_FEATURES = "systemd"

SYSTEMD_PACKAGES = "${PN}"
SYSTEMD_SERVICE:${PN} = "container-manager.service"
SYSTEMD_AUTO_ENABLE:${PN} = "enable"

do_install:append() {
    install -d ${D}/opt/container/conf/
    install -d ${D}/opt/container/guests/

    install -d ${D}${systemd_system_unitdir}
    install -m 0644 ${WORKDIR}/container-manager.service ${D}${systemd_system_unitdir}/

    install -d ${D}${sysconfdir}
    install -m 0644 ${WORKDIR}/container-manager.json ${D}${sysconfdir}/
}

FILES:${PN} += " \
    ${systemd_system_unitdir}/* \
    ${sysconfdir}/* \
    /opt/container/conf \
    /opt/container/guests \
    "