blob: 5f5327f865983fe08a270e51f6ce684710da86ed [file] [log] [blame]
Stefan Reinauer0a3f6072006-10-17 20:58:47 +00001<?xml version="1.0"?>
Stefan Reinauerc4225c82006-10-19 19:08:00 +00002<!--
3 Copyright (C) 2006 Stefan Reinauer <stepan@coresystems.de>
4 Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19-->
20
Stefan Reinauer0a3f6072006-10-17 20:58:47 +000021<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
22
23<xsl:output method="text"
24 encoding="utf-8"
Stefan Reinauer2132f1a2006-10-19 19:06:28 +000025 indent="yes" />
Stefan Reinauer0a3f6072006-10-17 20:58:47 +000026
27<xsl:template match="/">
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000028This is an automatically generated list of '''coreboot compile-time options'''.
Stefan Reinauer0a3f6072006-10-17 20:58:47 +000029
Stefan Reinauer2132f1a2006-10-19 19:06:28 +000030Last update: <xsl:value-of select="//creationdate"/>.
Stefan Reinauer0a3f6072006-10-17 20:58:47 +000031
stepan107b8feb2006-10-20 22:21:18 +000032{| border="0"
Stefan Reinauer2132f1a2006-10-19 19:06:28 +000033|- bgcolor="#6699dd"
Stefan Reinauer0a3f6072006-10-17 20:58:47 +000034! align="left" | Option
35! align="left" | Comment
36! align="left" | Default
37! align="left" | Export
38! align="left" | Format<xsl:for-each select="options/option">
Stefan Reinauer2132f1a2006-10-19 19:06:28 +000039|- bgcolor="#eeeeee"
40|
41<xsl:value-of select="@name"/>
42|
43<xsl:value-of select="comment"/>
44|
45<xsl:value-of select="default"/>
46|
47<xsl:value-of select="export"/>
48|
49<xsl:value-of select="format"/>
Stefan Reinauer0a3f6072006-10-17 20:58:47 +000050</xsl:for-each>
Stefan Reinauer2132f1a2006-10-19 19:06:28 +000051|}
Stefan Reinauer0a3f6072006-10-17 20:58:47 +000052
53</xsl:template>
54</xsl:stylesheet>