Skip to content

Commit 20af2a1

Browse files
Add xslt file
1 parent 7c56dc7 commit 20af2a1

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" ?>
2+
<xsl:stylesheet version="1.0"
3+
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4+
<xsl:template match="@* | node()">
5+
<xsl:copy>
6+
<xsl:apply-templates select="@* | node()"/>
7+
</xsl:copy>
8+
</xsl:template>
9+
10+
<xsl:template match="memory">
11+
<xsl:copy-of select="."/>
12+
<memoryBacking>
13+
<hugepages/>
14+
</memoryBacking>
15+
</xsl:template>
16+
17+
</xsl:stylesheet>
18+

0 commit comments

Comments
 (0)