source: common/kernfs.xsl@ 47dfc81

ablfs-more legacy trunk
Last change on this file since 47dfc81 was 47dfc81, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Account for the change in umount command in LFS

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)

  • Property mode set to 100644
File size: 705 bytes
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2
3<!-- $Id: kernfs.xsl 3776 2014-01-12 21:43:04Z pierre $ -->
4
5<xsl:stylesheet
6 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7 version="1.0">
8
9 <xsl:output method="text"/>
10
11 <xsl:template match="/">
12 <xsl:apply-templates select="//userinput[contains(string(),'--bind') or
13 contains(string(),'/proc') or
14 contains(string(),'readlink') or
15 contains(string(),'-Rv')]"/>
16 </xsl:template>
17
18 <xsl:template match="userinput">
19 <xsl:apply-templates/>
20 <xsl:text>
21</xsl:text>
22 </xsl:template>
23
24</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.