Skip to content
Snippets Groups Projects
Commit 90bf1f50 authored by Samuli Piippo's avatar Samuli Piippo
Browse files

Remove automotive recipes


Automotive was released (and supported) in the jethro

Change-Id: Iab8560b4b0d530e872eef585c635b45274a4507b
Reviewed-by: default avatarTeemu Holappa <teemu.holappa@theqtcompany.com>
parent 0f967048
No related branches found
No related tags found
No related merge requests found
##############################################################################
##
## Copyright (C) 2016 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
## This file is part of the Boot to Qt meta layer.
##
## $QT_BEGIN_LICENSE:COMM$
##
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see http://www.qt.io/terms-conditions. For further
## information use the contact form at http://www.qt.io/contact-us.
##
## $QT_END_LICENSE$
##
##############################################################################
include conf/distro/b2qt.conf
PREFERRED_VERSION_qtwayland = "5.6%"
PREFERRED_VERSION_qtwayland-native = "5.6%"
SUMMARY = "GammaRay Qt introspection probe"
HOMEPAGE = "http://www.kdab.com/gammaray"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://LICENSE.GPL.txt;md5=5996517d53e3c2722d457fb633e970ed"
inherit cmake_qt5
SRC_URI = "git://github.com/KDAB/GammaRay;branch=${BRANCH}"
BRANCH = "2.4"
SRCREV = "4995051c9d6733ce3eabb486283160bf31c87c10"
PV = "2.5.50+git${SRCPV}"
DEPENDS = "qtdeclarative qtlocation qtsvg qttools qtconnectivity"
S = "${WORKDIR}/git"
EXTRA_OECMAKE += " -DGAMMARAY_BUILD_UI=OFF"
FILES_${PN}-dev += " \
/usr/lib/cmake/* \
/usr/mkspecs/modules/* \
"
FILES_${PN}-dbg += " \
/usr/lib/.debug/* \
/usr/lib/gammaray/*/*/.debug \
/usr/lib/gammaray/*/*/styles/.debug \
"
[Unit]
Description=Neptune
After=systemd-user-sessions.service
[Service]
ExecStart=/usr/bin/appcontroller /usr/bin/appman -r -c /opt/am/config.yaml -c am-config.yaml --dbus none Main1280x800.qml
Restart=on-failure
WorkingDirectory=/opt/neptune
[Install]
WantedBy=multi-user.target
##############################################################################
##
## Copyright (C) 2016 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
## This file is part of the Boot to Qt meta layer.
##
## $QT_BEGIN_LICENSE:COMM$
##
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see http://www.qt.io/terms-conditions. For further
## information use the contact form at http://www.qt.io/contact-us.
##
## $QT_END_LICENSE$
##
##############################################################################
DESCRIPTION = "Neptune IVI UI"
LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://LICENSE.GPLv3;md5=024d61f4545fb889faa57982553ce094"
inherit qt5-module systemd
SRC_URI = " \
git://codereview.qt-project.org/qt-apps/neptune-ui;branch=${BRANCH};protocol=http \
file://neptune.service \
"
SRCREV = "b3f10d156349727310ec30b27d01e639cce4f570"
BRANCH = "master"
S = "${WORKDIR}/git"
DEPENDS = "qtbase qtdeclarative"
RDEPENDS_${PN} = "qtapplicationmanager qtivi qtvirtualkeyboard \
${@base_contains('DISTRO_FEATURES', 'webengine', 'qtwebengine', '', d)}"
do_configure_prepend() {
echo "qml.path = /opt/neptune" >> ${S}/neptuneui.pro
}
do_install_append() {
install -m 0755 -d ${D}${systemd_unitdir}/system
install -m 0644 ${WORKDIR}/neptune.service ${D}${systemd_unitdir}/system/
install -m 0644 ${S}/Main*.qml ${D}/opt/neptune
install -m 0644 ${S}/am-config.yaml ${D}/opt/neptune
}
PACKAGES =+ "${PN}-apps"
RRECOMMENDS_${PN} += "${PN}-apps"
FILES_${PN}-apps += "/opt/neptune/apps"
FILES_${PN} += "\
/opt/neptune \
"
SYSTEMD_SERVICE_${PN} = "neptune.service"
##############################################################################
##
## Copyright (C) 2016 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
## This file is part of the Boot to Qt meta layer.
##
## $QT_BEGIN_LICENSE:COMM$
##
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see http://www.qt.io/terms-conditions. For further
## information use the contact form at http://www.qt.io/contact-us.
##
## $QT_END_LICENSE$
##
##############################################################################
DESCRIPTION = "Qt component for application lifecycle management"
LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://LICENSE.GPLv3;md5=311507adb75495acc0b61d69109485ce"
inherit qmake5
SRC_URI = " \
git://codereview.qt-project.org/qt/qtapplicationmanager;branch=${BRANCH};protocol=ssh \
"
SRCREV = "b7578378b578788c2ae9c60708a2908d3b090c16"
BRANCH = "dev"
DEPENDS = "qtbase qtdeclarative libyaml libarchive \
${@base_contains("DISTRO_FEATURES", "wayland", "qtwayland", "", d)}"
S = "${WORKDIR}/git"
EXTRA_QMAKEVARS_PRE += "\
-config force-singleprocess \
-config enable-dummydata \
-config enable-ivi-logging \
-config install-prefix=/usr \
-config systemd-workaround \
"
do_install_append() {
install -m 0755 -d ${D}/opt/am/
install -m 0644 ${S}/template-opt/am/config.yaml ${D}/opt/am/
}
FILES_${PN} += "\
/opt/am \
${libdir}/appman \
${datadir}/dbus-1"
FILES_${PN}-dbg += "${libdir}/appman/.debug"
FILES_${PN}-dev += "${OE_QMAKE_PATH_LIBS}/*.prl"
##############################################################################
##
## Copyright (C) 2016 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
## This file is part of the Boot to Qt meta layer.
##
## $QT_BEGIN_LICENSE:COMM$
##
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see http://www.qt.io/terms-conditions. For further
## information use the contact form at http://www.qt.io/contact-us.
##
## $QT_END_LICENSE$
##
##############################################################################
DESCRIPTION = "Qt IVI"
LICENSE = "LGPL-3.0"
LIC_FILES_CHKSUM = "file://header.LGPL3-PELAGICORE;md5=0f5beb4df202cb6ef5cbc5296f3a3fa4"
inherit qt5-module
SRC_URI = " \
git://codereview.qt-project.org/qt/qtivi;branch=${BRANCH};protocol=ssh \
"
SRCREV = "2d378320dc07b8b3ac9a9ce89b7f7a99caa72f8a"
BRANCH = "dev"
S = "${WORKDIR}/git"
DEPENDS = "qtbase qtdeclarative"
##############################################################################
##
## Copyright (C) 2016 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
## This file is part of the Boot to Qt meta layer.
##
## $QT_BEGIN_LICENSE:COMM$
##
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see http://www.qt.io/terms-conditions. For further
## information use the contact form at http://www.qt.io/contact-us.
##
## $QT_END_LICENSE$
##
##############################################################################
DESCRIPTION = "Qt Web Browser"
LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://src/main.cpp;md5=e78c6c33aa5ec2464456b72daf61ef9c;beginline=1;endline=36"
inherit qmake5 sdk-sources
SRC_URI = " \
git://codereview.qt-project.org/qt-apps/tqtc-qtwebbrowser;branch=${BRANCH};protocol=ssh;sdk-uri=5.6/Src/qtwebbrowser \
"
SRCREV = "2e18b419a7084b1e39bf8749855768a1002e34de"
BRANCH = "dev"
S = "${WORKDIR}/git"
DEPENDS = "qtbase qtdeclarative qtwebengine"
FILES_${PN} += "/data/user/qt/qtwebbrowser"
FILES_${PN}-dbg += "/data/user/qt/qtwebbrowser/.debug"
##############################################################################
##
## Copyright (C) 2016 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
## This file is part of the Boot to Qt meta layer.
##
## $QT_BEGIN_LICENSE:COMM$
##
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see http://www.qt.io/terms-conditions. For further
## information use the contact form at http://www.qt.io/contact-us.
##
## $QT_END_LICENSE$
##
##############################################################################
DESCRIPTION = "B2Qt Automotive Qt5 image"
LICENSE = "QtEnterprise"
LIC_FILES_CHKSUM = "file://${QT_LICENCE};md5=7bc9c54e450006250a60e96604c186c9"
PR = "r0"
DEPLOY_CONF_TYPE = "Automotive"
IMAGE_FEATURES += "\
package-management \
ssh-server-dropbear \
tools-debug \
debug-tweaks \
hwcodecs \
"
inherit core-image
inherit bootfs-image
MACHINE_EXTRA_INSTALL_QT ?= ""
IMAGE_INSTALL += "\
${MACHINE_EXTRA_INSTALL_QT} \
packagegroup-b2qt-embedded-base \
packagegroup-b2qt-embedded-tools \
${@base_contains("DISTRO_FEATURES", "gstreamer010", "packagegroup-b2qt-embedded-gstreamer010", "", d)} \
${@base_contains("DISTRO_FEATURES", "gstreamer", "packagegroup-b2qt-embedded-gstreamer", "", d)} \
packagegroup-b2qt-qt5-modules \
packagegroup-b2qt-automotive-addons \
"
##############################################################################
##
## Copyright (C) 2016 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
## This file is part of the Boot to Qt meta layer.
##
## $QT_BEGIN_LICENSE:COMM$
##
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see http://www.qt.io/terms-conditions. For further
## information use the contact form at http://www.qt.io/contact-us.
##
## $QT_END_LICENSE$
##
##############################################################################
DESCRIPTION = "B2Qt embedded Qt5 SDK toolchain"
LICENSE = "QtEnterprise"
LIC_FILES_CHKSUM = "file://${QT_LICENCE};md5=7bc9c54e450006250a60e96604c186c9"
inherit populate_b2qt_qt5_sdk
TOOLCHAIN_HOST_TASK += "nativesdk-packagegroup-b2qt-embedded-qt5-toolchain-host"
TOOLCHAIN_TARGET_TASK += "packagegroup-b2qt-embedded-qt5-toolchain-target \
packagegroup-b2qt-automotive-qt5-toolchain-target"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment