summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2003-09-13 09:51:21 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2003-09-13 09:51:21 +0000
commitaf86b9f42cbb8ebecc7ef5f6adf618570da13e88 (patch)
tree473caeefc333b8e92f51a02add1f00ab0b468837 /config
parentf9baa22e65dd59f020a18d5a3e04941f31a889e1 (diff)
downloadptxdist-af86b9f42cbb8ebecc7ef5f6adf618570da13e88.tar.gz
ptxdist-af86b9f42cbb8ebecc7ef5f6adf618570da13e88.tar.xz
Added. [RSC]
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunk@309 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'config')
-rwxr-xr-xconfig/busybox-1.0.0-pre3/Extract48
-rwxr-xr-xconfig/busybox-1.0.0-pre3/Remove4
-rw-r--r--config/busybox-1.0.0-pre3/archival/Config.in238
-rw-r--r--config/busybox-1.0.0-pre3/console-tools/Config.in75
-rw-r--r--config/busybox-1.0.0-pre3/coreutils/Config.in604
-rw-r--r--config/busybox-1.0.0-pre3/debianutils/Config.in53
-rw-r--r--config/busybox-1.0.0-pre3/editors/Config.in133
-rw-r--r--config/busybox-1.0.0-pre3/findutils/Config.in102
-rw-r--r--config/busybox-1.0.0-pre3/init/Config.in98
-rw-r--r--config/busybox-1.0.0-pre3/loginutils/Config.in137
-rw-r--r--config/busybox-1.0.0-pre3/miscutils/Config.in152
-rw-r--r--config/busybox-1.0.0-pre3/modutils/Config.in127
-rw-r--r--config/busybox-1.0.0-pre3/networking/Config.in603
-rw-r--r--config/busybox-1.0.0-pre3/networking/udhcp/Config.in63
-rw-r--r--config/busybox-1.0.0-pre3/procps/Config.in77
-rw-r--r--config/busybox-1.0.0-pre3/shell/Config.in207
-rw-r--r--config/busybox-1.0.0-pre3/sysdeps/linux/Config.in276
-rw-r--r--config/busybox-1.0.0-pre3/sysklogd/Config.in83
-rw-r--r--config/busybox-1.0.0-pre3/util-linux/Config.in361
19 files changed, 3441 insertions, 0 deletions
diff --git a/config/busybox-1.0.0-pre3/Extract b/config/busybox-1.0.0-pre3/Extract
new file mode 100755
index 000000000..ed84b04c6
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/Extract
@@ -0,0 +1,48 @@
+#!/usr/bin/perl
+
+# find out which version of busybox we have; this is taken from the name
+# of this directory
+$bb_version = `basename \`pwd\``;
+chomp $bb_version;
+$bb_version =~ s/busybox-//;
+
+#
+# first extract all configuration files from the original source tree
+#
+
+@configfiles = `find ../../build/busybox* -name "Config.in"`;
+
+while($_ = shift @configfiles) {
+ chomp $_;
+ my $filename = $_; $filename =~ s/(.*\/busybox.*?)\/(.*$)/$2/;
+ my $dir = $filename; $dir =~ s/(.*\/)(.*$)/$1/;
+ system("mkdir -p $dir");
+ system("../../scripts/mkprefix -v -p BB_ < $_ > $filename");
+}
+
+
+#
+# fix some entries
+#
+
+print "---------------------------------------------------------------------\n";
+print "Fixing some stuff...\n";
+print "---------------------------------------------------------------------\n";
+
+@fixfiles = `find . -name "Config.in"`;
+
+while($file = shift @fixfiles) {
+
+ open (FILE, "$file");
+ @file = <FILE>;
+ close FILE;
+
+ for (@file) { $_ =~ s/^source (.*)/source config\/busybox-$bb_version\/$1/g; }
+ for (@file) { $_ =~ s/^mainmenu (.*$)/# mainmenu $1/g; }
+ for (@file) { $_ =~ s/^(menu .*)$/$1\n depends on BUSYBOX/g; }
+
+ open (FILE, ">$file");
+ print FILE @file;
+ close FILE;
+
+}
diff --git a/config/busybox-1.0.0-pre3/Remove b/config/busybox-1.0.0-pre3/Remove
new file mode 100755
index 000000000..d7740740d
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/Remove
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+find . -type d | grep -v "\.$" | xargs rm -fr
+
diff --git a/config/busybox-1.0.0-pre3/archival/Config.in b/config/busybox-1.0.0-pre3/archival/Config.in
new file mode 100644
index 000000000..92117ecbc
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/archival/Config.in
@@ -0,0 +1,238 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Archival Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_AR
+ bool "ar"
+ default n
+ help
+ ar is an archival utility program used to create, modify, and
+ extract contents from archives. An archive is a single file holding
+ a collection of other files in a structure that makes it possible to
+ retrieve the original individual files (called archive members).
+ The original files' contents, mode (permissions), timestamp, owner,
+ and group are preserved in the archive, and can be restored on
+ extraction.
+
+ The stored filename is limited to 15 characters. (for more information
+ see long filename support).
+ ar has 60 bytes of overheads for every stored file.
+
+ This implementation of ar can extract archives, it cannot create or
+ modify them.
+ On an x86 system, the ar applet adds about 1K.
+
+ Unless you have a specific application which requires ar, you should
+ probably say N here.
+
+config BB_CONFIG_FEATURE_AR_LONG_FILENAMES
+ bool " Enable support for long filenames (not need for debs)"
+ default n
+ depends on BB_CONFIG_AR
+ help
+ By default the ar format can only store the first 15 characters of the
+ filename, this option removes that limitation.
+ It supports the GNU ar long filename method which moves multiple long
+ filenames into a the data section of a new ar entry.
+
+config BB_CONFIG_BUNZIP2
+ bool "bunzip2"
+ default n
+ help
+ bunzip2 is an compression utility using the Burrows-Wheeler block
+ sorting text compression algorithm, and Huffman coding. Compression
+ is generally considerably better than that achieved by more
+ conventional LZ77/LZ78-based compressors, and approaches the
+ performance of the PPM family of statistical compressors.
+
+ The BusyBox bunzip2 applet is limited to de-compression only.
+ On an x86 system, this applet adds about 11K.
+
+ Unless you have a specific application which requires bunzip2, you
+ should probably say N here.
+
+config BB_CONFIG_CPIO
+ bool "cpio"
+ default n
+ help
+ cpio is an archival utility program used to create, modify, and extract
+ contents from archives.
+ cpio has 110 bytes of overheads for every stored file.
+
+ This implementation of cpio can extract cpio archives created in the
+ "newc" or "crc" format, it cannot create or modify them.
+
+ Unless you have a specific application which requires cpio, you should
+ probably say N here.
+
+config BB_CONFIG_DPKG
+ bool "dpkg"
+ default n
+ help
+ dpkg is a medium-level tool to install, build, remove and manage Debian packages.
+
+ This implementation of dpkg has a number of limitations, you should use the
+ official dpkg if possible.
+
+config BB_CONFIG_DPKG_DEB
+ bool "dpkg_deb"
+ default n
+ help
+ dpkg-deb packs, unpacks and provides information about Debian archives.
+
+ This implementation of dpkg-deb cannot pack archives.
+
+ Unless you have a specific application which requires dpkg-deb, you should
+ probably say N here.
+
+config BB_CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY
+ bool " extract only (-x)"
+ default n
+ depends on BB_CONFIG_DPKG_DEB
+ help
+ This reduced dpkg-deb to the equivalent of "ar -p <deb> data.tar.gz | tar -zx".
+ However it saves space as none of the extra dpkg-deb, ar or tar options are
+ needed, they are linked to internally.
+
+config BB_CONFIG_FEATURE_DEB_TAR_GZ
+ bool " gzip debian packages (normal)"
+ default y if BB_CONFIG_DPKG || BB_CONFIG_DPKG_DEB
+ depends on BB_CONFIG_DPKG || BB_CONFIG_DPKG_DEB
+ help
+ This is the default compression method inside the debian ar file.
+
+ If you want compatability with standard .deb's you should say yes here.
+
+config BB_CONFIG_FEATURE_DEB_TAR_BZ2
+ bool " bzip2 debian packages"
+ default n
+ depends on BB_CONFIG_DPKG || BB_CONFIG_DPKG_DEB
+ help
+ This allows dpkg and dpkg-deb to extract deb's that are compressed internally
+ with bzip2 instead of gzip.
+
+ You only want this is your are creating your own custom debian packages that
+ use an internal control.tar.bz2 or data.tar.bz2.
+
+config BB_CONFIG_GUNZIP
+ bool "gunzip"
+ default n
+ help
+ gunzip is used to decompress archives created by gzip.
+ You can use the `-t' option to test the integrity of
+ an archive, without decompressing it.
+
+config BB_CONFIG_FEATURE_GUNZIP_UNCOMPRESS
+ bool " Uncompress support"
+ default n
+ depends on BB_CONFIG_GUNZIP
+ help
+ If you want gunzip to have the ability to decompress
+ archives created by the program compress (not much
+ used anymore).
+
+config BB_CONFIG_GZIP
+ bool "gzip"
+ default n
+ help
+ gzip is used to compress files.
+ It's probably the most used UNIX compression program.
+
+config BB_CONFIG_RPM2CPIO
+ bool "rpm2cpio"
+ default n
+ help
+ Converts an RPM file into a CPIO archive.
+
+config BB_CONFIG_RPM
+ bool "rpm"
+ default n
+ help
+ Mini RPM applet - querys and extracts
+
+config BB_CONFIG_TAR
+ bool "tar"
+ default n
+ help
+ tar is an archiving program. It's commonly used with gzip to
+ create compressed archives. It's probably the most used
+ UNIX archive program.
+
+config BB_CONFIG_FEATURE_TAR_CREATE
+ bool " Enable archive creation"
+ default y
+ depends on BB_CONFIG_TAR
+ help
+ If you enable this option you'll be able to create
+ tar archives using the `-c' option.
+
+config BB_CONFIG_FEATURE_TAR_BZIP2
+ bool " Enable -j option to handle .tar.bz2 files"
+ default n
+ depends on BB_CONFIG_TAR
+ help
+ If you enable this option you'll be able to extract
+ archives compressed with bzip2.
+
+config BB_CONFIG_FEATURE_TAR_EXCLUDE
+ bool " Enable -X and --exclude options (exclude files)"
+ default n
+ depends on BB_CONFIG_TAR
+ help
+ If you enable this option you'll be able to specify
+ a list of files to exclude from an archive.
+
+config BB_CONFIG_FEATURE_TAR_GZIP
+ bool " Enable -z option"
+ default y
+ depends on BB_CONFIG_TAR
+ help
+ If you enable this option tar will be able to call gzip,
+ when creating or extracting tar gziped archives.
+
+config BB_CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY
+ bool " Enable support for old tar header format"
+ default N
+ depends on BB_CONFIG_TAR
+ help
+ This option is required to unpack archives created with
+ in the old GNU format, help to kill this old format by
+ repacking your ancient archives with the new format.
+
+config BB_CONFIG_FEATURE_TAR_GNU_EXTENSIONS
+ bool " Enable support for some GNU tar extensions"
+ default y
+ depends on BB_CONFIG_TAR
+ help
+ With this option busybox supports GNU long filenames and
+ linknames.
+
+config BB_CONFIG_FEATURE_UNARCHIVE_TAPE
+ bool " Enable tape drive support"
+ default n
+ depends on BB_CONFIG_TAR || BB_CONFIG_CPIO
+ help
+ I dont think this is needed anymore.
+
+config BB_CONFIG_UNCOMPRESS
+ bool "uncompress"
+ default n
+ help
+ uncompress is used to decompress archives created by compress.
+ Not much used anymore, replaced by gzip/gunzip.
+
+config BB_CONFIG_UNZIP
+ bool "unzip"
+ default n
+ help
+ unzip will list or extract files from a ZIP archive,
+ commonly found on DOS/WIN systems. The default behavior
+ (with no options) is to extract the archive into the
+ current directory. Use the `-d' option to extract to a
+ directory of your choice.
+
+endmenu
diff --git a/config/busybox-1.0.0-pre3/console-tools/Config.in b/config/busybox-1.0.0-pre3/console-tools/Config.in
new file mode 100644
index 000000000..a0e81ac8d
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/console-tools/Config.in
@@ -0,0 +1,75 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Console Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_CHVT
+ bool "chvt"
+ default n
+ help
+ This program is used to change to another terminal.
+ Example: chvt 4 (change to terminal /dev/tty4)
+
+config BB_CONFIG_CLEAR
+ bool "clear"
+ default n
+ help
+ This program clears the terminal screen.
+
+config BB_CONFIG_DEALLOCVT
+ bool "deallocvt"
+ default n
+ help
+ This program deallocates unused virtual consoles.
+
+config BB_CONFIG_DUMPKMAP
+ bool "dumpkmap"
+ default n
+ help
+ This program dumps the kernel's keyboard translation table to
+ stdout, in binary format. You can then use loadkmap to load it.
+
+config BB_CONFIG_LOADACM
+ bool "loadacm"
+ default n
+ help
+ This program loads an acm from standard input.
+
+config BB_CONFIG_LOADFONT
+ bool "loadfont"
+ default n
+ help
+ This program loads a console font from standard input.
+
+config BB_CONFIG_LOADKMAP
+ bool "loadkmap"
+ default n
+ help
+ This program loads a keyboard translation table from
+ standard input.
+
+config BB_CONFIG_OPENVT
+ bool "openvt"
+ default n
+ help
+ This program is used to start a command on an unused
+ virtual terminal.
+
+config BB_CONFIG_RESET
+ bool "reset"
+ default n
+ help
+ This program is used to reset the terminal screen, if it
+ gets messed up.
+
+config BB_CONFIG_SETKEYCODES
+ bool "setkeycodes"
+ default n
+ help
+ This program loads entries into the kernel's scancode-to-keycode
+ map, allowing unusual keyboards to generate usable keycodes.
+
+endmenu
diff --git a/config/busybox-1.0.0-pre3/coreutils/Config.in b/config/busybox-1.0.0-pre3/coreutils/Config.in
new file mode 100644
index 000000000..5c74c0bc7
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/coreutils/Config.in
@@ -0,0 +1,604 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Coreutils"
+ depends on BUSYBOX
+
+config BB_CONFIG_BASENAME
+ bool "basename"
+ default n
+ help
+ basename is used to strip the directory and suffix from filenames,
+ leaving just the filename itself. Enable this option if you wish
+ to enable the 'basename' utility.
+
+config BB_CONFIG_CAL
+ bool "cal"
+ default n
+ help
+ cal is used to display a montly calender.
+
+config BB_CONFIG_CAT
+ bool "cat"
+ default n
+ help
+ cat is used to concatenate files and print them to the standard
+ output. Enable this option if you wish to enable the 'cat' utility.
+
+config BB_CONFIG_CHGRP
+ bool "chgrp"
+ default n
+ help
+ chgrp is used to change the group owership of files.
+
+config BB_CONFIG_CHMOD
+ bool "chmod"
+ default n
+ help
+ chmod is used to change the access permission of files.
+
+config BB_CONFIG_CHOWN
+ bool "chown"
+ default n
+ help
+ chown is used too change the user and/or group ownership
+ of files.
+
+config BB_CONFIG_CHROOT
+ bool "chroot"
+ default n
+ help
+ chroot is used to change the root directory and run a command.
+ The default command is `/bin/sh'.
+
+config BB_CONFIG_CMP
+ bool "cmp"
+ default n
+ help
+ cmp is used to compare two files and returns the result
+ to standard output.
+
+config BB_CONFIG_CP
+ bool "cp"
+ default n
+ help
+ cp is used to copy files and directories.
+
+config BB_CONFIG_CUT
+ bool "cut"
+ default n
+ help
+ cut is used to print selected parts of lines from
+ each file to stdout.
+
+if BB_CONFIG_WATCH
+ config BB_CONFIG_DATE
+ default y
+ comment "date (forced enabled for use with watch)"
+endif
+
+if !BB_CONFIG_WATCH
+ config BB_CONFIG_DATE
+ bool "date"
+ default n
+ help
+ date is used to set the system date or display the
+ current time in the given format.
+endif
+
+config BB_CONFIG_FEATURE_DATE_ISOFMT
+ bool " Enable ISO date format output (-I)"
+ default y
+ depends on BB_CONFIG_DATE
+ help
+ Enable option (-I) to output an ISO-8601 compliant
+ date/time string.
+
+config BB_CONFIG_DD
+ bool "dd"
+ default n
+ help
+ dd copies a file (from standard input to standard output,
+ by default) using specific input and output blocksizes,
+ while optionally performing conversions on it.
+
+config BB_CONFIG_DF
+ bool "df"
+ default n
+ help
+ df reports the amount of disk space used and available
+ on filesystems.
+
+config BB_CONFIG_DIRNAME
+ bool "dirname"
+ default n
+ help
+ dirname is used to strip a non directory suffix from
+ a file name.
+
+config BB_CONFIG_DOS2UNIX
+ bool "dos2unix/unix2dos"
+ default n
+ help
+ dos2unix is uses to convert a text file from DOS format to
+ UNIX format, and vice versa.
+
+config BB_CONFIG_UNIX2DOS
+ bool
+ default y
+ depends on BB_CONFIG_DOS2UNIX
+
+config BB_CONFIG_DU
+ bool "du (default blocksize of 512 bytes)"
+ default n
+ help
+ du is used to report the amount of disk space used
+ for specified files.
+
+config BB_CONFIG_FEATURE_DU_DEFALT_BLOCKSIZE_1K
+ bool " Use a default blocksize of 1024 bytes (1K)"
+ default y
+ depends on BB_CONFIG_DU
+ help
+ Use a blocksize of (1K) instead of the default 512b.
+
+config BB_CONFIG_ECHO
+ bool "echo (basic SUSv3 version taking no options"
+ default n
+ help
+ echo is used to print a specified string to stdout.
+
+config BB_CONFIG_FEATURE_FANCY_ECHO
+ bool " Enable echo options (-n and -e)"
+ default y
+ depends on BB_CONFIG_ECHO
+ help
+ This adds options (-n and -e) to echo.
+
+config BB_CONFIG_ENV
+ bool "env"
+ default n
+ help
+ env is used to set an environment variable and run
+ a command, without options it displays the current
+ environment.
+
+config BB_CONFIG_EXPR
+ bool "expr"
+ default n
+ help
+ expr is used to calculate numbers and print the result
+ to standard output.
+
+if BB_CONFIG_HUSH || BB_CONFIG_LASH || BB_CONFIG_MSH
+ config BB_CONFIG_FALSE
+ default y
+ comment "false (forced enabled for use with shell)"
+endif
+
+if !BB_CONFIG_HUSH && !BB_CONFIG_LASH && !BB_CONFIG_MSH
+ config BB_CONFIG_FALSE
+ bool "false"
+ default n
+ help
+ false returns an exit code of FALSE (1).
+endif
+
+config BB_CONFIG_FOLD
+ bool "fold"
+ default n
+ help
+ Wrap text to fit a specific width.
+
+config BB_CONFIG_HEAD
+ bool "head"
+ default n
+ help
+ head is used to print the first specified number of lines
+ from files.
+
+config BB_CONFIG_FEATURE_FANCY_HEAD
+ bool " Enable head options (-c, -q, and -v)"
+ default n
+ depends on BB_CONFIG_HEAD
+ help
+ This enables the head options (-c, -q, and -v).
+
+config BB_CONFIG_HOSTID
+ bool "hostid"
+ default n
+ help
+ hostid prints the numeric identifier (in hexadecimal) for
+ the current host.
+
+config BB_CONFIG_ID
+ bool "id"
+ default n
+ help
+ id displays the current user and group ID names.
+
+config BB_CONFIG_LENGTH
+ bool "length"
+ default n
+ help
+ length is used to print out the length of a specified string.
+
+config BB_CONFIG_LN
+ bool "ln"
+ default n
+ help
+ ln is used to create hard or soft links between files.
+
+config BB_CONFIG_LOGNAME
+ bool "logname"
+ default n
+ help
+ logname is used to print the current user's login name.
+
+config BB_CONFIG_LS
+ bool "ls"
+ default n
+ help
+ ls is used to list the contents of directories.
+
+config BB_CONFIG_FEATURE_LS_FILETYPES
+ bool " Enable filetyping options (-p and -F)"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Enable the ls options (-p and -F).
+
+config BB_CONFIG_FEATURE_LS_FOLLOWLINKS
+ bool " Enable symlinks dereferencing (-L)"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Enable the ls option (-L).
+
+config BB_CONFIG_FEATURE_LS_RECURSIVE
+ bool " Enable recursion (-R)"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Enable the ls option (-R).
+
+config BB_CONFIG_FEATURE_LS_SORTFILES
+ bool " Sort the file names"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Allow ls to sort file names alphabetically.
+
+config BB_CONFIG_FEATURE_LS_TIMESTAMPS
+ bool " Show file timestamps"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Allow ls to display timestamps for files.
+
+config BB_CONFIG_FEATURE_LS_USERNAME
+ bool " Show username/groupnames"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Allow ls to display username/groupname for files.
+
+config BB_CONFIG_FEATURE_LS_COLOR
+ bool " Use color to identify file types"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Allow ls to use color when displaying files.
+
+config BB_CONFIG_MD5SUM
+ bool "md5sum"
+ default n
+ help
+ md5sum is used to print or check MD5 checksums.
+
+config BB_CONFIG_MKDIR
+ bool "mkdir"
+ default n
+ help
+ mkdir is used to create directories with the specified names.
+
+config BB_CONFIG_MKFIFO
+ bool "mkfifo"
+ default n
+ help
+ mkfifo is used to create FIFOs (named pipes).
+ The `mknod' program can also create FIFOs.
+
+config BB_CONFIG_MKNOD
+ bool "mknod"
+ default n
+ help
+ mknod is used to create FIFOs or block/character special
+ files with the specified names.
+
+config BB_CONFIG_MV
+ bool "mv"
+ default n
+ help
+ mv is used to move or rename files or directories.
+
+config BB_CONFIG_OD
+ bool "od"
+ default n
+ help
+ od is used to dump binary files in octal and other formats.
+
+config BB_CONFIG_PRINTF
+ bool "printf"
+ default n
+ help
+ printf is used to format and print specified strings.
+ It's similar to `echo' except it has more options.
+
+config BB_CONFIG_PWD
+ bool "pwd"
+ default n
+ help
+ pwd is used to print the current directory.
+
+config BB_CONFIG_REALPATH
+ bool "realpath"
+ default n
+ help
+ Return the canonicalized absolute pathname.
+ This isnt provided by GNU shellutils, but where else does it belong.
+
+config BB_CONFIG_RM
+ bool "rm"
+ default n
+ help
+ rm is used to remove files or directories.
+
+config BB_CONFIG_RMDIR
+ bool "rmdir"
+ default n
+ help
+ rmdir is used to remove empty directories.
+
+config BB_CONFIG_SHA1SUM
+ bool "sha1sum"
+ default n
+ help
+ Compute and check SHA1 message digest
+
+config BB_CONFIG_FEATURE_SHA1SUM_CHECK
+ bool " Enable -c and -w options"
+ default n
+ depends on BB_CONFIG_SHA1SUM
+ help
+ Enabling the -c and -w options allow files to be checked
+ against pre-calculated hash values.
+
+config BB_CONFIG_SLEEP
+ bool "sleep (single integer arg with no suffix)"
+ default n
+ help
+ sleep is used to pause for a specified number of seconds,
+
+config BB_CONFIG_FEATURE_FANCY_SLEEP
+ bool " Enable multiple integer args and optional time suffixes"
+ default n
+ depends on BB_CONFIG_SLEEP
+ help
+ Allow sleep to pause for specified minutes, hours, and days.
+
+config BB_CONFIG_SORT
+ bool "sort"
+ default n
+ help
+ sort is used to sort lines of text in specified files.
+
+config BB_CONFIG_FEATURE_SORT_REVERSE
+ bool " Enable reverse sort"
+ default y
+ depends on BB_CONFIG_SORT
+ help
+ Enable the `-r' option that allows sort to sort lines of
+ text in reverse.
+
+config BB_CONFIG_FEATURE_SORT_UNIQUE
+ bool " Enable unique sort"
+ default y
+ depends on BB_CONFIG_SORT
+ help
+ Enable the `-u' option that allows sort to only sort lines
+ that are uniq.
+
+config BB_CONFIG_STTY
+ bool "stty"
+ default n
+ help
+ stty is used to change and print terminal line settings.
+
+config BB_CONFIG_SYNC
+ bool "sync"
+ default n
+ help
+ sync is used to flush filesystem buffers.
+
+config BB_CONFIG_TAIL
+ bool "tail"
+ default n
+ help
+ tail is used to print the last specified number of lines
+ from files.
+
+config BB_CONFIG_FEATURE_FANCY_TAIL
+ bool " Enable extra tail options (-c, -q, -s, and -v)"
+ default y
+ depends on BB_CONFIG_TAIL
+ help
+ Enable tail options (-c, -q, -s, and -v).
+
+config BB_CONFIG_TEE
+ bool "tee"
+ default n
+ help
+ tee is used to read from standard input and write
+ to standard output and files.
+
+config BB_CONFIG_FEATURE_TEE_USE_BLOCK_IO
+ bool " Enable block i/o (larger/faster) instead of byte i/o."
+ default n
+ depends on BB_CONFIG_TEE
+ help
+ Enable this option for a faster tee, at expense of size.
+
+if BB_CONFIG_ASH || BB_CONFIG_HUSH || BB_CONFIG_LASH || BB_CONFIG_MSH
+ config BB_CONFIG_TEST
+ default y
+ comment "test (forced enabled for use with shell)"
+endif
+
+if !BB_CONFIG_ASH && !BB_CONFIG_HUSH && !BB_CONFIG_LASH && !BB_CONFIG_MSH
+ config BB_CONFIG_TEST
+ bool "test"
+ default n
+ help
+ test is used to check file types and compare values,
+ returning an appropriate exit code. The shells (ash
+ and bash have test builtin).
+endif
+
+config BB_CONFIG_TOUCH
+ bool "touch"
+ default n
+ help
+ touch is used to create or change the access and/or
+ modification timestamp of specified files.
+
+config BB_CONFIG_TR
+ bool "tr"
+ default n
+ help
+ tr is used to squeeze, and/or delete characters from standard
+ input, writing to standard output.
+
+if BB_CONFIG_HUSH || BB_CONFIG_LASH || BB_CONFIG_MSH
+ config BB_CONFIG_TRUE
+ default y
+ comment "true (forced enabled for use with shell)"
+endif
+
+if !BB_CONFIG_HUSH && !BB_CONFIG_LASH && !BB_CONFIG_MSH
+ config BB_CONFIG_TRUE
+ bool "true"
+ default n
+ help
+ true returns an exit code of TRUE (0).
+
+endif
+
+config BB_CONFIG_TTY
+ bool "tty"
+ default n
+ help
+ tty is used to print the name of the current terminal to
+ standard output.
+
+config BB_CONFIG_UNAME
+ bool "uname"
+ default n
+ help
+ uname is used to print system information.
+
+config BB_CONFIG_UNIQ
+ bool "uniq"
+ default n
+ help
+ uniq is used to remove duplicate lines from a sorted file.
+
+config BB_CONFIG_USLEEP
+ bool "usleep"
+ default n
+ help
+ usleep is used to pause for a specified number of microseconds.
+
+config BB_CONFIG_UUDECODE
+ bool "uudecode"
+ default n
+ help
+ uudecode is used to decode a uuencoded file.
+
+config BB_CONFIG_UUENCODE
+ bool "uuencode"
+ default n
+ help
+ uuencode is used to uuencode a file.
+
+config BB_CONFIG_WATCH
+ bool "watch"
+ default n
+ help
+ watch is used to execute a program periodically, showing
+ output to the screen.
+
+config BB_CONFIG_WC
+ bool "wc"
+ default n
+ help
+ wc is used to print the number of bytes, words, and lines,
+ in specified files.
+
+config BB_CONFIG_WHO
+ bool "who"
+ default n
+ help
+ who is used to show who is logged on.
+
+config BB_CONFIG_WHOAMI
+ bool "whoami"
+ default n
+ help
+ whoami is used to print the username of the current
+ user id (same as id -un).
+
+config BB_CONFIG_YES
+ bool "yes"
+ default n
+ help
+ yes is used to repeatedly output a specific string, or
+ the default string `y'.
+
+comment "Common options for cp and mv"
+ depends on BB_CONFIG_CP || BB_CONFIG_MV
+
+config BB_CONFIG_FEATURE_PRESERVE_HARDLINKS
+ bool " Preserve hard links"
+ default n
+ depends on BB_CONFIG_CP || BB_CONFIG_MV
+ help
+ Allow cp and mv to preserve hard links.
+
+comment "Common options for ls and more"
+ depends on BB_CONFIG_LS || BB_CONFIG_MORE
+
+config BB_CONFIG_FEATURE_AUTOWIDTH
+ bool " Calculate terminal & column widths"
+ default y
+ depends on BB_CONFIG_LS || BB_CONFIG_MORE
+ help
+ This option allows utilities such as 'ls' and 'more' to determine the
+ width of the screen, which can allow them to display additional text
+ or avoid wrapping text onto the next line. If you leave this
+ disabled, your utilities will be especially primitive and will be
+ unable to determine the current screen width.
+
+comment "Common options for df, du, ls"
+ depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS
+
+config BB_CONFIG_FEATURE_HUMAN_READABLE
+ bool " Support for human readable output (example 13k, 23M, 235G)"
+ default n
+ depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS
+ help
+ Allow df, du, and ls to have human readable output.
+
+endmenu
diff --git a/config/busybox-1.0.0-pre3/debianutils/Config.in b/config/busybox-1.0.0-pre3/debianutils/Config.in
new file mode 100644
index 000000000..cb6937259
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/debianutils/Config.in
@@ -0,0 +1,53 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Debian Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_MKTEMP
+ bool "mktemp"
+ default n
+ help
+ mktemp is used to create unique temporary files
+
+config BB_CONFIG_READLINK
+ bool "readlink"
+ default n
+ help
+ This program reads a symbolic link and returns the name
+ of the file it points to
+
+config BB_CONFIG_RUN_PARTS
+ bool "run-parts"
+ default n
+ help
+ run-parts is a utility designed to run all the scripts in a directory.
+
+ It is useful to set up a directory like cron.daily, where you need to
+ execute all the scripts in that directory.
+
+ In this implementation of run-parts some features (such as report mode)
+ are not implemented.
+
+ Unless you know that run-parts is used in some of your scripts
+ you can safely say N here.
+
+config BB_CONFIG_START_STOP_DAEMON
+ bool "start-stop-daemon"
+ default y
+ help
+ start-stop-daemon is used to control the creation and
+ termination of system-level processes, usually the ones
+ started during the startup of the system.
+
+config BB_CONFIG_WHICH
+ bool "which"
+ default n
+ help
+ which is used to find programs in your PATH and
+ print out their pathnames.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/editors/Config.in b/config/busybox-1.0.0-pre3/editors/Config.in
new file mode 100644
index 000000000..7a5608f18
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/editors/Config.in
@@ -0,0 +1,133 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Editors"
+ depends on BUSYBOX
+
+config BB_CONFIG_AWK
+ bool "awk"
+ default n
+ help
+ Awk is used as a pattern scanning and processing language. This is
+ the BusyBox implementation of that programming language.
+
+config BB_CONFIG_FEATURE_AWK_MATH
+ bool " Enable math functions (requires libm)"
+ default y
+ depends on BB_CONFIG_AWK
+ help
+ Enable math functions of the Awk programming language.
+ NOTE: This will require libm to be present for linking.
+
+config BB_CONFIG_PATCH
+ bool "patch"
+ default n
+ help
+ Apply a unified diff formated patch.
+
+config BB_CONFIG_SED
+ bool "sed"
+ default n
+ help
+ sed is used to perform text transformations on a file
+ or input from a pipeline.
+
+config BB_CONFIG_FEATURE_SED_EMBEDED_NEWLINE
+ bool " Embeded newline (EXPERIMENTAL)"
+ default n
+ depends on BB_CONFIG_SED
+ help
+ This is a hack to allow matching of '\n' in regular expressions.
+ It works by translating '\n' to "\n" and back.
+ It may introduce unexpected results if you use "\n" in your text.
+
+config BB_CONFIG_VI
+ bool "vi"
+ default n
+ help
+ 'vi' is a text editor. More specifically, it is the One True
+ text editor <grin>. It does, however, have a rather steep
+ learning curve. If you are not already comfortable with 'vi'
+ you may wish to use something else.
+
+config BB_CONFIG_FEATURE_VI_COLON
+ bool " Enable \":\" colon commands (no \"ex\" mode)"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ Enable a limited set of colon commands for vi. This does not
+ provide an "ex" mode.
+
+config BB_CONFIG_FEATURE_VI_YANKMARK
+ bool " Enable yank/put commands and mark cmds"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ This will enable you to use yank and put, as well as mark in
+ busybox vi.
+
+config BB_CONFIG_FEATURE_VI_SEARCH
+ bool " Enable search and replace cmds"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ Select this if you wish to be able to do search and replace in
+ busybox vi.
+
+config BB_CONFIG_FEATURE_VI_USE_SIGNALS
+ bool " Catch signals"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ Selecting this option will make busybox vi signal aware. This will
+ make busybox vi support SIGWINCH to deal with Window Changes, catch
+ Ctrl-Z and Ctrl-C and alarms.
+
+config BB_CONFIG_FEATURE_VI_DOT_CMD
+ bool " Remember previous cmd and \".\" cmd"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ Make busybox vi remember the last command and be able to repeat it.
+
+config BB_CONFIG_FEATURE_VI_READONLY
+ bool " Enable -R option and \"view\" mode"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ Enable the read-only command line option, which allows the user to
+ open a file in read-only mode.
+
+config BB_CONFIG_FEATURE_VI_SETOPTS
+ bool " Enable set-able options, ai ic showmatch"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ Enable the editor to set some (ai, ic, showmatch) options.
+
+config BB_CONFIG_FEATURE_VI_SET
+ bool " Support for :set"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ Support for ":set".
+
+config BB_CONFIG_FEATURE_VI_WIN_RESIZE
+ bool " Handle window resize"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ Make busybox vi behave nicely with terminals that get resized.
+
+config BB_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR
+ bool " Optimize cursor movement"
+ default y
+ depends on BB_CONFIG_VI
+ help
+ This will make the cursor movement faster, but requires more memory
+ and it makes the applet a tiny bit larger.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/findutils/Config.in b/config/busybox-1.0.0-pre3/findutils/Config.in
new file mode 100644
index 000000000..e6b1ed98e
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/findutils/Config.in
@@ -0,0 +1,102 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Finding Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_FIND
+ bool "find"
+ default n
+ help
+ find is used to search your system to find specified files.
+
+config BB_CONFIG_FEATURE_FIND_MTIME
+ bool " Enable modified time matching (-mtime) option"
+ default y
+ depends on BB_CONFIG_FIND
+ help
+ Allow searching based on the modification time of
+ files.
+
+config BB_CONFIG_FEATURE_FIND_PERM
+ bool " Enable permissions matching (-perm) option"
+ default y
+ depends on BB_CONFIG_FIND
+ help
+ Enable searching based on file permissions.
+
+config BB_CONFIG_FEATURE_FIND_TYPE
+ bool " Enable filetype matching (-type) option"
+ default y
+ depends on BB_CONFIG_FIND
+ help
+ Enable searching based on file type (file,
+ directory, socket, device, etc.).
+
+config BB_CONFIG_FEATURE_FIND_XDEV
+ bool " Enable stay in filesystem (-xdev) option"
+ default y
+ depends on BB_CONFIG_FIND
+ help
+ This option will restrict find to a single
+ filesystem.
+
+config BB_CONFIG_FEATURE_FIND_NEWER
+ bool " Enable -newer option for comparing file mtimes"
+ default y
+ depends on BB_CONFIG_FIND
+ help
+ Support the 'find -newer' option for finding any files which have
+ a modified time that is more recent than the specified FILE.
+
+config BB_CONFIG_FEATURE_FIND_INUM
+ bool " Enable inode number matching (-inum) option"
+ default y
+ depends on BB_CONFIG_FIND
+ help
+ Support the 'fine -inum' option for searching by inode number.
+
+config BB_CONFIG_GREP
+ bool "grep"
+ default n
+ help
+ grep is used to search files for a specified pattern.
+
+config BB_CONFIG_FEATURE_GREP_EGREP_ALIAS
+ bool " Support extended regular expressions (egrep & grep -E)"
+ default y
+ depends on BB_CONFIG_GREP
+ help
+ Enabled support for extended regular expressions. Extended
+ regular expressions allow for alternation (foo|bar), grouping,
+ and various repetition operators.
+
+config BB_CONFIG_FEATURE_GREP_FGREP_ALIAS
+ bool " Alias fgrep to grep -f"
+ default y
+ depends on BB_CONFIG_GREP
+ help
+ fgrep sees the search pattern as a normal sting rather than
+ regular expressions.
+ grep -f is always builtin, this just creates the fgrep alias.
+
+config BB_CONFIG_FEATURE_GREP_CONTEXT
+ bool " Enable before and after context flags (-A, -B and -C)"
+ default y
+ depends on BB_CONFIG_GREP
+ help
+ Print the specified number of leading (-B) and/or trailing (-A)
+ context surrounding our matching lines.
+ Print the specified number of context lines (-C).
+
+config BB_CONFIG_XARGS
+ bool "xargs"
+ default n
+ help
+ xargs is used to execute a specified command on
+ every item from standard input.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/init/Config.in b/config/busybox-1.0.0-pre3/init/Config.in
new file mode 100644
index 000000000..de63311e2
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/init/Config.in
@@ -0,0 +1,98 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Init Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_INIT
+ bool "init"
+ default n
+ help
+ init is the first program run when the system boots.
+
+config BB_CONFIG_FEATURE_USE_INITTAB
+ bool " Support reading an inittab file?"
+ default y
+ depends on BB_CONFIG_INIT
+ help
+ Allow init to read an inittab file when the system boot.
+
+config BB_CONFIG_FEATURE_INITRD
+ bool " Support running init from within an initrd?"
+ default y
+ depends on BB_CONFIG_INIT
+ help
+ Allow init to be called from an initrd as linuxrc.
+
+config BB_CONFIG_FEATURE_INIT_COREDUMPS
+ bool " Support dumping core for child processes (debugging only)?"
+ default n
+ depends on BB_CONFIG_INIT
+ help
+ If this option is enabled and the file /.init_enable_core
+ exists, then init will call setrlimit() to allow unlimited
+ core file sizes. If this option is disabled, processes
+ will not generate any core files.
+
+config BB_CONFIG_FEATURE_EXTRA_QUIET
+ bool " Should init be _extra_ quiet on boot?"
+ default y
+ depends on BB_CONFIG_INIT
+ help
+ Prevent init from logging some messages to the console
+ during boot.
+
+config BB_CONFIG_HALT
+ bool "halt"
+ default y
+ help
+ Stop all processes and halt the system.
+
+config BB_CONFIG_POWEROFF
+ bool "poweroff"
+ default y
+ help
+ Stop all processes and (try to) power off the system.
+
+config BB_CONFIG_REBOOT
+ bool "reboot"
+ default y
+ help
+ Stop all processes and reboot the system.
+
+config BB_CONFIG_MINIT
+ bool "minit"
+ default n
+ depends on ! BB_CONFIG_INIT
+ help
+ Minimal init, based on minit v0.9.1. This is a simple
+ init replacement that handles starting/stopping services,
+ and service dependencies. See http://www.fefe.de/minit/
+ for additional information.
+
+config BB_CONFIG_PIDFILEHACK
+ bool "pidfilehack"
+ default y
+ depends on BB_CONFIG_MINIT
+ help
+ pidfilehack is used by minit to run servers.
+
+config BB_CONFIG_MSVC
+ bool "msvc"
+ default y
+ depends on BB_CONFIG_MINIT
+ help
+ msvc is used to start and stop processes controlled by minit
+
+config BB_CONFIG_MESG
+ bool "mesg"
+ default y
+ help
+ Mesg controls the access to your terminal by others. It
+ is typically used to allow or disallow other users to write
+ to your terminal
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/loginutils/Config.in b/config/busybox-1.0.0-pre3/loginutils/Config.in
new file mode 100644
index 000000000..c83f83d95
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/loginutils/Config.in
@@ -0,0 +1,137 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Login/Password Management Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_USE_BB_PWD_GRP
+ bool "Use internal password and group functions rather than system functions"
+ default n
+ help
+ If you leave this disabled, busybox will use the system's password
+ and group functions. And if you are using the GNU C library
+ (glibc), you will then need to install the /etc/nsswitch.conf
+ configuration file and the required /lib/libnss_* libraries in
+ order for the password and group functions to work. This generally
+ makes your embedded system quite a bit larger.
+
+ Enabling this option will cause busybox to directly access the
+ system's /etc/password, /etc/group files (and your system will be
+ smaller, and I will get fewer emails asking about how glibc NSS
+ works). When this option is enabled, you will not be able to use
+ PAM to access remote LDAP password servers and whatnot. And if you
+ want hostname resolution to work with glibc, you still need the
+ /lib/libnss_* libraries.
+
+ If you enable this option, it will add about 1.5k to busybox.
+
+
+config BB_CONFIG_ADDGROUP
+ bool "addgroup"
+ default n
+ help
+ Utility for creating a new group account.
+
+config BB_CONFIG_DELGROUP
+ bool "delgroup"
+ default n
+ help
+ Utility for deleting a group account.
+
+config BB_CONFIG_ADDUSER
+ bool "adduser"
+ default n
+ help
+ Utility for creating a new user account.
+
+config BB_CONFIG_DELUSER
+ bool "deluser"
+ default n
+ help
+ Utility for deleting a user account.
+
+config BB_CONFIG_GETTY
+ bool "getty"
+ default n
+ help
+ Getty lets you log in on a tty, it is normally invoked by init.
+
+config BB_CONFIG_LOGIN
+ bool "login"
+ default n
+ help
+ Login is used when signing onto a system.
+
+config BB_CONFIG_FEATURE_SECURETTY
+ bool " Support for /etc/securetty"
+ default y
+ depends on BB_CONFIG_LOGIN
+ help
+ The file /etc/securetty is used by (some versions of) login(1). The
+ file contains the device names of tty lines (one per line, without
+ leading /dev/) on which root is allowed to login.
+
+config BB_CONFIG_PASSWD
+ bool "passwd"
+ default n
+ help
+ Passwd changes passwords for user and group accounts. A normal user
+ may only change the password for his/her own account, the super user
+ may change the password for any account. The administrator of a group
+ may change the password for the group.
+
+config BB_CONFIG_SU
+ bool "su"
+ default n
+ help
+ su is used to become another user during a login session. Invoked with-
+ out a username, su defaults to becoming the super user.
+
+config BB_CONFIG_SULOGIN
+ bool "sulogin"
+ default n
+ help
+ Sulogin is invoked when the system goes into single user
+ mode (this is done through an entry in inittab).
+
+config BB_CONFIG_VLOCK
+ bool "vlock"
+ default n
+ help
+ Build the "vlock" applet, that allows you to lock (virtual) terminals.
+
+comment "Common options for adduser, deluser, login, su"
+ depends on BB_CONFIG_ADDUSER || BB_CONFIG_DELUSER || BB_CONFIG_LOGIN || BB_CONFIG_SU
+
+config BB_CONFIG_FEATURE_SHADOWPASSWDS
+ bool "Support for shadow passwords"
+ default n
+ depends on BB_CONFIG_ADDUSER || BB_CONFIG_DELUSER || BB_CONFIG_LOGIN || BB_CONFIG_SU
+ help
+ Build support for shadow password in /etc/shadow. This file is only
+ readable by root and thus the encrypted passwords are no longer
+ publicly readable.
+
+config BB_CONFIG_USE_BB_SHADOW
+ bool " Use busybox shadow password functions"
+ default n
+ depends on BB_CONFIG_USE_BB_PWD_GRP && BB_CONFIG_FEATURE_SHADOWPASSWDS
+ help
+ If you leave this disabled, busybox will use the system's shadow
+ password handling functions. And if you are using the GNU C library
+ (glibc), you will then need to install the /etc/nsswitch.conf
+ configuration file and the required /lib/libnss_* libraries in
+ order for the shadow password functions to work. This generally
+ makes your embedded system quite a bit larger.
+
+ Enabling this option will cause busybox to directly access the
+ system's /etc/shadow file when handling shadow passwords. This
+ makes your system smaller and I will get fewer emails asking about
+ how glibc NSS works). When this option is enabled, you will not be
+ able to use PAM to access shadow passwords from remote LDAP
+ password servers and whatnot.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/miscutils/Config.in b/config/busybox-1.0.0-pre3/miscutils/Config.in
new file mode 100644
index 000000000..7b66db990
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/miscutils/Config.in
@@ -0,0 +1,152 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Miscellaneous Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_ADJTIMEX
+ bool "adjtimex"
+ default n
+ help
+ Adjtimex reads and optionally sets adjustment parameters for
+ the Linux clock adjustment algorithm.
+
+config BB_CONFIG_CROND
+ bool "crond"
+ default n
+ help
+ Crond is a background daemon that parses individual crontab
+ files and executes commands on behalf of the users in question.
+
+config BB_CONFIG_FEATURE_CROND_CALL_SENDMAIL
+ bool " Using /usr/sbin/sendmail?"
+ default n
+ depends on BB_CONFIG_CROND
+ help
+ Support call /usr/sbin/sendmail for send cmd outputs.
+
+config BB_CONFIG_CRONTAB
+ bool "crontab"
+ default n
+ help
+ Crontab manipulates the crontab for a particular user. Only
+ the superuser may specify a different user and/or crontab directory.
+
+config BB_CONFIG_DC
+ bool "dc"
+ default n
+ help
+ Dc is a reverse-polish desk calculator which supports unlimited
+ precision arithmetic.
+
+config BB_CONFIG_LAST
+ bool "last"
+ default n
+ help
+ 'last' displays a list of the last users that logged into the system.
+
+config BB_CONFIG_HDPARM
+ bool "hdparm"
+ default n
+ help
+ Get/Set hard drive parameters. Primarily intended for ATA
+ drives. Adds about 13k (or around 30k if you enable the
+ CONFIG_FEATURE_HDPARM_GET_IDENTITY option)....
+
+config BB_CONFIG_FEATURE_HDPARM_GET_IDENTITY
+ bool " Support obtaining detailed information directly from drives"
+ default y
+ depends on BB_CONFIG_HDPARM
+ help
+ Enables the -I and -Istdin options to obtain detailed information
+ directly from drives about their capabilities and supported ATA
+ feature set. Enabling this option will add about 16k...
+
+config BB_CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
+ bool " Register an IDE interface (DANGEROUS)"
+ default n
+ depends on BB_CONFIG_HDPARM
+ help
+ Enables the 'hdparm -R' option to register an IDE interface.
+ This is dangerous stuff, so you should probably say N.
+
+config BB_CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
+ bool " Un-register an IDE interface (DANGEROUS)"
+ default n
+ depends on BB_CONFIG_HDPARM
+ help
+ Enables the 'hdparm -U' option to un-register an IDE interface.
+ This is dangerous stuff, so you should probably say N.
+
+config BB_CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
+ bool " perform device reset (DANGEROUS)"
+ default n
+ depends on BB_CONFIG_HDPARM
+ help
+ Enables the 'hdparm -w' option to perform a device reset.
+ This is dangerous stuff, so you should probably say N.
+
+config BB_CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
+ bool " tristate device for hotswap (DANGEROUS)"
+ default n
+ depends on BB_CONFIG_HDPARM
+ help
+ Enables the 'hdparm -x' option to tristate device for hotswap,
+ and the '-b' option to get/set bus state. This is dangerous
+ stuff, so you should probably say N.
+
+config BB_CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
+ bool " get/set using_dma flag (DANGEROUS)"
+ default n
+ depends on BB_CONFIG_HDPARM
+ help
+ Enables the 'hdparm -d' option to get/set using_dma flag.
+ This is dangerous stuff, so you should probably say N.
+
+config BB_CONFIG_MAKEDEVS
+ bool "makedevs"
+ default n
+ help
+ 'makedevs' is a utility used and created by the Linux Router Project.
+ It creates a large number of device special files (/dev devices)
+ rather quickly, and can be considerably faster then running mknod a
+ zillion times.
+
+config BB_CONFIG_MT
+ bool "mt"
+ default n
+ help
+ Mt is used to control tape devices. You can use the mt utility
+ to advance or rewind a tape past a specified number of archive
+ files on the tape.
+
+config BB_CONFIG_STRINGS
+ bool "strings"
+ default n
+ help
+ Strings prints the printable character sequences for each file
+ specified.
+
+config BB_CONFIG_TIME
+ bool "time"
+ default n
+ help
+ The time command runs the specified program with the given arguments.
+ When the command finishes, time writes a message to standard output
+ giving timing statistics about this program run.
+
+config BB_CONFIG_WATCHDOG
+ bool "watchdog"
+ default n
+ help
+ The watchdog utility is used with hardware or softwate watchdog
+ device drivers. It opens the specified watchdog device special file
+ and periodically writes a magic character to the device. If the
+ watchdog applet ever fails to write the magic character within a
+ certain amount of time, the watchdog device assumes the system has
+ hung, and will cause the hardware to reboot.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/modutils/Config.in b/config/busybox-1.0.0-pre3/modutils/Config.in
new file mode 100644
index 000000000..a99dcd346
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/modutils/Config.in
@@ -0,0 +1,127 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Linux Module Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_INSMOD
+ bool "insmod"
+ default n
+ help
+ insmod is used to load specified modules in the running kernel.
+
+config BB_CONFIG_FEATURE_OLD_MODULE_INTERFACE
+ bool " Support older (pre 2.1) Linux kernels"
+ default n
+ depends on BB_CONFIG_INSMOD
+ help
+ Provide insmod support for older (pre 2.1) Linux kernels.
+
+if BB_CONFIG_INSMOD && !BB_CONFIG_FEATURE_OLD_MODULE_INTERFACE
+ config BB_CONFIG_FEATURE_NEW_MODULE_INTERFACE
+ default y
+ comment " Support new (post 2.1) Linux kernels (Forced enabled)"
+endif
+
+if BB_CONFIG_FEATURE_OLD_MODULE_INTERFACE
+config BB_CONFIG_FEATURE_NEW_MODULE_INTERFACE
+ bool " Support new (post 2.1) Linux kernels"
+ default y
+ depends on BB_CONFIG_INSMOD
+ help
+ Support module loading for newer (post 2.1) Linux kernels.
+endif
+
+config BB_CONFIG_FEATURE_INSMOD_VERSION_CHECKING
+ bool " Module version checking"
+ default n
+ depends on BB_CONFIG_INSMOD
+ help
+ Support checking of versions for modules. This is used to
+ ensure that the kernel and module are made for each other.
+
+config BB_CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
+ bool " Add module symbols to kernel symbol table"
+ default n
+ depends on BB_CONFIG_INSMOD
+ help
+ By adding module symbols to the kernel symbol table, Oops messages
+ occuring within kernel modules can be properly debugged. By enabling
+ this feature, module symbols will always be added to the kernel symbol
+ table for properly debugging support. If you are not interested in
+ Oops messages from kernel modules, say N.
+
+config BB_CONFIG_FEATURE_INSMOD_LOADINKMEM
+ bool " In kernel memory optimization (uClinux only)"
+ default n
+ depends on BB_CONFIG_INSMOD
+ help
+ This is a special uClinux only memory optimization that lets insmod
+ load the specified kernel module directly into kernel space, reducing
+ memory usage by preventing the need for two copies of the module
+ being loaded into memory.
+
+config BB_CONFIG_FEATURE_INSMOD_LOAD_MAP
+ bool " Enable load map (-m) option"
+ default n
+ depends on BB_CONFIG_INSMOD
+ help
+ Enabling this, one would be able to get a load map
+ output on stdout. This makes kernel module debugging
+ easier.
+ If you don't plan to debug kernel modules, you
+ don't need this option.
+
+config BB_CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL
+ bool " Symbols in load map"
+ default y
+ depends on BB_CONFIG_FEATURE_INSMOD_LOAD_MAP
+ help
+ Without this option, -m will only output section
+ load map.
+ With this option, -m will also output symbols
+ load map.
+
+config BB_CONFIG_LSMOD
+ bool "lsmod"
+ default n
+ help
+ lsmod is used to display a list of loaded modules.
+
+config BB_CONFIG_FEATURE_QUERY_MODULE_INTERFACE
+ bool " Support lsmod query_module interface (add 638 bytes)"
+ default y
+ depends on BB_CONFIG_LSMOD && BB_CONFIG_FEATURE_NEW_MODULE_INTERFACE
+ help
+ This will provide some extra information about each module when
+ running lsmod. The fields provided are address, size, flags and
+ usage count.
+
+config BB_CONFIG_MODPROBE
+ bool "modprobe"
+ default n
+ help
+ Handle the loading of modules, and their dependancies on a high
+ level.
+
+config BB_CONFIG_RMMOD
+ bool "rmmod"
+ default n
+ help
+ rmmod is used to unload specified modules from the kernel.
+
+config BB_CONFIG_FEATURE_CHECK_TAINTED_MODULE
+ bool "Support tainted module checking with new kernels"
+ default y
+ depends on BB_CONFIG_INSMOD || BB_CONFIG_LSMOD
+ help
+ Support checking for tainted modules. These are usually binary
+ only modules that will make the linux-kernel list ignore your
+ support request.
+ This option is required to support GPLONLY modules.
+
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/networking/Config.in b/config/busybox-1.0.0-pre3/networking/Config.in
new file mode 100644
index 000000000..7fbf3308f
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/networking/Config.in
@@ -0,0 +1,603 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Networking Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_FEATURE_IPV6
+ bool "Enable IPv6 support"
+ default n
+ help
+ Enable IPv6 support to busybox. This makes applets that talk IP
+ able to work with IPv6.
+
+config BB_CONFIG_ARPING
+ bool "arping"
+ default n
+ help
+ Ping hosts by ARP packets
+
+config BB_CONFIG_FTPGET
+ bool "ftpget"
+ default n
+ help
+ Retrieve a remote file via FTP.
+
+config BB_CONFIG_FTPPUT
+ bool "ftpput"
+ default n
+ help
+ Store a remote file via FTP.
+
+config BB_CONFIG_HOSTNAME
+ bool "hostname"
+ default n
+ help
+ Show or set the system's host name
+
+config BB_CONFIG_HTTPD
+ bool "httpd"
+ default n
+ help
+ Serve web pages via an HTTP server.
+
+config BB_CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY
+ bool " Support using httpd only from inetd"
+ default n
+ depends on BB_CONFIG_HTTPD
+ help
+ This option disables uid and port options for the httpd applet
+ but requires inetd server daemon.
+
+config BB_CONFIG_FEATURE_HTTPD_BASIC_AUTH
+ bool " Enable Basic http Authentication"
+ default y
+ depends on BB_CONFIG_HTTPD
+ help
+ Utilizes password settings from /etc/httpd.conf for basic
+ authentication on a per url basis.
+
+config BB_CONFIG_FEATURE_HTTPD_AUTH_MD5
+ bool " Support MD5 crypted passwords for http Authentication"
+ default n
+ depends on BB_CONFIG_FEATURE_HTTPD_BASIC_AUTH
+ help
+ Enables basic per url authentication from /etc/httpd.conf
+ using md5 passwords.
+
+
+if !BB_CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY
+config BB_CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
+ bool " Support reloading the global config file using hup signal"
+ default n
+ depends on BB_CONFIG_HTTPD
+ help
+ This option enables processing of SIGHUP to reload cached
+ configuration settings.
+
+config BB_CONFIG_FEATURE_HTTPD_SETUID
+ bool " Enable support -u <user> option"
+ default n
+ depends on BB_CONFIG_HTTPD
+ help
+ This option allows the server to run as a specific user
+ rather than defaulting to the user that starts the server.
+ Use of this option requires special privilegies to change to a
+ different user.
+endif
+
+config BB_CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
+ bool " Support loading additional mime types at run-time"
+ default n
+ depends on BB_CONFIG_HTTPD
+ help
+ This option enables support for additional mime types at
+ run-time to be specified in the configuration file.
+
+config BB_CONFIG_FEATURE_HTTPD_CGI
+ bool " Support Common Gateway Interface (CGI)"
+ default y
+ depends on BB_CONFIG_HTTPD
+ help
+ This option allows scripts and executables to be invoked
+ when specific urls are requested.
+
+config BB_CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
+ bool " Support the REMOTE_PORT environment variable for CGI"
+ default n
+ depends on BB_CONFIG_FEATURE_HTTPD_CGI
+ help
+ Use of this option can assist scripts in generating
+ references that contain a unique port number.
+
+config BB_CONFIG_FEATURE_HTTPD_SET_CGI_VARS_TO_ENV
+ bool " Enable setting of CGI_varname=value environment vars for CGI"
+ default n
+ depends on BB_CONFIG_FEATURE_HTTPD_CGI
+ help
+ This option parses POST or GET arguments from a form and
+ sets environment variables with their value. This simplifies
+ and speeds up CGI scripts. A form argument of foo=bar would
+ result in a script having the environment variable CGI_foo set
+ to 'bar'. In addition, this option sets a variable that
+ lists all the argument names. e.g. CGI_VARNAMES_="name1 name2".
+
+config BB_CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
+ bool " Enable the -e option for shell script CGI simplification."
+ default y
+ depends on BB_CONFIG_HTTPD
+ help
+ After set, this option allows html encoding arbitrary
+ strings for display of the browser. Output goes to stdout.
+ For example, httpd -e "<Hello World>" as
+ "&#60Hello&#32World&#62".
+
+config BB_CONFIG_IFCONFIG
+ bool "ifconfig"
+ default n
+ help
+ Ifconfig is used to configure the kernel-resident network interfaces.
+
+config BB_CONFIG_FEATURE_IFCONFIG_STATUS
+ bool " Enable status reporting output (+7k)"
+ default y
+ depends on BB_CONFIG_IFCONFIG
+ help
+ If ifconfig is called with no arguments it will display the status
+ of the currently active interfaces.
+
+config BB_CONFIG_FEATURE_IFCONFIG_SLIP
+ bool " Enable slip-specific options \"keepalive\" and \"outfill\""
+ default n
+ depends on BB_CONFIG_IFCONFIG
+ help
+ Allow "keepalive" and "outfill" support for SLIP. If you're not
+ planning on using serial lines, leave this unchecked.
+
+config BB_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
+ bool " Enable options \"mem_start\", \"io_addr\", and \"irq\""
+ default n
+ depends on BB_CONFIG_IFCONFIG
+ help
+ Allow the start address for shared memory, start address for I/O,
+ and/or the interrupt line used by the specified device.
+
+config BB_CONFIG_FEATURE_IFCONFIG_HW
+ bool " Enable option \"hw\" (ether only)"
+ default y
+ depends on BB_CONFIG_IFCONFIG
+ help
+ Set the hardware address of this interface, if the device driver
+ supports this operation. Currently, we only support the 'ether'
+ class.
+
+config BB_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
+ bool " Set the broadcast automatically"
+ default n
+ depends on BB_CONFIG_IFCONFIG
+ help
+ Setting this will make ifconfig attempt to find the broadcast
+ automatically if the value '+' is used.
+
+config BB_CONFIG_IFUPDOWN
+ bool "ifupdown"
+ default n
+ help
+ Activate or deactivate the specified interfaces. This applet makes
+ use of either "ifconfig" and "route" or the "ip" command to actually
+ configure network interfaces. Therefore, you will probably also want
+ to enable either CONFIG_IFCONFIG and CONFIG_ROUTE, or enable
+ CONFIG_FEATURE_IFUPDOWN_IP and the various CONFIG_IP options. Of
+ course you could use non-busybox versions of these programs, so
+ against my better judgement (since this will surely result in plenty
+ of support questions on the mailing list), I do not force you to
+ enable these additional options. It is up to you to supply either
+ "ifconfig" and "route" or the "ip" command, either via busybox or via
+ standalone utilities.
+
+config BB_CONFIG_FEATURE_IFUPDOWN_IP
+ bool " Use ip applet"
+ default n
+ depends on BB_CONFIG_IFUPDOWN
+ help
+ Use the iproute "ip" command to implement "ifup" and "ifdown", rather
+ than the default of using the older 'ifconfig' and 'route' utilities.
+
+config BB_CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN
+ bool " Use busybox ip applet"
+ default y
+ depends on BB_CONFIG_FEATURE_IFUPDOWN_IP
+ select BB_CONFIG_IP
+ select BB_CONFIG_FEATURE_IP_ADDRESS
+ select BB_CONFIG_FEATURE_IP_LINK
+ select BB_CONFIG_FEATURE_IP_ROUTE
+ help
+ Use the busybox iproute "ip" applet to implement "ifupdown".
+
+ If leave this disabled, you must install the full-blown iproute2
+ utility or the "ifup" and "ifdown" applets will not work.
+
+config BB_CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN
+ bool " Use busybox ifconfig and route applets"
+ default y
+ depends on BB_CONFIG_IFUPDOWN && !BB_CONFIG_FEATURE_IFUPDOWN_IP
+ select BB_CONFIG_IFCONFIG
+ select BB_CONFIG_ROUTE
+ help
+ Use the busybox iproute "ifconfig" and "route" applets to
+ implement the "ifup" and "ifdown" utilities.
+
+ If leave this disabled, you must install the full-blown ifconfig
+ and route utilities, or the "ifup" and "ifdown" applets will not
+ work.
+
+config BB_CONFIG_FEATURE_IFUPDOWN_IPV4
+ bool " Enable support for IPv4"
+ default y
+ depends on BB_CONFIG_IFUPDOWN
+ help
+ If you want busybox to talk IPv4, leave this on.
+
+config BB_CONFIG_FEATURE_IFUPDOWN_IPV6
+ bool " Enable support for IPv6"
+ default n
+ depends on BB_CONFIG_IFUPDOWN
+ help
+ If you need support for IPv6, turn this option on.
+
+config BB_CONFIG_FEATURE_IFUPDOWN_IPX
+ bool " Enable support for IPX"
+ default n
+ depends on BB_CONFIG_IFUPDOWN
+ help
+ If this option is selected you can use busybox to work with IPX
+ networks.
+
+config BB_CONFIG_FEATURE_IFUPDOWN_MAPPING
+ bool " Enable mapping support"
+ default n
+ depends on BB_CONFIG_IFUPDOWN
+ help
+ This enables support for the "mapping" stanza, unless you have
+ a weird network setup you dont need it.
+
+config BB_CONFIG_INETD
+ bool "inetd"
+ default n
+ help
+ Internet superserver daemon
+
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BILTIN_ECHO
+ bool " Support echo service"
+ default y
+ depends on BB_CONFIG_INETD
+ help
+ Echo received data internal inetd service
+
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BILTIN_DISCARD
+ bool " Support discard service"
+ default y
+ depends on BB_CONFIG_INETD
+ help
+ Internet /dev/null internal inetd service
+
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BILTIN_TIME
+ bool " Support time service"
+ default y
+ depends on BB_CONFIG_INETD
+ help
+ Return 32 bit time since 1900 internal inetd service
+
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BILTIN_DAYTIME
+ bool " Support daytime service"
+ default y
+ depends on BB_CONFIG_INETD
+ help
+ Return human-readable time internal inetd service
+
+config BB_CONFIG_FEATURE_INETD_SUPPORT_BILTIN_CHARGEN
+ bool " Support chargen service"
+ default y
+ depends on BB_CONFIG_INETD
+ help
+ Familiar character generator internal inetd service
+
+
+config BB_CONFIG_IP
+ bool "ip"
+ default n
+ help
+ The "ip" applet is a TCP/IP interface configuration and routing
+ utility. You generally don't need "ip" to use busybox with
+ TCP/IP.
+
+if BB_CONFIG_IP && BB_CONFIG_IPADDR
+ config BB_CONFIG_FEATURE_IP_ADDRESS
+ default y
+ comment " address (forced enabled for ipaddr)"
+endif
+if ! (BB_CONFIG_IP && BB_CONFIG_IPADDR)
+ config BB_CONFIG_FEATURE_IP_ADDRESS
+ bool " address"
+ default y
+ depends on BB_CONFIG_IP
+ help
+ Address manipulation support for the "ip" applet.
+endif
+
+if BB_CONFIG_IP && BB_CONFIG_IPLINK
+ config BB_CONFIG_FEATURE_IP_LINK
+ default y
+ comment " link (forced enabled for iplink)"
+endif
+if !(BB_CONFIG_IP && BB_CONFIG_IPLINK)
+ config BB_CONFIG_FEATURE_IP_LINK
+ bool " link"
+ default y
+ depends on BB_CONFIG_IP
+ help
+ Configure network devices with "ip".
+endif
+
+if BB_CONFIG_IP && BB_CONFIG_IPROUTE
+ config BB_CONFIG_FEATURE_IP_ROUTE
+ default y
+ comment " route (forced enabled for iproute)"
+endif
+if !(BB_CONFIG_IP && BB_CONFIG_IPROUTE)
+ config BB_CONFIG_FEATURE_IP_ROUTE
+ bool " route"
+ default y
+ depends on BB_CONFIG_IP
+ help
+ Add support for routing table management to "ip".
+endif
+
+if BB_CONFIG_IP && BB_CONFIG_IPTUNNEL
+ config BB_CONFIG_FEATURE_IP_TUNNEL
+ default y
+ comment " tunnel (forced enabled for iptunnel)"
+endif
+if !(BB_CONFIG_IP && BB_CONFIG_IPTUNNEL)
+ config BB_CONFIG_FEATURE_IP_TUNNEL
+ bool " tunnel"
+ default n
+ depends on BB_CONFIG_IP
+ help
+ Add support for tunneling commands to "ip".
+endif
+
+config BB_CONFIG_IPCALC
+ bool "ipcalc"
+ default n
+ help
+ ipcalc takes an IP address and netmask and calculates the
+ resulting broadcast, network, and host range.
+
+config BB_CONFIG_FEATURE_IPCALC_FANCY
+ bool " Fancy IPCALC, more options, adds 1 kbyte"
+ default y
+ depends on BB_CONFIG_IPCALC
+ help
+ Adds the options hostname, prefix and silent to the output of "ipcalc".
+
+config BB_CONFIG_IPADDR
+ bool "ipaddr"
+ default n
+ help
+ Equivalent to selecting address support to "ip", above.
+
+config BB_CONFIG_IPLINK
+ bool "iplink"
+ default n
+ help
+ Equivalent to selecting link support to "ip", above.
+
+config BB_CONFIG_IPROUTE
+ bool "iproute"
+ default n
+ help
+ Equivalent to selecting route support to "ip", above.
+
+config BB_CONFIG_IPTUNNEL
+ bool "iptunnel"
+ default n
+ help
+ Equivalent to selecting tunnel support to "ip", above.
+
+config BB_CONFIG_NAMEIF
+ bool "nameif"
+ default n
+ help
+ nameif used to rename network interface by its MAC address.
+ Renamed interfaces MUST be in the down state.
+ It is possible to use file (default: /etc/mactab)
+ with list of new interface names and MACs.
+ Maximum interface name length: IF_NAMESIZE = 16
+ File fields are sepatated by space or tab.
+ File format:
+ # Comment
+ new_interface_name XX:XX:XX:XX:XX:XX
+
+config BB_CONFIG_NC
+ bool "nc"
+ default n
+ help
+ A simple Unix utility which reads and writes data across network
+ connections.
+
+config BB_CONFIG_NETSTAT
+ bool "netstat"
+ default n
+ help
+ Netstat prints information about the Linux networking subsystem.
+
+config BB_CONFIG_NSLOOKUP
+ bool "nslookup"
+ default n
+ help
+ Nslookup is a tool to query Internet name servers.
+
+config BB_CONFIG_PING
+ bool "ping"
+ default n
+ help
+ Ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
+ elicit an ICMP ECHO_RESPONSE from a host or gateway.
+
+config BB_CONFIG_FEATURE_FANCY_PING
+ bool " Enable fancy ping output"
+ default y
+ depends on BB_CONFIG_PING
+ help
+ Make the output from the ping applet include statistics, and at the
+ same time provide full support for ICMP packets.
+
+config BB_CONFIG_PING6
+ bool "ping6"
+ default n
+ depends on BB_CONFIG_FEATURE_IPV6
+ help
+ This will give you a ping that can talk IPv6.
+
+config BB_CONFIG_FEATURE_FANCY_PING6
+ bool " Enable fancy ping6 output"
+ default y
+ depends on BB_CONFIG_PING6
+ help
+ Make the output from the ping6 applet include statistics, and at the
+ same time provide full support for ICMP packets.
+
+config BB_CONFIG_ROUTE
+ bool "route"
+ default n
+ help
+ Route displays or manipulates the kernel's IP routing tables.
+
+config BB_CONFIG_TELNET
+ bool "telnet"
+ default n
+ help
+ Telnet is an interface to the TELNET protocol, but is also commonly
+ used to test other simple protocols.
+
+config BB_CONFIG_FEATURE_TELNET_TTYPE
+ bool " Pass TERM type to remote host"
+ default y
+ depends on BB_CONFIG_TELNET
+ help
+ Setting this option will forward the TERM environment variable to the
+ remote host you are connecting to. This is useful to make sure that
+ things like ANSI colors and other control sequences behave.
+
+config BB_CONFIG_TELNETD
+ bool "telnetd"
+ default n
+ help
+ A daemon for the TELNET protocol, allowing you to log on to the host
+ running the daemon. Please keep in mind that the TELNET protocol
+ sends passwords in plain text. If you can't afford the space for
+ any SSH daemon and you trust your network, say 'y' here.
+
+config BB_CONFIG_FEATURE_TELNETD_INETD
+ bool " Support call from inetd only"
+ default n
+ depends on BB_CONFIG_TELNETD
+ help
+ Selecting this will make telnetd only callable from inetd, removing the
+ standalone support.
+
+config BB_CONFIG_TFTP
+ bool "tftp"
+ default n
+ help
+ This enables the Tirvial File Transfer Protocol client program. TFTP
+ is usually used for simple, small transfers such as a root image
+ for a network-enabled bootloader.
+
+config BB_CONFIG_FEATURE_TFTP_GET
+ bool " Enable \"get\" command"
+ default y
+ depends on BB_CONFIG_TFTP
+ help
+ Add support for the GET command within the TFTP client. This allows
+ a client to retreive a file from a TFTP server.
+
+config BB_CONFIG_FEATURE_TFTP_PUT
+ bool " Enable \"put\" command"
+ default y
+ depends on BB_CONFIG_TFTP
+ help
+ Add support for the PUT command within the TFTP client. This allows
+ a client to transfer a file to a TFTP server.
+
+config BB_CONFIG_FEATURE_TFTP_BLOCKSIZE
+ bool " Enable \"blocksize\" command"
+ default n
+ depends on BB_CONFIG_TFTP
+ help
+ Allow the client to specify the desired block size for transfers.
+
+config BB_CONFIG_FEATURE_TFTP_DEBUG
+ bool " Enable debug"
+ default n
+ depends on BB_CONFIG_TFTP
+ help
+ Enable debug settings for tftp. This is useful if you're running
+ into problems with tftp as the protocol doesn't help you much when
+ you run into problems.
+
+config BB_CONFIG_TRACEROUTE
+ bool "traceroute"
+ default n
+ help
+ Utility to trace the route of IP packets
+
+config BB_CONFIG_FEATURE_TRACEROUTE_VERBOSE
+ bool " Enable verbose output"
+ default n
+ depends on BB_CONFIG_TRACEROUTE
+ help
+ Add some verbosity to traceroute. This includes amongst other things
+ hostnames and ICMP response types.
+
+config BB_CONFIG_VCONFIG
+ bool "vconfig"
+ default n
+ help
+ Creates, removes, and configures VLAN interfaces
+
+config BB_CONFIG_WGET
+ bool "wget"
+ default n
+ help
+ Wget is a utility for non-interactive download of files from HTTP,
+ HTTPS, and FTP servers.
+
+config BB_CONFIG_FEATURE_WGET_STATUSBAR
+ bool " Enable a nifty process meter (+2k)"
+ default y
+ depends on BB_CONFIG_WGET
+ help
+ Enable the transfer progress bar for wget transfers.
+
+config BB_CONFIG_FEATURE_WGET_AUTHENTICATION
+ bool " Enable HTTP authentication"
+ default y
+ depends on BB_CONFIG_WGET
+ help
+ Support authenticated HTTP transfers.
+
+config BB_CONFIG_FEATURE_WGET_IP6_LITERAL
+ bool " Enable IPv6 literal addresses"
+ default y
+ depends on BB_CONFIG_WGET
+ help
+ Support IPv6 address literal notation in URLs.
+
+source config/busybox-1.0.0-pre3/networking/udhcp/Config.in
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/networking/udhcp/Config.in b/config/busybox-1.0.0-pre3/networking/udhcp/Config.in
new file mode 100644
index 000000000..e3954ae6e
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/networking/udhcp/Config.in
@@ -0,0 +1,63 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "udhcp Server/Client"
+ depends on BUSYBOX
+
+config BB_CONFIG_UDHCPD
+ bool "udhcp Server (udhcpd)"
+ default n
+ help
+ uDHCPd is a DHCP server geared primarily toward embedded systems,
+ while striving to be fully functional and RFC compliant.
+
+ See http://udhcp.busybox.net for further details.
+
+config BB_CONFIG_UDHCPC
+ bool "udhcp Client (udhcpc)"
+ default n
+ help
+ uDHCPc is a DHCP client geared primarily toward embedded systems,
+ while striving to be fully functional and RFC compliant.
+
+ The udhcp client negotiates a lease with the DHCP server and
+ notifies a set of scripts when a leases is obtained or lost.
+
+ See http://udhcp.busybox.net for further details.
+
+config BB_CONFIG_DUMPLEASES
+ bool "Lease display utility (dumpleases)"
+ default n
+ depends on BB_CONFIG_UDHCPD
+ help
+ dumpleases displays the leases written out by the udhcpd server.
+ Lease times are stored in the file by time remaining in lease, or
+ by the absolute time that it expires in seconds from epoch.
+
+ See http://udhcp.busybox.net for further details.
+
+config BB_CONFIG_FEATURE_UDHCP_SYSLOG
+ bool " Log udhcp messages to syslog (instead of stdout)"
+ default n
+ depends on BB_CONFIG_UDHCPD || BB_CONFIG_UDHCPC
+ help
+ If selected, udhcpd will log all its messages to syslog, otherwise,
+ it will attempt to log them to stdout.
+
+ See http://udhcp.busybox.net for further details.
+
+config BB_CONFIG_FEATURE_UDHCP_DEBUG
+ bool " Compile udhcp with noisy debugging messages"
+ default n
+ depends on BB_CONFIG_UDHCPD || BB_CONFIG_UDHCPC
+ help
+ If selected, udhcpd will output extra debugging output. If using
+ this option, compile uDHCP with "-g", and do not fork the daemon to
+ the background.
+
+ See http://udhcp.busybox.net for further details.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/procps/Config.in b/config/busybox-1.0.0-pre3/procps/Config.in
new file mode 100644
index 000000000..8258d27c0
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/procps/Config.in
@@ -0,0 +1,77 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Process Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_FREE
+ bool "free"
+ default n
+ help
+ free displays the total amount of free and used physical and swap
+ memory in the system, as well as the buffers used by the kernel.
+ The shared memory column should be ignored; it is obsolete.
+
+config BB_CONFIG_KILL
+ bool "kill"
+ default n
+ help
+ The command kill sends the specified signal to the specified
+ process or process group. If no signal is specified, the TERM
+ signal is sent.
+
+config BB_CONFIG_KILLALL
+ bool "killall"
+ default n
+ depends on BB_CONFIG_KILL
+ help
+ killall sends a signal to all processes running any of the
+ specified commands. If no signal name is specified, SIGTERM is
+ sent.
+
+config BB_CONFIG_PIDOF
+ bool "pidof"
+ default n
+ help
+ Pidof finds the process id's (pids) of the named programs. It prints
+ those id's on the standard output.
+
+config BB_CONFIG_PS
+ bool "ps"
+ default n
+ help
+ ps gives a snapshot of the current processes.
+
+config BB_CONFIG_RENICE
+ bool "renice"
+ default n
+ help
+ Renice alters the scheduling priority of one or more running
+ processes.
+
+config BB_CONFIG_TOP
+ bool "top"
+ default n
+ help
+ The top program provides a dynamic real-time view of a running
+ system.
+
+config BB_FEATURE_CPU_USAGE_PERCENTAGE
+ bool " Support show CPU usage percentage (add 2k bytes)"
+ default y
+ depends on BB_CONFIG_TOP
+ help
+ Make top display CPU usage.
+
+config BB_CONFIG_UPTIME
+ bool "uptime"
+ default n
+ help
+ uptime gives a one line display of the current time, how long
+ the system has been running, how many users are currently logged
+ on, and the system load averages for the past 1, 5, and 15 minutes.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/shell/Config.in b/config/busybox-1.0.0-pre3/shell/Config.in
new file mode 100644
index 000000000..5817b4c32
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/shell/Config.in
@@ -0,0 +1,207 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Another Bourne-like Shell"
+ depends on BUSYBOX
+
+choice
+ prompt "Choose your default shell"
+ default BB_CONFIG_FEATURE_SH_IS_NONE
+ help
+ Choose a shell. The ash shell is the most bash compatible
+ and full featured.
+
+config BB_CONFIG_FEATURE_SH_IS_ASH
+ select BB_CONFIG_ASH
+ bool "ash"
+
+config BB_CONFIG_FEATURE_SH_IS_HUSH
+ select BB_CONFIG_HUSH
+ bool "hush"
+
+config BB_CONFIG_FEATURE_SH_IS_LASH
+ select BB_CONFIG_LASH
+ bool "lash"
+
+config BB_CONFIG_FEATURE_SH_IS_MSH
+ select BB_CONFIG_MSH
+ bool "msh"
+
+config BB_CONFIG_FEATURE_SH_IS_NONE
+ bool "none"
+
+endchoice
+
+config BB_CONFIG_ASH
+ bool "ash"
+ default y
+ help
+ Tha 'ash' shell adds about 60k in the default configuration and is
+ the most complete and most pedantically correct shell included with
+ busybox. This shell is actually a derivitive the Debian 'dash' shell
+ (by Herbert Xu), which was created by porting the 'ash' shell
+ (written by Kenneth Almquist) from NetBSD.
+
+comment "Ash Shell Options"
+ depends on BB_CONFIG_ASH
+
+config BB_CONFIG_ASH_JOB_CONTROL
+ bool " Enable Job control"
+ default y
+ depends on BB_CONFIG_ASH
+ help
+ Enable job control in the ash shell.
+
+config BB_CONFIG_ASH_ALIAS
+ bool " Enable alias support"
+ default y
+ depends on BB_CONFIG_ASH
+ help
+ Enable alias support in the ash shell.
+
+config BB_CONFIG_ASH_MATH_SUPPORT
+ bool " Enable Posix math support"
+ default y
+ depends on BB_CONFIG_ASH
+ help
+ Enable math support in the ash shell.
+
+config BB_CONFIG_ASH_GETOPTS
+ bool " Enable getopt builtin to parse positional parameters"
+ default n
+ depends on BB_CONFIG_ASH
+ help
+ Enable builtin getopt in the ash shell.
+
+config BB_CONFIG_ASH_CMDCMD
+ bool " Enable cmdcmd to override shell builtins"
+ default n
+ depends on BB_CONFIG_ASH
+ help
+ Enable support for the ash 'command' builtin, which allows
+ you to run the specified command with the specified arguments,
+ even when there is an ash builtin command with the same name.
+
+config BB_CONFIG_ASH_MAIL
+ bool " Check for new mail on interactive shells"
+ default y
+ depends on BB_CONFIG_ASH
+ help
+ Enable "check for new mail" in the ash shell.
+
+config BB_CONFIG_ASH_OPTIMIZE_FOR_SIZE
+ bool " Optimize for size instead of speed"
+ default y
+ depends on BB_CONFIG_ASH
+ help
+ Compile ash for reduced size at price of speed.
+
+config BB_CONFIG_HUSH
+ bool "hush"
+ default n
+ help
+ hush is very small shell (just 18k) and it has fairly complete Bourne
+ shell grammer. It even handles all the normal flow control options
+ such as if/then/elif/else/fi, for/in/do/done, while loops, etc.
+
+ It does not handle case/esac, select, function, here documents ( <<
+ word ), arithmetic expansion, aliases, brace expansion, tilde
+ expansion, &> and >& redirection of stdout+stderr, etc.
+
+
+config BB_CONFIG_LASH
+ bool "lash"
+ default n
+ help
+ lash is the very smallest shell (adds just 10k) and it is quite
+ usable as a command prompt, but it is not suitable for any but the
+ most trivial scripting (such as an initrd that calls insmod a few
+ times) since it does not understand any Bourne shell grammer. It
+ does handle pipes, redirects, and job control though. Adding in
+ command editing makes it a very nice lightweight command prompt.
+
+
+config BB_CONFIG_MSH
+ bool "msh"
+ default n
+ help
+ The minix shell (adds just 30k) is quite complete and handles things
+ like for/do/done, case/esac and all the things you expect a Bourne
+ shell to do. It is not always pedantically correct about Bourne
+ shell grammer (try running the shell testscript "tests/sh.testcases"
+ on it and compare vs bash) but for most things it works quite well.
+ It also uses only vfork, so it can be used on uClinux systems.
+
+comment "Bourne Shell Options"
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
+
+config BB_CONFIG_FEATURE_COMMAND_EDITING
+ bool "command line editing"
+ default n
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
+ help
+ Enable command editing in shell.
+
+config BB_CONFIG_FEATURE_COMMAND_SAVEHISTORY
+ bool " history saving"
+ default n
+ depends on BB_CONFIG_ASH
+ help
+ Enable history saving in ash shell.
+
+config BB_CONFIG_FEATURE_COMMAND_TAB_COMPLETION
+ bool "tab completion"
+ default n
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
+ help
+ Enable tab completion in shell.
+
+config BB_CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
+ bool "username completion"
+ default n
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
+ help
+ Enable username completion in shell.
+
+config BB_CONFIG_FEATURE_COMMAND_HISTORY
+ int "history size"
+ default 15
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
+ help
+ Specify command history size in shell.
+
+config BB_CONFIG_FEATURE_SH_STANDALONE_SHELL
+ bool "Standalone shell"
+ default n
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
+ help
+ Have all the busybox commands built into the shell, creating
+ a standalone shell.
+
+config BB_CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
+ bool "Standalone shell -- applets always win"
+ default n
+ depends on BB_CONFIG_FEATURE_SH_STANDALONE_SHELL
+ help
+ Use a command builtin to the shell over one with the same name,
+ that may be on the system.
+
+config BB_CONFIG_FEATURE_SH_FANCY_PROMPT
+ bool "Fancy shell prompts"
+ default n
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
+ help
+ Setting this option allows for prompts to use things like \w and
+ \$ and also using escape codes.
+
+config BB_CONFIG_FEATURE_SH_EXTRA_QUIET
+ bool "Hide message on interactive shell startup"
+ default n
+ depends on BB_CONFIG_MSH || BB_CONFIG_LASH || BB_CONFIG_HUSH || BB_CONFIG_ASH
+ help
+ Remove the busybox introduction when starting a shell.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/sysdeps/linux/Config.in b/config/busybox-1.0.0-pre3/sysdeps/linux/Config.in
new file mode 100644
index 000000000..6e0089c6a
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/sysdeps/linux/Config.in
@@ -0,0 +1,276 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+# mainmenu "BusyBox Configuration"
+
+config BB_HAVE_DOT_CONFIG
+ bool
+ default y
+
+menu "General Configuration"
+ depends on BUSYBOX
+
+choice
+ prompt "Buffer allocation policy"
+ default BB_CONFIG_FEATURE_BUFFERS_USE_MALLOC
+ help
+ There are 3 ways BusyBox can handle buffer allocations:
+ - Use malloc. This costs code size for the call to xmalloc.
+ - Put them on stack. For some very small machines with limited stack
+ space, this can be deadly. For most folks, this works just fine.
+ - Put them in BSS. This works beautifully for computers with a real
+ MMU (and OS support), but wastes runtime RAM for uCLinux. This
+ behavior was the only one available for BusyBox versions 0.48 and
+ earlier.
+
+config BB_CONFIG_FEATURE_BUFFERS_USE_MALLOC
+ bool "Allocate with Malloc"
+
+config BB_CONFIG_FEATURE_BUFFERS_GO_ON_STACK
+ bool "Allocate on the Stack"
+
+config BB_CONFIG_FEATURE_BUFFERS_GO_IN_BSS
+ bool "Allocate in the .bss section"
+
+endchoice
+
+config BB_CONFIG_FEATURE_VERBOSE_USAGE
+ bool "Show verbose applet usage messages"
+ default n
+ help
+ All BusyBox applets will show more verbose help messages when
+ busybox is invoked with --help. This will add lots of text to the
+ busybox binary. In the default configuration, this will add about
+ 13k, but it can add much more depending on your configuration.
+
+config BB_CONFIG_FEATURE_INSTALLER
+ bool "Support --install [-s] to install applet links at runtime"
+ default n
+ help
+ Enable 'busybox --install [-s]' support. This will allow you to use
+ busybox at runtime to create hard links or symlinks for all the
+ applets that are compiled into busybox. This feature requires the
+ /proc filesystem.
+
+config BB_CONFIG_LOCALE_SUPPORT
+ bool "Enable locale support (system needs locale for this to work)"
+ default n
+ help
+ Enable this if your system has locale support, and you would like
+ busybox to support locale settings.
+
+config BB_CONFIG_FEATURE_DEVFS
+ bool "Support for devfs"
+ default n
+ help
+ Enable if you want BusyBox to work with devfs.
+
+config BB_CONFIG_FEATURE_DEVPTS
+ bool "Use the devpts filesystem for Unix98 PTYs"
+ default y if BB_CONFIG_FEATURE_DEVFS
+ help
+ Enable if you want BusyBox to use Unix98 PTY support. If enabled,
+ busybox will use /dev/ptmx for the master side of the pseudoterminal
+ and /dev/pts/<number> for the slave side. Otherwise, BSD style
+ /dev/ttyp<number> will be used. To use this option, you should have
+ devpts or devfs mounted.
+
+config BB_CONFIG_FEATURE_CLEAN_UP
+ bool "Clean up all memory before exiting (usually not needed)"
+ default n
+ help
+ As a size optimization, busybox by default does not cleanup memory
+ that is dynamically allocated or close files before exiting. This
+ saves space and is usually not needed since the OS will clean up for
+ us. Don't enable this unless you have a really good reason to clean
+ things up manually.
+
+config BB_CONFIG_FEATURE_SUID
+ bool "Support for SUID/SGID handling"
+ default n
+ help
+ Support SUID and SGID binaries.
+
+config BB_CONFIG_FEATURE_SUID_CONFIG
+ bool "Runtime SUID/SGID configuration via /etc/busybox.conf"
+ default y if BB_CONFIG_FEATURE_SUID
+ depends on BB_CONFIG_FEATURE_SUID
+ help
+ Allow the SUID / SGID state of an applet to be determinded runtime by
+ checking /etc/busybox.conf. The format of this file is as follows:
+
+ <applet> = [Ssx-][Ssx-][x-] (<username>|<uid>).(<groupname>|<gid>)
+
+ An example might help:
+
+ [SUID]
+ su = ssx root.0 # applet su can be run by anyone and runs with euid=0/egid=0
+ su = ssx # exactly the same
+
+ mount = sx- root.disk # applet mount can be run by root and members of group disk
+ # and runs with euid=0
+
+ cp = --- # disable applet cp for everyone
+
+ Robert 'sandman' Griebl has more information here:
+ <url: http://www.softforge.de/bb/suid.html >.
+
+config BB_CONFIG_FEATURE_SUID_CONFIG_QUIET
+ bool "Suppress warning message if /etc/busybox.conf is not readable"
+ default n
+ depends on BB_CONFIG_FEATURE_SUID_CONFIG
+ help
+ /etc/busybox.conf should be readable by the user needing the SUID, check
+ this option to avoid users to be notified about missing permissions.
+
+config BB_CONFIG_SELINUX
+ bool "Support NSA Security Enhanced Linux"
+ default n
+ help
+ Enable support for SE Linux in applets ls, ps, and id. Also provide
+ the option of compiling in SE Linux applets.
+
+endmenu
+
+menu 'Build Options'
+ depends on BUSYBOX
+
+config BB_CONFIG_STATIC
+ bool "Build BusyBox as a static binary (no shared libs)"
+ default n
+ help
+ If you want to build a static BusyBox binary, which does not
+ use or require any shared libraries, then enable this option.
+ This can make BusyBox be considerably larger, so you should
+ leave this option false unless you have a good reason (i.e.
+ your target platform does not support shared libraries, or
+ you are building an initrd which doesn't need anything but
+ BusyBox, etc).
+
+ Most people will leave this set to 'N'.
+
+config BB_CONFIG_LFS
+ bool "Build with Large File Support (for accessing files > 2 GB)"
+ default n
+ help
+ If you want to build BusyBox with large file support, then enable
+ this option. This will have no effect if your kernel or your C
+ library lacks large file support for large files. Some of the
+ programs that can benefit from large file support include dd, gzip,
+ cp, mount, tar, and many others. If you want to access files larger
+ than 2 Gigabytes, enable this option. Otherwise, leave it set to 'N'.
+
+config BB_USING_CROSS_COMPILER
+ bool "Do you want to build BusyBox with a Cross Compiler?"
+ default n
+ help
+ Do you want to build BusyBox with a Cross Compiler? If so,
+ then enable this option. Otherwise leave it set to 'N'.
+
+config BB_CROSS_COMPILER_PREFIX
+ string "Cross Compiler prefix"
+ default "/usr/i386-linux-uclibc/bin/i386-uclibc-"
+ depends on BB_USING_CROSS_COMPILER
+ help
+ If you want to build BusyBox with a cross compiler, then you
+ will need to set this to the cross-compiler prefix. For example,
+ if my cross-compiler is /usr/iBB_386-linux-uclibc/bin/iBB_386-uclibc-gcc
+ then I would enter '/usr/i386-linux-uclibc/bin/i386-uclibc-' here,
+ which will ensure the correct compiler is used.
+
+config BB_EXTRA_CFLAGS_OPTIONS
+ string "Any extra CFLAGS options for the compiler?"
+ default ""
+ help
+ Do you want to pass any extra CFLAGS options to the compiler as
+ you build BusyBox? If so, this is the option for you... For example,
+ if you want to add some simple compiler switches (like -march=iBB_686),
+ or check for warnings using -Werror, just those options here.
+
+endmenu
+
+menu 'Installation Options'
+ depends on BUSYBOX
+
+config BB_CONFIG_INSTALL_NO_USR
+ bool "Don't use /usr"
+ default n
+ help
+ Disable use of /usr. Don't activate this option if you don't know,
+ that you really want this behaviour.
+
+config BB_PREFIX
+ string "BusyBox installation prefix"
+ default "./_install"
+ help
+ Define Your directory to install BusyBox files/subdirs.
+
+
+
+endmenu
+
+source config/busybox-1.0.0-pre3/archival/Config.in
+source config/busybox-1.0.0-pre3/coreutils/Config.in
+source config/busybox-1.0.0-pre3/console-tools/Config.in
+source config/busybox-1.0.0-pre3/debianutils/Config.in
+source config/busybox-1.0.0-pre3/editors/Config.in
+source config/busybox-1.0.0-pre3/findutils/Config.in
+source config/busybox-1.0.0-pre3/init/Config.in
+source config/busybox-1.0.0-pre3/loginutils/Config.in
+source config/busybox-1.0.0-pre3/miscutils/Config.in
+source config/busybox-1.0.0-pre3/modutils/Config.in
+source config/busybox-1.0.0-pre3/networking/Config.in
+source config/busybox-1.0.0-pre3/procps/Config.in
+source config/busybox-1.0.0-pre3/shell/Config.in
+source config/busybox-1.0.0-pre3/sysklogd/Config.in
+source config/busybox-1.0.0-pre3/util-linux/Config.in
+
+menu 'Debugging Options'
+ depends on BUSYBOX
+
+config BB_CONFIG_DEBUG
+ bool "Build BusyBox with Debugging symbols"
+ default n
+ help
+ Say Y here if you wish to compile BusyBox with debugging symbols.
+ This will allow you to use a debugger to examine BusyBox internals
+ while applets are running. This increases the size of the binary
+ considerably and should only be used when doing development.
+ If you are doing development and want to debug BusyBox, answer Y.
+
+ Otherwise, answer N.
+
+config BB_CONFIG_DMALLOC
+ bool "Build BusyBox with dmalloc support"
+ default n
+ depends on BB_CONFIG_DEBUG && !BB_CONFIG_EFENCE
+ help
+ This enables compiling with dmalloc ( http://dmalloc.com/ )
+ which is an excellent public domain mem leak and malloc problem
+ detector. To enable dmalloc, before running busybox you will
+ want to properly set your environment, for example:
+ export DMALLOC_OPTIONS=debug=0x34f47d83,inter=100,log=logfile
+ The 'debug=' value is generated using the following command
+ dmalloc -p log-stats -p log-non-free -p log-bad-space -p log-elapsed-time \
+ -p check-fence -p check-heap -p check-lists -p check-blank \
+ -p check-funcs -p realloc-copy -p allow-free-null
+
+ This will make BusyBox be considerable larger and run slower, so
+ you should leave this option disabled for production use.
+
+config BB_CONFIG_EFENCE
+ bool "Build BusyBox with Electric-fence support"
+ default n
+ depends on BB_CONFIG_DEBUG && !BB_CONFIG_DMALLOC
+ help
+ This enables compiling with Electric-fence support. Electric
+ fence is another very useful malloc debugging library which used
+ your computers virtual memory hardware to detect illegal memory
+ accesses. This support will make BusyBox be considerable larger
+ and run slower, so you should leave this option disabled unless
+ you are hunting a hard to find memory problem.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/sysklogd/Config.in b/config/busybox-1.0.0-pre3/sysklogd/Config.in
new file mode 100644
index 000000000..5e7c77a33
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/sysklogd/Config.in
@@ -0,0 +1,83 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "System Logging Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_SYSLOGD
+ bool "syslogd"
+ default n
+ help
+ The syslogd utility is used to record logs of all the
+ significant events that occur on a system. Every
+ message that is logged records the date and time of the
+ event, and will generally also record the name of the
+ application that generated the message. When used in
+ conjunction with klogd, messages from the Linux kernel
+ can also be recorded. This is terribly useful,
+ especially for finding what happened when somthing goes
+ wrong. And something almost always will go wrong if
+ you wait long enough....
+
+config BB_CONFIG_FEATURE_REMOTE_LOG
+ bool " Remote Log support"
+ default n
+ depends on BB_CONFIG_SYSLOGD
+ help
+ When you enable this feature, the syslogd utility can
+ be used to send system log messages to another system
+ connected via a network. This allows the remote
+ machine to log all the system messages, which can be
+ terribly useful for reducing the number of serial
+ cables you use. It can also be a very good security
+ measure to prevent system logs from being tampered with
+ by an intruder.
+
+config BB_CONFIG_FEATURE_IPC_SYSLOG
+ bool " Circular Buffer support"
+ default n
+ depends on BB_CONFIG_SYSLOGD
+ help
+ When you enable this feature, the syslogd utility will
+ use a circular buffer to record system log messages.
+ When the buffer is filled it will continue to overwrite
+ the oldest messaged. This can be very useful for
+ systems with little or no perminant storage, since
+ otherwise system logs can eventually fill up your
+ entire filesystem, which may cause your system to
+ break badly.
+
+config BB_CONFIG_LOGREAD
+ bool " logread"
+ default y
+ depends on BB_CONFIG_FEATURE_IPC_SYSLOG
+ help
+ If you enabled Circular Buffer support, you almost
+ certainly want to enable this feature as well. This
+ utility will allow you to read the messages that are
+ stored in the syslogd circular buffer.
+
+config BB_CONFIG_KLOGD
+ bool "klogd"
+ default n
+ depends on BB_CONFIG_SYSLOGD
+ help
+ klogd is a utility which which intercepts and logs all
+ messages from the Linux kernel and sends the messages
+ out to the 'syslogd' utility so they can be logged. If
+ you wish to record the messages produced by the kernel,
+ you should enable this option.
+
+config BB_CONFIG_LOGGER
+ bool "logger"
+ default n
+ help
+ The logger utility allows you to send arbitrary text
+ messages to the system log (i.e. the 'syslogd' utility) so
+ they can be logged. This is generally used to help locate
+ problems that occur within programs and scripts.
+
+endmenu
+
diff --git a/config/busybox-1.0.0-pre3/util-linux/Config.in b/config/busybox-1.0.0-pre3/util-linux/Config.in
new file mode 100644
index 000000000..518b00081
--- /dev/null
+++ b/config/busybox-1.0.0-pre3/util-linux/Config.in
@@ -0,0 +1,361 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "Linux System Utilities"
+ depends on BUSYBOX
+
+
+config BB_CONFIG_DMESG
+ bool "dmesg"
+ default n
+ help
+ dmesg is used to examine or control the kernel ring buffer. When the
+ Linux kernel prints messages to the system log, they are stored in
+ the kernel ring buffer. You can use dmesg to print the kernel's ring
+ buffer, clear the kernel ring buffer, change the size of the kernel
+ ring buffer, and change the priority level at which kernel messages
+ are also logged to the system console. Enable this option if you
+ wish to enable the 'dmesg' utility.
+
+config BB_CONFIG_FBSET
+ bool "fbset"
+ default n
+ help
+ fbset is used to show or change the settings of a Linux frame buffer
+ device. The frame buffer device provides a simple and unique
+ interface to access a graphic display. Enable this option if you wish
+ to enable the 'fbset' utility.
+
+
+config BB_CONFIG_FEATURE_FBSET_FANCY
+ bool " Turn on extra fbset options"
+ default n
+ depends on BB_CONFIG_FBSET
+ help
+ This option enables extended fbset options, allowing one to set the
+ framebuffer size, color depth, etc. interface to access a graphic
+ display. Enable this option if you wish to enable extended fbset
+ options.
+
+config BB_CONFIG_FEATURE_FBSET_READMODE
+ bool " Turn on fbset readmode support"
+ default n
+ depends on BB_CONFIG_FBSET
+ help
+ This option allows fbset to read the video mode database stored by
+ default as /etc/fb.modes, which can be used to set frame buffer
+ device to pre-defined video modes.
+
+config BB_CONFIG_FDFLUSH
+ bool "fdflush"
+ default n
+ help
+ Fdflush is only needed when changing media on slightly-broken
+ removable media drives. It is used to make Linux believe that a
+ hardware disk-change switch has been actuated, which causes Linux to
+ forget anything it has cached from the previous media. If you have
+ such a slightly-broken drive, you will need to run fdflush every time
+ you change a disk. Most people have working hardware and can safely
+ say leave this disabled.
+
+config BB_CONFIG_FDFORMAT
+ bool "fdformat"
+ default n
+ help
+ Fdformat is used to low-level format a floppy disk.
+
+config BB_CONFIG_FDISK
+ bool "fdisk"
+ default n
+ help
+ The fdisk utility is used to divide hard disks into one or more
+ logical disks, which are generally called partitions. This utility
+ can be used to list and edit the set of partitions or BSD style
+ 'disk slices' that are defined on a hard drive.
+
+if !BB_CONFIG_LFS
+config BB_FDISK_SUPPORT_LARGE_DISKS
+ bool " support over 4Gb disks"
+ default y
+ depends on BB_CONFIG_FDISK
+ help
+ Previous set detected unsupport large file, but you can support
+ large disks after enable this option
+endif
+
+config BB_CONFIG_FEATURE_FDISK_WRITABLE
+ bool " Write support"
+ default y
+ depends on BB_CONFIG_FDISK
+ help
+ Enabling this option allows you to create or change a partition table
+ and write those changes out to disk. If you leave this option
+ disabled, you will only be able to view the partition table.
+
+config BB_CONFIG_FEATURE_AIX_LABEL
+ bool " Support AIX disklabels"
+ default n
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
+ help
+ Enabling this option allows you to create or change AIX disklabels.
+ Most people can safely leave this option disabled.
+
+config BB_CONFIG_FEATURE_SGI_LABEL
+ bool " Support SGI disklabels"
+ default n
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
+ help
+ Enabling this option allows you to create or change SGI disklabels.
+ Most people can safely leave this option disabled.
+
+config BB_CONFIG_FEATURE_SUN_LABEL
+ bool " Support SUN disklabels"
+ default n
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
+ help
+ Enabling this option allows you to create or change SUN disklabels.
+ Most people can safely leave this option disabled.
+
+config BB_CONFIG_FEATURE_OSF_LABEL
+ bool " Support BSD disklabels"
+ default n
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
+ help
+ Enabling this option allows you to create or change BSD disklabels
+ and define and edit BSD disk slices.
+
+config BB_CONFIG_FEATURE_FDISK_ADVANCED
+ bool " Support expert mode"
+ default n
+ depends on BB_CONFIG_FDISK && BB_CONFIG_FEATURE_FDISK_WRITABLE
+ help
+ Enabling this option allows you to do terribly unsafe things like
+ define arbitrary drive geometry, move the beginning of data in a
+ partition, and similarly evil things. Unless you have a very good
+ reason you would be wise to leave this disabled.
+
+config BB_CONFIG_FREERAMDISK
+ bool "freeramdisk"
+ default n
+ help
+ Linux allows you to create ramdisks. This utility allows you to
+ delete them and completely free all memory that was used for the
+ ramdisk. For example, if you boot Linux into a ramdisk and later
+ pivot_root, you may want to free the memory that is allocated to the
+ ramdisk. If you have no use for freeing memory from a ramdisk, leave
+ this disabled.
+
+config BB_CONFIG_FSCK_MINIX
+ bool "fsck_minix"
+ default n
+ help
+ The minix filesystem is a nice, small, compact, read-write filesystem
+ with little overhead. It is not a journaling filesystem however and
+ can encounted corruption if it is not properly unmounted or if the
+ power goes off in the middle of a write. This utility allows you to
+ check for and attempt to repair any corruption that occurs to a minix
+ filesystem.
+
+config BB_CONFIG_MKFS_MINIX
+ bool "mkfs_minix"
+ default n
+ help
+ The minix filesystem is a nice, small, compact, read-write filesystem
+ with little overhead. If you wish to be able to create minix filesystems
+ this utility will do the job for you.
+
+comment "Minix filesystem support"
+ depends on BB_CONFIG_FSCK_MINIX || BB_CONFIG_MKFS_MINIX
+
+config BB_CONFIG_FEATURE_MINIX2
+ bool " Support Minix fs v2 (fsck_minix/mkfs_minix)"
+ default y
+ depends on BB_CONFIG_FSCK_MINIX || BB_CONFIG_MKFS_MINIX
+ help
+ If you wish to be able to create version 2 minix filesystems, enable this.
+ If you enabled 'mkfs_minix' then you almost certainly want to be using the
+ version 2 filesystem support.
+
+config BB_CONFIG_GETOPT
+ bool "getopt"
+ default n
+ help
+ The getopt utility is used to break up (parse) options in command
+ lines to make it easy to write complex shell scripts that also check
+ for legal (and illegal) options. If you want to write horribly
+ complex shell scripts, or use some horribly complex shell script
+ written by others, this utility may be for you. Most people will
+ wisely leave this disabled.
+
+config BB_CONFIG_HEXDUMP
+ bool "hexdump"
+ default n
+ help
+ The hexdump utility is used to display binary data in a readable
+ way that is comparable to the output from most hex editors.
+
+config BB_CONFIG_HWCLOCK
+ bool "hwclock"
+ default n
+ help
+ The hwclock utility is used to read and set the hardware clock
+ on a system. This is primarily used to set the correct time in
+ the hardware close, so the hardware will keep the correct time
+ when Linux is _not_ running.
+
+config BB_CONFIG_FEATURE_HWCLOCK_LONGOPTIONS
+ bool " Support long options (--hctosys,...)"
+ default n
+ depends on BB_CONFIG_HWCLOCK
+ help
+ By default, the hwclock utility only uses short options. If you
+ are overly fond of the long options, such as --hctosys, --utc, etc)
+ then enable this option.
+
+config BB_CONFIG_LOSETUP
+ bool "losetup"
+ default n
+ help
+ losetup is used to associate or detach a loop device with a regular
+ file or block device, and to query the status of a loop device. This
+ version does not currently support enabling data encryption.
+
+config BB_CONFIG_MKSWAP
+ bool "mkswap"
+ default n
+ help
+ The mkswap utility is used to configure a file or disk partition as
+ Linux swap space. This allows Linux to use the entire file or
+ partition as if it were additional RAM, which can greatly increase
+ the capability of low-memory machines. This additional memory is
+ much slower than real RAM, but can be very helpful at preventing your
+ applications being killed by the Linux out of memory (OOM) killer. Once
+ you have created swap space using 'mkswap' you need to enable the swap
+ space using the 'swapon' utility.
+
+config BB_CONFIG_MORE
+ bool "more"
+ default n
+ help
+ More is a simple utility which allows you to read text one screen
+ sized page at a time. If you want to read text that is larger than
+ the screen, and you are using anything faster than a 300 baud modem,
+ you will probably find this utility very helpful. If you don't have
+ any need to reading text files, you can leave this disabled.
+
+config BB_CONFIG_FEATURE_USE_TERMIOS
+ bool " Use termios to manipulate the screen"
+ default y
+ depends on BB_CONFIG_MORE
+ help
+ This option allows utilities such as 'more' and 'top' to determine
+ the size of the screen. If you leave this disabled, your utilities
+ that display things on the screen with be especially primitive and
+ will be unable to determine the current screen size, and will be
+ unable to move the cursor.
+
+config BB_CONFIG_PIVOT_ROOT
+ bool "pivot_root"
+ default n
+ help
+ The pivot_root utility swaps the mount points for the root filesystem
+ with some other mounted filesystem. This allows you to do all sorts
+ of wild and crazy things with your Linux system and is far more
+ powerful than 'chroot'.
+
+config BB_CONFIG_RDATE
+ bool "rdate"
+ default n
+ help
+ The rdate utility allows you to syncronize the date and time of your
+ system clock with the date and time of a remote networked system using
+ the RFC868 protocol, which is built into the inetd daemon on most
+ systems.
+
+config BB_CONFIG_SWAPONOFF
+ bool "swaponoff"
+ default n
+ help
+ This option enables both the 'swapon' and the 'swapoff' utilities.
+ Once you have created some swap space using 'mkswap', you also need
+ to enable your swap space with the 'swapon' utility. The 'swapoff'
+ utility is used, typically at system shutdown, to disable any swap
+ space. If you are not using any swap space, you can leave this
+ option disabled.
+
+config BB_CONFIG_MOUNT
+ bool "mount"
+ default n
+ help
+ All files and filesystems in Unix are arranged into one big directory
+ tree. The 'mount' utility is used to graft a filesystem onto a
+ particular part of the tree. A filesystem can either live on a block
+ device, or it can be accessible over the network, as is the case with
+ NFS filesystems. Most people using BusyBox will also want to enable
+ the 'mount' utility.
+
+config BB_CONFIG_NFSMOUNT
+ bool " Support mounting nfs file systems"
+ default n
+ depends on BB_CONFIG_MOUNT
+ help
+ Enable mounting of NFS file systems.
+
+config BB_CONFIG_UMOUNT
+ bool "umount"
+ default n
+ help
+ When you want to remove a mounted filesystem from its current mount point,
+ for example when you are shutting down the system, the 'umount' utility is
+ the tool to use. If you enabled the 'mount' utility, you almost certainly
+ also want to enable 'umount'.
+
+config BB_CONFIG_FEATURE_MOUNT_FORCE
+ bool " Support forced filesystem unmounting"
+ default n
+ depends on BB_CONFIG_UMOUNT
+ help
+ This allows you to _force_ a filesystem to be umounted. This is generally
+ only useful when you want to get rid of an unreachable NFS system.
+
+comment "Common options for mount/umount"
+ depends on BB_CONFIG_MOUNT || BB_CONFIG_UMOUNT
+
+config BB_CONFIG_FEATURE_MOUNT_LOOP
+ bool " Support for loop devices"
+ default n
+ depends on BB_CONFIG_MOUNT || BB_CONFIG_UMOUNT
+ help
+ Enabling this feature allows mount to use the '-o' loop options,
+ which lets you loop mount files. Mount will automagically setup and
+ free the necessary loop devices so you do not need to mess with the
+ 'losetup' utility unless you really want to. This is really only useful
+ if you plan to loop mount files.
+
+config BB_CONFIG_FEATURE_MTAB_SUPPORT
+ bool " Support for a real /etc/mtab (instead of /proc/mounts)"
+ default n
+ depends on BB_CONFIG_MOUNT || BB_CONFIG_UMOUNT
+ help
+ If your root filesystem is writable and you wish to have the 'mount'
+ utility create an mtab file listing the filesystems which have been
+ mounted then you should enable this option. Most people that use
+ BusyBox have a read-only root filesystem, so they will leave this
+ option disabled and BusyBox will use the /proc/mounts file.
+
+config BB_CONFIG_FEATURE_MTAB_FILENAME
+ string " mtab file location"
+ default "/etc/mtab"
+ depends on BB_CONFIG_FEATURE_MTAB_SUPPORT
+ help
+ Some people have a read only root filesystem, but they also wish to
+ have the 'mount' utility create an mtab file listing the filesystems
+ which have been mounted. This option allows you to specify an alternative
+ location for the mtab file, such as /var/mtab, or /tmp/mtab. The default
+ value is /etc/mtab, which is where this file is located on most desktop
+ Linux systems.
+
+endmenu
+