47dfc81bdc
The command for unmounting the kernel vfs is now umount -Rv $LFS So we have first to use that command in teardown (change in kernfs.xsl). Second, since the command tries to umount $LFS, but the Makefile is on $LFS, it fails. Ignore the error in the Makefile (change in master.sh)
24 lines
705 B
XML
24 lines
705 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!-- $Id: kernfs.xsl 3776 2014-01-12 21:43:04Z pierre $ -->
|
|
|
|
<xsl:stylesheet
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<xsl:output method="text"/>
|
|
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates select="//userinput[contains(string(),'--bind') or
|
|
contains(string(),'/proc') or
|
|
contains(string(),'readlink') or
|
|
contains(string(),'-Rv')]"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="userinput">
|
|
<xsl:apply-templates/>
|
|
<xsl:text>
|
|
</xsl:text>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|