Changeset b5effd5


Ignore:
Timestamp:
08/17/2006 02:22:40 AM (18 years ago)
Author:
George Boudreau <georgeb@…>
Branches:
experimental
Children:
480390a
Parents:
711f160
Message:

BLFS: Housekeeping on gen_config.sh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BLFS/gen_config.sh

    r711f160 rb5effd5  
    6262    if [ -e $TRACKING_DIR/${PKG_NAME} ]; then continue; fi
    6363    META_PKG=$(echo ${PKG_NAME} | tr [a-z] [A-Z])
    64 #(
    65 #cat << EOF
    66 #       config  META_$META_PKG
    67 #               bool    "$(echo ${PKG_NAME} | tr [a-z] [A-Z]) components"
    68 #EOF
    69 #) >> $outFile
    7064     echo -e "menu \"$(echo ${PKG_NAME} | tr [a-z] [A-Z]) components\"" >> $outFile
    7165       # Include the dependency data for this meta package
     
    7771cat << EOF
    7872        config  DEP_${META_PKG}_${PKG_NAME}
    79 #               depends META_${META_PKG}
    8073                bool    "$PKG_NAME ${PKG_VER}"
    8174                default y
     
    226219choice 
    227220        prompt  "Select dependency level"
    228         default DEP_2
    229        
    230         config  DEP_1
     221        default DEPLVL_2
     222       
     223        config  DEPLVL_1
    231224        bool    "Required dependencies only"
    232225       
    233         config  DEP_2
     226        config  DEPLVL_2
    234227        bool    "Required and recommended dependencies"
    235228       
    236         config  DEP_3
     229        config  DEPLVL_3
    237230        bool    "Required, recommended and optional dependencies"
    238231       
     
    241234config  optDependency
    242235        int
    243         default 1       if DEP_1
    244         default 2       if DEP_2
    245         default 3       if DEP_3
     236        default 1       if DEPLVL_1
     237        default 2       if DEPLVL_2
     238        default 3       if DEPLVL_3
    246239       
    247240       
Note: See TracChangeset for help on using the changeset viewer.