Changeset 179 for floppyfw/Config.in

Show
Ignore:
Timestamp:
12/24/06 13:53:28 (5 years ago)
Author:
root
Message:

More messing around to get a working modules.dep and new kernel version.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • floppyfw/Config.in

    r155 r179  
    2020        string "Subversion (svn) checkout command" 
    2121        default "svn co" 
     22 
     23config BR2_ZCAT 
     24        string "zcat command" 
     25        default "zcat" 
     26        help 
     27          Command to be used to extract a gzip'ed file to stdout. 
     28          zcat is identical to gunzip -c except that the former may 
     29          not be available on your system. 
     30          Default is "zcat" 
     31          Other possible values include "gunzip -c" or "gzip -d -c". 
     32 
     33config BR2_BZCAT 
     34        string "bzcat command" 
     35        default "bzcat" 
     36        help 
     37          Command to be used to extract a bzip2'ed file to stdout. 
     38          bzcat is identical to bunzip2 -c except that the former may 
     39          not be available on your system. 
     40          Default is "bzcat" 
     41          Other possible values include "bunzip2 -c" or "bzip2 -d -c". 
     42 
     43config BR2_UPX 
     44        string "upx command" 
     45        default "upx-1.11" 
     46        help 
     47          Command to (eventually) be used to compress the Linux kernel. 
    2248 
    2349config BR2_TAR_OPTIONS