Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question slides #242

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion common/common.sty
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,10 @@
% Yocto commands
\newcommand\yoctovar[1]{\href{https://docs.yoctoproject.org/ref-manual/variables.html\#term-#1}{\codelink{#1}}}


% Arnout commands
\newcommand\questionslide[1]{\begin{frame}{#1}
\begin{center}
\includegraphics[height=0.8\textheight]{common/question-mark.jpg}
\end{center}
\end{frame}
}
Binary file added common/question-mark.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions slides/kernel-device-model/kernel-device-model.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ \section{Linux device and driver model}

\subsection{Introduction}

\questionslide{Why do we need device drivers?}

\begin{frame}{The need for a device model?}
\begin{itemize}
\item The Linux kernel runs on a wide range of architectures and
Expand Down
2 changes: 2 additions & 0 deletions slides/kernel-hw-devices/kernel-hw-devices.tex
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ \subsection{Describing non-discoverable hardware}
\end{columns}
\end{frame}

\questionslide{Why is putting description in code not maintainable?}

\begin{frame}{Device Tree: from source to blob}
\begin{columns}
\column{0.7\textwidth}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ \subsection{Linux kernel source code}
\end{itemize}
\end{frame}

\questionslide{Why doesn't the kernel use the C library?}

\begin{frame}
\frametitle{No C library}
\begin{itemize}
Expand Down Expand Up @@ -242,6 +244,8 @@ \subsection{Linux kernel source code}
This will for sure reduce your maintenance and support work
\end{frame}

\questionslide{Can you implement drivers in userspace?}

\begin{frame}
\frametitle{User space device drivers 1/2}
\begin{itemize}
Expand Down
2 changes: 2 additions & 0 deletions slides/sysdev-kernel-booting/sysdev-kernel-booting.tex
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
\end{itemize}
\end{frame}

\questionslide{How do you specify the kernel command line?}

\begin{frame}
\frametitle{Passing the kernel command line}
\begin{columns}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
\end{center}
\end{frame}

\questionslide{What are the Linux kernel main roles?}

\begin{frame}{Linux kernel main roles}
\begin{itemize}
\item {\bf Manage all the hardware resources}: CPU, memory, I/O.
Expand Down