[coreboot] [v2] r4540 - trunk/coreboot-v2/documentation

svn at coreboot.org svn at coreboot.org
Wed Aug 12 22:25:24 CEST 2009


Author: rminnich
Date: 2009-08-12 22:25:24 +0200 (Wed, 12 Aug 2009)
New Revision: 4540

Added:
   trunk/coreboot-v2/documentation/beginverbatim.tex
   trunk/coreboot-v2/documentation/endverbatim.tex
Modified:
   trunk/coreboot-v2/documentation/Kconfig.tex
   trunk/coreboot-v2/documentation/Makefile
Log:
\\ are not escaped in a sane way between fedora and ubuntu! Just create
these files to make sure that we don't get idiotic problems.

Fix things so they build.
Signed-off-by: Ronald G. Minnich <rminnich at gmail.com>
Acked-by: Ronald G. Minnich <rminnich at gmail.com>


Modified: trunk/coreboot-v2/documentation/Kconfig.tex
===================================================================
--- trunk/coreboot-v2/documentation/Kconfig.tex	2009-08-12 17:16:05 UTC (rev 4539)
+++ trunk/coreboot-v2/documentation/Kconfig.tex	2009-08-12 20:25:24 UTC (rev 4540)
@@ -460,7 +460,7 @@
 \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}
 

Modified: trunk/coreboot-v2/documentation/Makefile
===================================================================
--- trunk/coreboot-v2/documentation/Makefile	2009-08-12 17:16:05 UTC (rev 4539)
+++ trunk/coreboot-v2/documentation/Makefile	2009-08-12 20:25:24 UTC (rev 4540)
@@ -44,29 +44,29 @@
 
 # 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 
 	

Added: trunk/coreboot-v2/documentation/beginverbatim.tex
===================================================================
--- trunk/coreboot-v2/documentation/beginverbatim.tex	                        (rev 0)
+++ trunk/coreboot-v2/documentation/beginverbatim.tex	2009-08-12 20:25:24 UTC (rev 4540)
@@ -0,0 +1 @@
+\begin{verbatim}

Added: trunk/coreboot-v2/documentation/endverbatim.tex
===================================================================
--- trunk/coreboot-v2/documentation/endverbatim.tex	                        (rev 0)
+++ trunk/coreboot-v2/documentation/endverbatim.tex	2009-08-12 20:25:24 UTC (rev 4540)
@@ -0,0 +1 @@
+\end{verbatim}





More information about the coreboot mailing list