Changeset 47dfc81


Ignore:
Timestamp:
03/09/2021 08:58:44 PM (4 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
ablfs-more, legacy, trunk
Children:
82eacf5
Parents:
c2af9cd7
Message:

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)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LFS/master.sh

    rc2af9cd7 r47dfc81  
    300300  teardown=`cat ../kernfs-scripts/teardown.sh | \
    301301            sed -e 's|^|        |'   \
    302                 -e 's|umount|sudo &|' \
     302                -e 's|umount|-sudo &|' \
    303303                -e 's|\$LFS|$(MOUNT_PT)|'`
    304304  teardownat=`cat ../kernfs-scripts/teardown.sh | \
  • common/kernfs.xsl

    rc2af9cd7 r47dfc81  
    1212    <xsl:apply-templates select="//userinput[contains(string(),'--bind') or
    1313                                             contains(string(),'/proc') or
    14                                              contains(string(),'readlink')]"/>
     14                                             contains(string(),'readlink') or
     15                                             contains(string(),'-Rv')]"/>
    1516  </xsl:template>
    1617
Note: See TracChangeset for help on using the changeset viewer.