From 5d9043ce4f07dbc63a2996874e798de4a83538c2 Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Tue, 27 Nov 2018 22:57:33 +0100 Subject: add 'yocto-layer-example' This is a first attemp to create a new slideset for day2 of yocto-trainig. The slideset is based on 'yocto-advanced' but with integration of 'meta-schulung' explanations. I used a slightly modified version of 'meta-schulung'. The following changes are currently not available in git: I don't use linux-yocto in meta-schulung, but use an own kernel-recipe and integrate the RT-PREEMPT patch. wic: i can't see the need for the second partition and the need for huge files in the kconfig. It works for me by adding ' --align 1024 ' to the wic setup. I decided to use ext2 instead of ext4. I renamed the rootfs.bb file into schulung-base.bb I use the u-boot recipe from poky. However i don't use u-boot for anything atm. But bootloader is on our agenda.. Signed-off-by: Manuel Traut --- .../yocto-add-qt-cmake-projects.tex | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 distribution/yocto-example-layer/yocto-add-qt-cmake-projects.tex (limited to 'distribution/yocto-example-layer/yocto-add-qt-cmake-projects.tex') diff --git a/distribution/yocto-example-layer/yocto-add-qt-cmake-projects.tex b/distribution/yocto-example-layer/yocto-add-qt-cmake-projects.tex new file mode 100644 index 0000000..e1a0176 --- /dev/null +++ b/distribution/yocto-example-layer/yocto-add-qt-cmake-projects.tex @@ -0,0 +1,43 @@ +\begin{frame}[fragile] +\frametitle{Cmake based project} +\begin{verbatim} +. +├── files +│   └── hellocm-0.1.tar.bz2 +└── hellocm_0.1.bb +\end{verbatim} +\begin{verbatim} +DESCRIPTION = "hellocm cmake example" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" +SECTION = "examples" +SRC_URI = "file://${PN}-${PV}.tar.bz2" +inherit cmake + +#export EXTRA_OECMAKE = '-DBLUBB="bla" + +FILES_{PN} = "${bindir}/hellocm" +\end{verbatim} +\end{frame} + +\begin{frame}[fragile] +\frametitle{QT application} +\begin{verbatim} +├── files +│   └── helloqt-1.0.tar.bz2 +└── helloqt_1.0.bb +\end{verbatim} +\begin{verbatim} +DESCRIPTION = "helloqt QT example" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" +SECTION = "examples" +SRC_URI = "file://${PN}-${PV}.tar.bz2" +inherit qt4e +PR = "r4" +do_install() { + install -d ${D}${bindir} + install -m 0755 helloqt ${D}${bindir} +} +\end{verbatim} +\end{frame} -- cgit v1.2.3