Changeset 47fddc8 for Config.in


Ignore:
Timestamp:
08/12/2006 07:59:11 PM (18 years ago)
Author:
George Boudreau <georgeb@…>
Branches:
experimental
Children:
3fa20d4
Parents:
54f4782
Message:

Change bool parameter definitions from 0/1 to y/n to match the new menu app

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Config.in

    r54f4782 r47fddc8  
    337337                        #-- The directory where the created system will be located.
    338338
    339         config  CONFIG_GETPKG
     339        config  GETPKG
    340340                bool "Retrieve source files"
    341341                default n
     
    349349                string "Package Archive Directory"
    350350                default "$SRC_ARCHIVE"
    351                 depends CONFIG_GETPKG
     351                depends GETPKG
    352352                help
    353353                        #-- A local archive for packages/file (not $BUILDDIR/sources)
     
    356356                        #   if the user has the right priviledges.
    357357
    358         config  CONFIG_GETKERNEL
     358        config  GETKERNEL
    359359                bool    "Always retrieve kernel package"
    360360                default n
    361                 depends CONFIG_GETPKG
     361                depends GETPKG
    362362                help
    363363                        #-- Get the kernel package and patches even if no configuration
    364364                        #   file has been supplied.
    365365
    366         config  CONFIG_RUNMAKE
     366        config  RUNMAKE
    367367                bool    "Run the makefile"
    368368                default n
     
    370370                        #-- Automatically run the makefile once it has been created
    371371
    372         config  CONFIG_REBUILD
     372        config  CLEAN
    373373                bool    "Rebuild files"
    374374                default n
     
    431431                default "3"     if TST_3
    432432
    433         choice
     433        choice 
    434434                prompt  "Flavour ->"
    435435                depends CONFIG_TESTS
    436                 default NO_BOMB
    437436
    438437                config  NO_BOMB
    439438                        bool    "Don't stop on test suite failures"
     439                        default n
    440440
    441441                config  BOMB
    442442                        bool    "Abort the build at the first test suite failure"
     443                        default n
    443444        endchoice
    444445
    445446        config  BOMB_TEST
    446                 int
    447                 default "0"     if NO_BOMB
    448                 default "1"     if BOMB
     447                bool
     448                default BOMB
     449
    449450        #--- End Test Suites
    450451
     
    495496        #--- End Kernel
    496497
    497         config  CONFIG_STRIP
     498        config  STRIP
    498499                bool "Strip Installed Binaries/Libraries"
    499500                default y
    500501
    501         config  CONFIG_VIMLANG
     502        config  VIMLANG
    502503                bool "Install vim-lang package"
    503504                default y
     
    550551menu "--- Advanced Features"
    551552
    552         config  CONFIG_REPORT
     553        config  REPORT
    553554                bool "Create SBU and disk usage report"
    554555                default y
    555556
    556557        #--- ICA/farce
    557         config  CONFIG_COMPARE
     558        config  COMPARE
    558559                bool "Run comparison analysis on final stage"
    559560                depends !BOOK_CLFS2
     
    575576
    576577        config  ITERATIONS
    577                 int     "Number of test runs (2,3,4,5)"
    578                 depends on CONFIG_COMPARE
     578                int     "Number of test runs (2,3,4,5)" if COMPARE
     579                depends on COMPARE
    579580                range   2 5
    580581                default 3
    581582
    582         config  CONFIG_ICA
     583        config  RUN_ICA
    583584                bool    "ICA testing"
    584                 depends on CONFIG_COMPARE
     585                depends on COMPARE
    585586                default y
    586587                help
    587588                        #-- Run ICA testing
    588589
    589         config  CONFIG_FARCE
     590        config  RUN_FARCE
    590591                bool    "farce testing"
    591                 depends on CONFIG_COMPARE
     592                depends on COMPARE
    592593                default n
    593594                help
     
    648649
    649650
    650 # convert CONFIG_XXXX n/y to XXXX 0/1
    651 
    652         config  COMPARE
    653                 int
    654                 default 0       if !CONFIG_COMPARE
    655                 default 1       if  CONFIG_COMPARE
    656 
    657         config  GETPKG
    658                 int
    659                 default 0       if !CONFIG_GETPKG
    660                 default 1       if  CONFIG_GETPKG
    661 
    662         config  GETKERNEL
    663                 int
    664                 default 0       if !CONFIG_GETKERNEL
    665                 default 1       if  CONFIG_GETKERNEL
    666 
    667         config  RUNMAKE
    668                 int
    669                 default 0       if !CONFIG_RUNMAKE
    670                 default 1       if  CONFIG_RUNMAKE
    671 
    672         config  STRIP
    673                 int
    674                 default 0       if !CONFIG_STRIP
    675                 default 1       if  CONFIG_STRIP
    676 
    677         config  REPORT
    678                 int
    679                 default 0       if !CONFIG_REPORT
    680                 default 1       if  CONFIG_REPORT
    681 
    682         config  VIMLANG
    683                 int
    684                 default 0       if !CONFIG_VIMLANG
    685                 default 1       if  CONFIG_VIMLANG
    686 
    687         config  RUN_ICA
    688                 int
    689                 default 0       if !CONFIG_ICA
    690                 default 1       if  CONFIG_ICA
    691 
    692         config  RUN_FARCE
    693                 int
    694                 default 0       if !CONFIG_FARCE
    695                 default 1       if  CONFIG_FARCE
    696 
    697         config  CLEAN
    698                 int
    699                 default 0       if !CONFIG_REBUILD
    700                 default 1       if  CONFIG_REBUILD
Note: See TracChangeset for help on using the changeset viewer.