summaryrefslogtreecommitdiff
path: root/application-devel/cross-devel
diff options
context:
space:
mode:
Diffstat (limited to 'application-devel/cross-devel')
-rw-r--r--application-devel/cross-devel/pres_cross-devel_de.tex7
1 files changed, 4 insertions, 3 deletions
diff --git a/application-devel/cross-devel/pres_cross-devel_de.tex b/application-devel/cross-devel/pres_cross-devel_de.tex
index c792682..39c59a3 100644
--- a/application-devel/cross-devel/pres_cross-devel_de.tex
+++ b/application-devel/cross-devel/pres_cross-devel_de.tex
@@ -6,6 +6,7 @@
\usepackage{graphicx}
\usepackage{lxextras}
+
\title{Block \lq Cross Development\rq}
\institute{Linutronix GmbH}
@@ -80,7 +81,7 @@ Hello cross compiling world
\frametitle{Erstellen eines Rootfilesystems für die Zielarchitektur}
1) Busybox
\begin{lstlisting}[language=bash]
-mkdir /tftpboot/nfsroot
+mkdir -p /tftpboot/nfsroot
cd busybox-1.16.1
make menuconfig
make CROSS_COMPILE=powerpc-linux-gnu- install
@@ -125,7 +126,7 @@ mount -t sysfs sysfs /sys
mount -o remount,rw /
\end{verbatim}
\begin{lstlisting}[language=bash]
-chmod u+rw etc/rc.d/rcS
+chmod u+x etc/rc.d/rcS
\end{lstlisting}
\end{frame}
@@ -152,7 +153,7 @@ $ cp /path_to_my_libc/lib/libc.so.6 \
\frametitle{Erstellen eines Rootfilesystems für die Zielarchitektur}
5) Berechtigungen korrigieren:
\begin{lstlisting}[language=bash]
-chown -R root:root rootfs
+chown -R root:root /tftpboot/nfsroot
\end{lstlisting}
That's it!! :)
\end{frame}