blob: 071519dc1888ef03022e1c8669f5afafb4ee35f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
\subsection{Creating images}
\begin{frame}[fragile]
\frametitle{Based on core-image class}
\begin{lstlisting}
$ cd ~/poky/meta-schulung
$ mkdir -p recipes-core/images
$ pluma recipes-core/images/core-image-schulung.bb
\end{lstlisting}
\begin{verbatim}
LICENSE = "MIT"
LIC_FILES_CHKSUM =
"file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
inherit core-image
IMAGE_LINGUAS = ""
IMAGE_INSTALL = "example"
\end{verbatim}
\begin{lstlisting}
$ cd ~/poky/build-schulung
$ bitbake core-image-schulung
\end{lstlisting}
\end{frame}
|