SUMMARY = "Vehicle Signal Specification with AGL overlays" LICENSE = "MPL-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=9741c346eef56131163e13b9db1241b3" DEPENDS = "vss-tools-native" inherit allarch update-alternatives require vss.inc SRC_URI += "file://agl_vss_overlay.vspec \ file://agl_vss_overlay.vspec.control-panel \ file://agl_vss_overlay.vspec.gw-control-panel \ file://agl_vss_overlay.vspec.gw-hardware \ " # Since we're not relying on the simple upstream repo Makefile, use # best practices and output into a separate directory. B = "${WORKDIR}/build" do_configure[noexec] = "1" #VSPEC2JSON_OPTS = "-e dbc2vss,vss2dbc -o ${WORKDIR}/agl_vss_overlay.vspec --no-uuid --json-pretty" VSPEC2JSON_OPTS = "-e dbc2vss,vss2dbc --no-uuid --json-pretty" do_compile() { vspec2json.py -I ${S}/spec ${VSPEC2JSON_OPTS} -o ${WORKDIR}/agl_vss_overlay.vspec -u ${S}/spec/units.yaml ${S}/spec/VehicleSignalSpecification.vspec vss_rel_${PV}-agl.json vspec2json.py -I ${S}/spec ${VSPEC2JSON_OPTS} -o ${WORKDIR}/agl_vss_overlay.vspec.control-panel -u ${S}/spec/units.yaml ${S}/spec/VehicleSignalSpecification.vspec vss_rel_${PV}-agl-control-panel.json vspec2json.py -I ${S}/spec ${VSPEC2JSON_OPTS} -o ${WORKDIR}/agl_vss_overlay.vspec.gw-control-panel -u ${S}/spec/units.yaml ${S}/spec/VehicleSignalSpecification.vspec vss_rel_${PV}-agl-gw-control-panel.json vspec2json.py -I ${S}/spec ${VSPEC2JSON_OPTS} -o ${WORKDIR}/agl_vss_overlay.vspec.gw-hardware -u ${S}/spec/units.yaml ${S}/spec/VehicleSignalSpecification.vspec vss_rel_${PV}-agl-gw-hardware.json } do_install() { install -d ${D}${datadir}/vss install -m 0644 vss_rel_${PV}-agl.json ${D}${datadir}/vss/ install -m 0644 vss_rel_${PV}-agl-control-panel.json ${D}${datadir}/vss/ install -m 0644 vss_rel_${PV}-agl-gw-control-panel.json ${D}${datadir}/vss/ install -m 0644 vss_rel_${PV}-agl-gw-hardware.json ${D}${datadir}/vss/ } PACKAGE_BEFORE_PN += "${PN}-control-panel ${PN}-gw-control-panel ${PN}-gw-hardware" ALTERNATIVE_LINK_NAME[vss.json] = "${datadir}/vss/vss.json" ALTERNATIVE:${PN} = "vss.json" ALTERNATIVE_TARGET_${PN} = "${datadir}/vss/vss_rel_${PV}-agl.json" ALTERNATIVE_PRIORITY_${PN} = "20" FILES:${PN} += "${datadir}/vss/vss_rel_${PV}-agl.json" ALTERNATIVE:${PN}-control-panel = "vss.json" ALTERNATIVE_TARGET_${PN}-control-panel = "${datadir}/vss/vss_rel_${PV}-agl-control-panel.json" ALTERNATIVE_PRIORITY_${PN}-control-panel = "30" FILES:${PN}-control-panel += "${datadir}/vss/vss_rel_${PV}-agl-control-panel.json" ALTERNATIVE:${PN}-gw-hardware = "vss.json" ALTERNATIVE_TARGET_${PN}-gw-hardware = "${datadir}/vss/vss_rel_${PV}-agl-gw-hardware.json" ALTERNATIVE_PRIORITY_${PN}-gw-hardware = "31" FILES:${PN}-gw-hardware += "${datadir}/vss/vss_rel_${PV}-agl-gw-hardware.json" # Higher priority than gw-hardware, as we want it to be the default # if both are installed (as is the case with the full gateway demo # setup). ALTERNATIVE:${PN}-gw-control-panel = "vss.json" ALTERNATIVE_TARGET_${PN}-gw-control-panel = "${datadir}/vss/vss_rel_${PV}-agl-gw-control-panel.json" ALTERNATIVE_PRIORITY_${PN}-gw-control-panel = "32" FILES:${PN}-gw-control-panel += "${datadir}/vss/vss_rel_${PV}-agl-gw-control-panel.json"