Changeset 401f81e for Config.in


Ignore:
Timestamp:
08/16/2006 05:42:54 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
fdb330a
Parents:
5be3651
Message:

Ported Makefile clean-up and 0/1 to n/y migration code from experimental.
There is no obvious bugs, let users to find hidden bugs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Config.in

    r5be3651 r401f81e  
    5959
    6060        config  BRANCH_ID
    61                 string  "Branch (mandatory)"
     61                string  "Book Version (mandatory)"
    6262                default "**EDIT ME**"
    6363                depends BRANCH
     
    251251
    252252        #--- HLFS specific params
    253         config  CONFIG_GRSECURITY_HOST
     253        config  GRSECURITY_HOST
    254254                bool    "Building on grsecurity enabled host?"
    255255                default n
     
    357357                        #-- The directory where the created system will be located.
    358358
    359         config  CONFIG_GETPKG
     359        config  GETPKG
    360360                bool "Retrieve source files"
    361361                default n
     
    369369                string "Package Archive Directory"
    370370                default "$SRC_ARCHIVE"
    371                 depends CONFIG_GETPKG
     371                depends GETPKG
    372372                help
    373373                        #-- A local archive for packages/file (not $BUILDDIR/sources)
     
    376376                        #   if the user has the right priviledges.
    377377
    378         config  CONFIG_GETKERNEL
     378        config  GETKERNEL
    379379                bool    "Always retrieve kernel package"
    380380                default n
    381                 depends CONFIG_GETPKG
     381                depends GETPKG
    382382                help
    383383                        #-- Get the kernel package and patches even if no configuration
    384384                        #   file has been supplied.
    385385
    386         config  CONFIG_RUNMAKE
     386        config  RUNMAKE
    387387                bool    "Run the makefile"
    388388                default n
     
    390390                        #-- Automatically run the makefile once it has been created
    391391
    392         config  CONFIG_REBUILD
     392        config  CLEAN
    393393                bool    "Rebuild files"
    394394                default n
     
    410410                bool    "Run testsuites"
    411411                depends !BOOK_CLFS2
    412                 default n
     412                default y
    413413                help
    414414                        #-- Run test suites
     
    455455                prompt  "Flavour ->"
    456456                depends CONFIG_TESTS
    457                 default NO_BOMB
    458457
    459458                config  NO_BOMB
    460459                        bool    "Don't stop on test suite failures"
     460                        default n
    461461
    462462                config  BOMB
    463463                        bool    "Abort the build at the first test suite failure"
     464                        default n
    464465        endchoice
    465466
    466467        config  BOMB_TEST
    467                 int
    468                 default "0"     if NO_BOMB
    469                 default "1"     if BOMB
     468                bool
     469                default BOMB
     470
    470471        #--- End Test Suites
    471472
     
    516517        #--- End Kernel
    517518
    518         config  CONFIG_STRIP
     519        config  STRIP
    519520                bool "Strip Installed Binaries/Libraries"
    520521                default y
    521522
    522         config  CONFIG_VIMLANG
     523        config  VIMLANG
    523524                bool "Install vim-lang package"
    524525                default y
    525526                help
    526                         #-- install the optional vim-lang package
     527                        #-- Install the optional vim-lang package
    527528
    528529        config  TIMEZONE
     
    572573        depends on !BOOK_BLFS
    573574
    574         config  CONFIG_REPORT
     575        config  REPORT
    575576                bool "Create SBU and disk usage report"
    576577                default y
    577578
    578579        #--- ICA/farce
    579         config  CONFIG_COMPARE
     580        config  COMPARE
    580581                bool "Run comparison analysis on final stage"
    581582                depends !BOOK_CLFS2
     
    597598
    598599        config  ITERATIONS
    599                 int     "Number of test runs (2,3,4,5)"
    600                 depends on CONFIG_COMPARE
     600                int     "Number of test runs (2,3,4,5)" if COMPARE
     601                depends on COMPARE
    601602                range   2 5
    602603                default 3
    603604
    604         config  CONFIG_ICA
     605        config  RUN_ICA
    605606                bool    "ICA testing"
    606                 depends on CONFIG_COMPARE
     607                depends on COMPARE
    607608                default y
    608609                help
    609610                        #-- Run ICA testing
    610611
    611         config  CONFIG_FARCE
     612        config  RUN_FARCE
    612613                bool    "farce testing"
    613                 depends on CONFIG_COMPARE
     614                depends on COMPARE
    614615                default n
    615616                help
     
    668669#               default "none"
    669670#               depends CONFIG_BLFS_CMDS
    670 
    671 
    672 # convert CONFIG_XXXX n/y to XXXX 0/1
    673 
    674         config  GRSECURITY_HOST
    675                 int
    676                 default 0       if !CONFIG_GRSECURITY_HOST
    677                 default 1       if  CONFIG_GRSECURITY_HOST
    678 
    679         config  COMPARE
    680                 int
    681                 default 0       if !CONFIG_COMPARE
    682                 default 1       if  CONFIG_COMPARE
    683 
    684         config  GETPKG
    685                 int
    686                 default 0       if !CONFIG_GETPKG
    687                 default 1       if  CONFIG_GETPKG
    688 
    689         config  GETKERNEL
    690                 int
    691                 default 0       if !CONFIG_GETKERNEL
    692                 default 1       if  CONFIG_GETKERNEL
    693 
    694         config  RUNMAKE
    695                 int
    696                 default 0       if !CONFIG_RUNMAKE
    697                 default 1       if  CONFIG_RUNMAKE
    698 
    699         config  STRIP
    700                 int
    701                 default 0       if !CONFIG_STRIP
    702                 default 1       if  CONFIG_STRIP
    703 
    704         config  REPORT
    705                 int
    706                 default 0       if !CONFIG_REPORT
    707                 default 1       if  CONFIG_REPORT
    708 
    709         config  VIMLANG
    710                 int
    711                 default 0       if !CONFIG_VIMLANG
    712                 default 1       if  CONFIG_VIMLANG
    713 
    714         config  RUN_ICA
    715                 int
    716                 default 0       if !CONFIG_ICA
    717                 default 1       if  CONFIG_ICA
    718 
    719         config  RUN_FARCE
    720                 int
    721                 default 0       if !CONFIG_FARCE
    722                 default 1       if  CONFIG_FARCE
    723 
    724         config  CLEAN
    725                 int
    726                 default 0       if !CONFIG_REBUILD
    727                 default 1       if  CONFIG_REBUILD
Note: See TracChangeset for help on using the changeset viewer.