diff options
author | Stefan Reinauer <stepan@openbios.org> | 2006-08-23 10:52:12 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-08-23 10:52:12 +0000 |
commit | e4ff2a51df82d0adac1e486f38fdf870f47c3f76 (patch) | |
tree | bee6e20d34d0f8c5ee8c431cd128411caea9e53a /documentation | |
parent | 60902ed3a1155f062a78baa5962ca7903ec1d621 (diff) | |
download | coreboot-e4ff2a51df82d0adac1e486f38fdf870f47c3f76.tar.xz |
fix special chars in document.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2383 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/LinuxBIOS-AMD64.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/documentation/LinuxBIOS-AMD64.tex b/documentation/LinuxBIOS-AMD64.tex index 40feb21be3..788faa4f9e 100644 --- a/documentation/LinuxBIOS-AMD64.tex +++ b/documentation/LinuxBIOS-AMD64.tex @@ -148,7 +148,7 @@ Once the source tree is checked out, it can be updated with: { \small \begin{verbatim} -% cvs update Pd +% cvs update -Pd \end{verbatim} } @@ -330,7 +330,7 @@ If an option contains a string, this string has to be protected with quotation marks: \begin{verbatim} - default CC="gcc m32" + default CC="gcc -m32" \end{verbatim} \item \begin{verbatim}option\end{verbatim} @@ -407,7 +407,7 @@ option on how to set them. \item \begin{verbatim}CC\end{verbatim} Target C Compiler. Default is \texttt{\$(CROSS\_COMPILE)gcc}. Set to -\texttt{gcc m32} for compiling AMD64 LinuxBIOS images on an AMD64 +\texttt{gcc -m32} for compiling AMD64 LinuxBIOS images on an AMD64 machine. \item \begin{verbatim}CONFIG_CHIP_CONFIGURE \end{verbatim} @@ -552,12 +552,12 @@ do: \begin{verbatim} makerule ./auto.E depends "$(MAINBOARD)/auto.c option_table.h ./romcc" - action "./romcc -E -mcpu=k8 -O2 I$(TOP)/src -I. $(CPPFLAGS) \ + action "./romcc -E -mcpu=k8 -O2 -I$(TOP)/src -I. $(CPPFLAGS) \ $(MAINBOARD)/auto.c -o $@" end makerule ./auto.inc depends "$(MAINBOARD)/auto.c option_table.h ./romcc" - action "./romcc -mcpu=k8 -O2 I$(TOP)/src -I. $(CPPFLAGS) \ + action "./romcc -mcpu=k8 -O2 -I$(TOP)/src -I. $(CPPFLAGS) \ $(MAINBOARD)/auto.c -o $@" end \end{verbatim} |