Changeset 821a2c6


Ignore:
Timestamp:
03/10/2006 10:27:16 PM (18 years ago)
Author:
George Boudreau <georgeb@…>
Branches:
experimental
Children:
dd810ea
Parents:
6aeb5b7
Message:

LFS/master.sh -- removed bash patch for copying CONFIG, now done via XSL

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • HLFS/master.sh

    r6aeb5b7 r821a2c6  
    175175    case $this_script in
    176176      # If no testsuites will be run, then TCL, Expect and DejaGNU aren't needed
    177       *tcl* )     [[ "$TOOLCHAINTEST" = "0" ]] && continue; ;;
    178       *expect* )  [[ "$TOOLCHAINTEST" = "0" ]] && continue; ;;
    179       *dejagnu* ) [[ "$TOOLCHAINTEST" = "0" ]] && continue; ;;
     177      *tcl* )     [[ "$TEST" = "0" ]] && continue; ;;
     178      *expect* )  [[ "$TEST" = "0" ]] && continue; ;;
     179      *dejagnu* ) [[ "$TEST" = "0" ]] && continue; ;;
    180180        # Test if the stripping phase must be skipped
    181181      *stripping* ) [[ "$STRIP" = "0" ]] && continue ;;
     
    452452      *console) continue  ;; # Use the file generated by lfs-bootscripts
    453453
    454       *kernel)  # How does Manuel add this string to the file..
     454      *kernel) 
     455          # If no .config file is supplied, the kernel build is skipped
     456        [[ -z $CONFIG ]] && continue
     457          # How does Manuel add this string to the file..
    455458        sed 's|cd \$PKGDIR.*||'         -i chapter07/$this_script
    456459          # You cannot run menuconfig from within the makefile
     
    466469          sed '/drivers\/char/d'        -i chapter07/$this_script
    467470        fi
    468           # If no .config file is supplied, the kernel build is skipped
    469         [[ -z $CONFIG ]] && continue
    470471         ;;
    471472      *usage)   # The script bombs, disable error trapping
  • LFS/master.sh

    r6aeb5b7 r821a2c6  
    261261    fi
    262262
    263     # Put in place the kernel .config file
    264     if [[ `_IS_ ${this_script} kernel` ]] ; then
    265 (
    266     cat << EOF
    267         @cp $CONFIG \$(MOUNT_PT)/sources/kernel-config
    268 EOF
    269 ) >> $MKFILE.tmp
    270     fi
    271 
    272263      # Check if we have a real /etc/fstab file
    273264    if [[ `_IS_ ${this_script} fstab` ]] && [[ -n "$FSTAB" ]] ; then
Note: See TracChangeset for help on using the changeset viewer.