diff options
Diffstat (limited to 'kernel-devel')
| -rw-r--r-- | kernel-devel/module-basics/pres_module-basics_en.tex | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kernel-devel/module-basics/pres_module-basics_en.tex b/kernel-devel/module-basics/pres_module-basics_en.tex index 2c41d49..1360261 100644 --- a/kernel-devel/module-basics/pres_module-basics_en.tex +++ b/kernel-devel/module-basics/pres_module-basics_en.tex @@ -70,20 +70,20 @@ MODULE_VERSION("0815"); \frametitle{Kconfig} drivers/staging/Kconfig: \begin{scriptsize} - \begin{lstlisting} +\begin{lstlisting} .. source "drivers/staging/vain/Kconfig" .. - \end{lstlisting} +\end{lstlisting} \end{scriptsize} drivers/staging/vain/Kconfig: \begin{scriptsize} - \begin{lstlisting} +\begin{lstlisting} config VAIN tristate "vain test driver" ---help--- Say Y here if you want the VAIN Test Driver in your kernel. - \end{lstlisting} +\end{lstlisting} \end{scriptsize} results in CONFIG\_VAIN = ['y'|'n'|'m'] \end{frame} @@ -91,17 +91,17 @@ results in CONFIG\_VAIN = ['y'|'n'|'m'] \frametitle{Makefile} drivers/staging/Makefile: \begin{scriptsize} - \begin{lstlisting} +\begin{lstlisting} .. obj-$(CONFIG_VAIN) += vain/ .. - \end{lstlisting} +\end{lstlisting} \end{scriptsize} drivers/staging/vain/Makefile: \begin{scriptsize} - \begin{lstlisting} +\begin{lstlisting} obj-$(CONFIG_VAIN) += vain.o - \end{lstlisting} +\end{lstlisting} \end{scriptsize} \end{frame} |
