\\ are not escaped in a sane way between fedora and ubuntu! Just create
authorRonald G. Minnich <rminnich@gmail.com>
Wed, 12 Aug 2009 20:25:24 +0000 (20:25 +0000)
committerRonald G. Minnich <rminnich@gmail.com>
Wed, 12 Aug 2009 20:25:24 +0000 (20:25 +0000)
these files to make sure that we don't get idiotic problems.

Fix things so they build.
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4540 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

documentation/Kconfig.tex
documentation/Makefile
documentation/beginverbatim.tex [new file with mode: 0644]
documentation/endverbatim.tex [new file with mode: 0644]

index 6b38dc15dd7ec23747a71479481817bf5d7241e9..5612d92db1ddd5b3c1613589178b97431de6fd48 100644 (file)
@@ -460,7 +460,7 @@ obj-$(CONFIG_HAVE_ACPI_TABLES) +=  amdk8_acpi.o
 \subsection{superio}
 \subsection{drivers/i2c}
 This is a rather special case. There are no Kconfig files or Makefile.inc files here. They are notneeed. 
-To compile in one of these files, name the .o directory. E.g. in serengeti_cheetah we have: 
+To compile in one of these files, name the .o directory. E.g. in serengeti\_cheetah we have: 
 \begin{verbatim}
 \end{verbatim}
 
index 264bc922a26c680f665774d225fedd5a401338b5..71967a464bfcd5157c2163817a3750bb6a4b31a0 100644 (file)
@@ -44,29 +44,29 @@ Kconfig.pdf: Kconfig.tex mainboardkconfig.tex cpukconfig.tex socketfkconfig.tex
 
 # quick, somebody! make me a macro!
 mainboardkconfig.tex: ../src/mainboard/Kconfig
-       echo '\begin{verbatim}' > $@
+       cat beginverbatim.tex  > $@
        grep '^config' $< | awk '{print $2}'  >>$@
-       echo '\end{verbatim}' >> $@
+       cat endverbatim.tex  >> $@
 
 skconfig.tex: ../src/mainboard/amd/serengeti_cheetah/Kconfig
-       echo '\begin{verbatim}' > $@
+       cat beginverbatim.tex  > $@
        grep '^config' $< | awk '{print $2}'  >>$@
-       echo '\end{verbatim}' >> $@
+       cat endverbatim.tex  >> $@
 
 cpukconfig.tex: ../src/cpu/Kconfig
-       echo '\begin{verbatim}' > $@
+       cat beginverbatim.tex  > $@
        grep '^config' $< | awk '{print $2}'  >>$@
-       echo '\end{verbatim}' >> $@
+       cat endverbatim.tex  >> $@
 
 socketfkconfig.tex: ../src/cpu/amd/socket_F/Kconfig
-       echo '\begin{verbatim}' > $@
+       cat beginverbatim.tex  > $@
        grep '^config' $< | awk '{print $2}'  >>$@
-       echo '\end{verbatim}' >> $@
+       cat endverbatim.tex  >> $@
 
 
 clean:
-       rm -f *.aux *.idx *.log *.toc *.out $(FIGS) mainboardkconfig.tex
+       rm -f *.aux *.idx *.log *.toc *.out $(FIGS) mainboardkconfig.tex skconfig.tex cpukconfig.tex socketkconfig.tex
 
 distclean: clean
-       rm -f LinuxBIOS-AMD64.pdf mainboardkconfig.tex
+       rm -f LinuxBIOS-AMD64.pdf 
        
diff --git a/documentation/beginverbatim.tex b/documentation/beginverbatim.tex
new file mode 100644 (file)
index 0000000..453714c
--- /dev/null
@@ -0,0 +1 @@
+\begin{verbatim}
diff --git a/documentation/endverbatim.tex b/documentation/endverbatim.tex
new file mode 100644 (file)
index 0000000..f832f3f
--- /dev/null
@@ -0,0 +1 @@
+\end{verbatim}