Stefan Reinauer | 0a3f607 | 2006-10-17 20:58:47 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Stefan Reinauer | c4225c8 | 2006-10-19 19:08:00 +0000 | [diff] [blame] | 2 | <!-- |
| 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 Reinauer | 0a3f607 | 2006-10-17 20:58:47 +0000 | [diff] [blame] | 21 | <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 Reinauer | 2132f1a | 2006-10-19 19:06:28 +0000 | [diff] [blame] | 25 | indent="yes" /> |
Stefan Reinauer | 0a3f607 | 2006-10-17 20:58:47 +0000 | [diff] [blame] | 26 | |
| 27 | <xsl:template match="/"> |
Stefan Reinauer | f8ee180 | 2008-01-18 15:08:58 +0000 | [diff] [blame] | 28 | This is an automatically generated list of '''coreboot compile-time options'''. |
Stefan Reinauer | 0a3f607 | 2006-10-17 20:58:47 +0000 | [diff] [blame] | 29 | |
Stefan Reinauer | 2132f1a | 2006-10-19 19:06:28 +0000 | [diff] [blame] | 30 | Last update: <xsl:value-of select="//creationdate"/>. |
Stefan Reinauer | 0a3f607 | 2006-10-17 20:58:47 +0000 | [diff] [blame] | 31 | |
stepan | 107b8feb | 2006-10-20 22:21:18 +0000 | [diff] [blame] | 32 | {| border="0" |
Stefan Reinauer | 2132f1a | 2006-10-19 19:06:28 +0000 | [diff] [blame] | 33 | |- bgcolor="#6699dd" |
Stefan Reinauer | 0a3f607 | 2006-10-17 20:58:47 +0000 | [diff] [blame] | 34 | ! 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 Reinauer | 2132f1a | 2006-10-19 19:06:28 +0000 | [diff] [blame] | 39 | |- 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 Reinauer | 0a3f607 | 2006-10-17 20:58:47 +0000 | [diff] [blame] | 50 | </xsl:for-each> |
Stefan Reinauer | 2132f1a | 2006-10-19 19:06:28 +0000 | [diff] [blame] | 51 | |} |
Stefan Reinauer | 0a3f607 | 2006-10-17 20:58:47 +0000 | [diff] [blame] | 52 | |
| 53 | </xsl:template> |
| 54 | </xsl:stylesheet> |