Changeset f0de954


Ignore:
Timestamp:
06/04/2014 07:55:51 PM (10 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
2.4, ablfs-more, legacy, new_features, trunk
Children:
bb2862d
Parents:
3f83cb0
Message:

CLFS puts fstab in config and not anymore in bootable.
Thanks to Chris Staub for the report.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CLFS/master.sh

    r3f83cb0 rf0de954  
    732732      *udev)     continue ;; # This is not a script but a commentary, we want udev-rules
    733733      *console*) continue ;; # Use the files that came with the bootscripts
     734# fstab is now here (for 3.x.y)
     735      *fstab)  [[ ! -z ${FSTAB} ]] && cp ${FSTAB} $BUILDDIR/sources/fstab ;;
    734736      *)  ;;
    735737    esac
     
    772774    fi
    773775    #
    774     CHROOT_wrt_RunAsRoot "${file}"
     776    case $this_script in
     777      *fstab*)   if [[ -n "$FSTAB" ]]; then
     778                   CHROOT_wrt_CopyFstab
     779                 else
     780                   CHROOT_wrt_RunAsRoot  "${file}"
     781                 fi
     782        ;;
     783      *) CHROOT_wrt_RunAsRoot "${file}"
     784        ;;
     785    esac
    775786    #
    776787    # Write installed files log and remove the build directory(ies)
Note: See TracChangeset for help on using the changeset viewer.