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

kernel-intro-sources: add elixir reference #245

Open
wants to merge 1 commit 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
1 change: 1 addition & 0 deletions slides/kernel-intro-sources/elixir.svg
29 changes: 29 additions & 0 deletions slides/kernel-intro-sources/kernel-intro-sources.tex
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,35 @@ \subsection{Linux kernel sources}
\end{itemize}
\end{frame}

\begin{frame}
\frametitle{Going through Linux sources}
\begin{columns}
\column[t]{0.4\textwidth}
\begin{itemize}
\item Development tools:
\begin{itemize}
\item Any text editor will work
\item Vim and Emacs support ctags and cscope and therefore can help
with symbol lookup and auto-completion.
\item It's also possible to use more elaborate IDEs to develop
kernel code, like Visual Studio Code.
\end{itemize}
\end{itemize}
\column[t]{0.6\textwidth}
\begin{itemize}
\item Powerful web browsing: Elixir
\begin{itemize}
\item Generic source indexing tool and code browser for C and C++.
\item Very easy to find symbols declaration/implementation/usage
\item Try out \url{https://elixir.bootlin.com}!
\end{itemize}
\end{itemize}
\begin{center}
\includegraphics[height=0.5\textheight]{slides/kernel-intro-sources/elixir.pdf}
\end{center}
\end{columns}
\end{frame}

\begin{frame}[fragile]
\frametitle{Need for long term support}
\begin{itemize}
Expand Down