diff options
| author | Jan Altenberg <jan@bender.lan> | 2010-04-23 15:42:53 +0200 |
|---|---|---|
| committer | Jan Altenberg <jan@bender.lan> | 2010-04-23 15:42:53 +0200 |
| commit | 3d50f4f5281e94b90ac8fd0427d45a2023bc352f (patch) | |
| tree | 3414dd36479bf35cf5d929e5418fd0da6e3eb487 | |
| parent | ae303294cc741b9498816a0c6d1540074c364ded (diff) | |
Fixes for cross development chapter.
| -rw-r--r-- | application-devel/cross-devel/pres_cross-devel_de.tex | 7 |
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} |
