busybox: update to 1.37.0

Add a patch to fix non-x86 builds, refresh patches and update/fix the
configuration as described in 98b09ba250 (cited here for future reference).

Config refresh:

Refresh commands, run after busybox is first built once:

cd package/utils/busybox/config/
../convert_menuconfig.pl ../../../../build_dir/target-arm_cortex-a15+neon-vfpv4_musl_eabi/busybox-default/busybox-1.37.0
cd ..
./convert_defaults.pl ../../../build_dir/target-arm_cortex-a15+neon-vfpv4_musl_eabi/busybox-default/busybox-1.37.0/.config > Config-defaults.in

Manual edits needed after config refresh:

* Config-defaults.in: OpenWrt config symbol IPV6 logic applied to
  BUSYBOX_DEFAULT_FEATURE_IPV6

* Config-defaults.in: OpenWrt config TARGET_bcm53xx logic applied to
  BUSYBOX_DEFAULT_TRUNCATE (commit 547f1ec)

* Config-defaults.in: OpenWrt logic applied to
  BUSYBOX_DEFAULT_LOGIN_SESSION_AS_CHILD (commit dc92917)

* Config-defaults.in: correct the default ports that get reset
  BUSYBOX_DEFAULT_FEATURE_HTTPD_PORT_DEFAULT    80
  BUSYBOX_DEFAULT_FEATURE_TELNETD_PORT_DEFAULT  23

* config/editors/Config.in: Add USE_GLIBC dependency to
  BUSYBOX_CONFIG_FEATURE_VI_REGEX_SEARCH (commit f141090)

* config/shell/Config.in: change at "Options common to all shells" the conditional symbol
  SHELL_ASH --> BUSYBOX_CONFIG_SHELL_ASH
  (discussion in http://lists.openwrt.org/pipermail/openwrt-devel/2021-January/033140.html
  Apparently our script does not see the hidden option while
  prepending config options with "BUSYBOX_CONFIG_" which leads to a
  missed dependency when the options are later evaluated.)

* Edit a few Config.in files by adding quotes to sourced items in
  config/Config.in, config/networking/Config.in and config/util-linux/Config.in (commit 1da014fcca)

Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
[rebased with the change download line commit]
[corrected version in the refresh example in commit message]
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Link: https://github.com/openwrt/openwrt/pull/17107
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
Rui Salvaterra 2024-11-28 20:41:37 +02:00 committed by Hauke Mehrtens
parent 1aa2695620
commit 89bb4050f7
29 changed files with 402 additions and 343 deletions

View File

@ -28,6 +28,9 @@ config BUSYBOX_DEFAULT_FEATURE_COMPRESS_USAGE
config BUSYBOX_DEFAULT_LFS config BUSYBOX_DEFAULT_LFS
bool bool
default y default y
config BUSYBOX_DEFAULT_TIME64
bool
default n
config BUSYBOX_DEFAULT_PAM config BUSYBOX_DEFAULT_PAM
bool bool
default n default n
@ -1181,6 +1184,9 @@ config BUSYBOX_DEFAULT_FEATURE_FIND_EXEC
config BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_PLUS config BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_PLUS
bool bool
default n default n
config BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_OK
bool
default n
config BUSYBOX_DEFAULT_FEATURE_FIND_USER config BUSYBOX_DEFAULT_FEATURE_FIND_USER
bool bool
default y default y
@ -2051,6 +2057,9 @@ config BUSYBOX_DEFAULT_FLASH_UNLOCK
config BUSYBOX_DEFAULT_FLASHCP config BUSYBOX_DEFAULT_FLASHCP
bool bool
default n default n
config BUSYBOX_DEFAULT_GETFATTR
bool
default n
config BUSYBOX_DEFAULT_HDPARM config BUSYBOX_DEFAULT_HDPARM
bool bool
default n default n
@ -2457,6 +2466,9 @@ config BUSYBOX_DEFAULT_FEATURE_IP_ADDRESS
config BUSYBOX_DEFAULT_FEATURE_IP_LINK config BUSYBOX_DEFAULT_FEATURE_IP_LINK
bool bool
default y default y
config BUSYBOX_DEFAULT_FEATURE_IP_LINK_CAN
bool
default n
config BUSYBOX_DEFAULT_FEATURE_IP_ROUTE config BUSYBOX_DEFAULT_FEATURE_IP_ROUTE
bool bool
default y default y
@ -2682,6 +2694,9 @@ config BUSYBOX_DEFAULT_ZCIP
config BUSYBOX_DEFAULT_UDHCPD config BUSYBOX_DEFAULT_UDHCPD
bool bool
default n default n
config BUSYBOX_DEFAULT_FEATURE_UDHCPD_BOOTP
bool
default n
config BUSYBOX_DEFAULT_FEATURE_UDHCPD_BASE_IP_ON_MAC config BUSYBOX_DEFAULT_FEATURE_UDHCPD_BASE_IP_ON_MAC
bool bool
default n default n
@ -3042,9 +3057,6 @@ config BUSYBOX_DEFAULT_ASH_PRINTF
config BUSYBOX_DEFAULT_ASH_TEST config BUSYBOX_DEFAULT_ASH_TEST
bool bool
default y default y
config BUSYBOX_DEFAULT_ASH_SLEEP
bool
default n
config BUSYBOX_DEFAULT_ASH_HELP config BUSYBOX_DEFAULT_ASH_HELP
bool bool
default n default n

View File

@ -5,14 +5,14 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=busybox PKG_NAME:=busybox
PKG_VERSION:=1.36.1 PKG_VERSION:=1.37.0
PKG_RELEASE:=2 PKG_RELEASE:=1
PKG_FLAGS:=essential PKG_FLAGS:=essential
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=https://www.busybox.net/downloads \ PKG_SOURCE_URL:=https://www.busybox.net/downloads \
https://sources.buildroot.net/$(PKG_NAME) https://sources.buildroot.net/$(PKG_NAME)
PKG_HASH:=b8cc24c9574d809e7279c3be349795c5d5ceb6fdf19ca709f80cde50e47de314 PKG_HASH:=3311dff32e746499f4df0d5df04d7eb396382d7e108bb9250e7b519b837043a4
PKG_BUILD_DEPENDS:=BUSYBOX_CONFIG_PAM:libpam PKG_BUILD_DEPENDS:=BUSYBOX_CONFIG_PAM:libpam
PKG_BUILD_PARALLEL:=1 PKG_BUILD_PARALLEL:=1

View File

@ -107,6 +107,17 @@ config BUSYBOX_CONFIG_LFS
programs that can benefit from large file support include dd, gzip, programs that can benefit from large file support include dd, gzip,
cp, mount, tar. cp, mount, tar.
config BUSYBOX_CONFIG_TIME64
bool "Support 64bit wide time types"
default BUSYBOX_DEFAULT_TIME64
depends on BUSYBOX_CONFIG_LFS
help
Make times later than 2038 representable for several libc syscalls
(stat, clk_gettime etc.). Note this switch is specific to glibc
and has no effect on platforms that already use 64bit wide time types
(i.e. all 64bit archs and some selected 32bit archs (currently riscv
and x32)).
config BUSYBOX_CONFIG_PAM config BUSYBOX_CONFIG_PAM
bool "Support PAM (Pluggable Authentication Modules)" bool "Support PAM (Pluggable Authentication Modules)"
default BUSYBOX_DEFAULT_PAM default BUSYBOX_DEFAULT_PAM

View File

@ -80,7 +80,7 @@ config BUSYBOX_CONFIG_FEATURE_GUNZIP_LONG_OPTIONS
default BUSYBOX_DEFAULT_FEATURE_GUNZIP_LONG_OPTIONS default BUSYBOX_DEFAULT_FEATURE_GUNZIP_LONG_OPTIONS
depends on (BUSYBOX_CONFIG_GUNZIP || BUSYBOX_CONFIG_ZCAT) && BUSYBOX_CONFIG_LONG_OPTS depends on (BUSYBOX_CONFIG_GUNZIP || BUSYBOX_CONFIG_ZCAT) && BUSYBOX_CONFIG_LONG_OPTS
config BUSYBOX_CONFIG_BUNZIP2 config BUSYBOX_CONFIG_BUNZIP2
bool "bunzip2 (8.7 kb)" bool "bunzip2 (9.1 kb)"
default BUSYBOX_DEFAULT_BUNZIP2 default BUSYBOX_DEFAULT_BUNZIP2
select BUSYBOX_CONFIG_FEATURE_BZIP2_DECOMPRESS select BUSYBOX_CONFIG_FEATURE_BZIP2_DECOMPRESS
help help
@ -94,13 +94,13 @@ config BUSYBOX_CONFIG_BUNZIP2
should probably say N here. should probably say N here.
config BUSYBOX_CONFIG_BZCAT config BUSYBOX_CONFIG_BZCAT
bool "bzcat (8.7 kb)" bool "bzcat (9 kb)"
default BUSYBOX_DEFAULT_BZCAT default BUSYBOX_DEFAULT_BZCAT
select BUSYBOX_CONFIG_FEATURE_BZIP2_DECOMPRESS select BUSYBOX_CONFIG_FEATURE_BZIP2_DECOMPRESS
help help
Alias to "bunzip2 -c". Alias to "bunzip2 -c".
config BUSYBOX_CONFIG_UNLZMA config BUSYBOX_CONFIG_UNLZMA
bool "unlzma (7.5 kb)" bool "unlzma (7.8 kb)"
default BUSYBOX_DEFAULT_UNLZMA default BUSYBOX_DEFAULT_UNLZMA
help help
unlzma is a compression utility using the Lempel-Ziv-Markov chain unlzma is a compression utility using the Lempel-Ziv-Markov chain
@ -109,7 +109,7 @@ config BUSYBOX_CONFIG_UNLZMA
compressors. compressors.
config BUSYBOX_CONFIG_LZCAT config BUSYBOX_CONFIG_LZCAT
bool "lzcat (7.5 kb)" bool "lzcat (7.8 kb)"
default BUSYBOX_DEFAULT_LZCAT default BUSYBOX_DEFAULT_LZCAT
help help
Alias to "unlzma -c". Alias to "unlzma -c".
@ -229,7 +229,7 @@ config BUSYBOX_CONFIG_DPKG
This implementation of dpkg has a number of limitations, This implementation of dpkg has a number of limitations,
you should use the official dpkg if possible. you should use the official dpkg if possible.
config BUSYBOX_CONFIG_DPKG_DEB config BUSYBOX_CONFIG_DPKG_DEB
bool "dpkg-deb (30 kb)" bool "dpkg-deb (29 kb)"
default BUSYBOX_DEFAULT_DPKG_DEB default BUSYBOX_DEFAULT_DPKG_DEB
select BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ select BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ
help help
@ -282,7 +282,7 @@ config BUSYBOX_CONFIG_FEATURE_GZIP_DECOMPRESS
This will be automatically selected if gunzip or zcat is This will be automatically selected if gunzip or zcat is
enabled. enabled.
config BUSYBOX_CONFIG_LZOP config BUSYBOX_CONFIG_LZOP
bool "lzop (12 kb)" bool "lzop (13 kb)"
default BUSYBOX_DEFAULT_LZOP default BUSYBOX_DEFAULT_LZOP
help help
Lzop compression/decompresion. Lzop compression/decompresion.

View File

@ -7,39 +7,39 @@
menu "Console Utilities" menu "Console Utilities"
config BUSYBOX_CONFIG_CHVT config BUSYBOX_CONFIG_CHVT
bool "chvt (2 kb)" bool "chvt (2.2 kb)"
default BUSYBOX_DEFAULT_CHVT default BUSYBOX_DEFAULT_CHVT
help help
This program is used to change to another terminal. This program is used to change to another terminal.
Example: chvt 4 (change to terminal /dev/tty4) Example: chvt 4 (change to terminal /dev/tty4)
config BUSYBOX_CONFIG_CLEAR config BUSYBOX_CONFIG_CLEAR
bool "clear (tiny)" bool "clear (371 bytes)"
default BUSYBOX_DEFAULT_CLEAR default BUSYBOX_DEFAULT_CLEAR
help help
This program clears the terminal screen. This program clears the terminal screen.
config BUSYBOX_CONFIG_DEALLOCVT config BUSYBOX_CONFIG_DEALLOCVT
bool "deallocvt (1.9 kb)" bool "deallocvt (2.2 kb)"
default BUSYBOX_DEFAULT_DEALLOCVT default BUSYBOX_DEFAULT_DEALLOCVT
help help
This program deallocates unused virtual consoles. This program deallocates unused virtual consoles.
config BUSYBOX_CONFIG_DUMPKMAP config BUSYBOX_CONFIG_DUMPKMAP
bool "dumpkmap (1.6 kb)" bool "dumpkmap (1.9 kb)"
default BUSYBOX_DEFAULT_DUMPKMAP default BUSYBOX_DEFAULT_DUMPKMAP
help help
This program dumps the kernel's keyboard translation table to This program dumps the kernel's keyboard translation table to
stdout, in binary format. You can then use loadkmap to load it. stdout, in binary format. You can then use loadkmap to load it.
config BUSYBOX_CONFIG_FGCONSOLE config BUSYBOX_CONFIG_FGCONSOLE
bool "fgconsole (1.5 kb)" bool "fgconsole (1.8 kb)"
default BUSYBOX_DEFAULT_FGCONSOLE default BUSYBOX_DEFAULT_FGCONSOLE
help help
This program prints active (foreground) console number. This program prints active (foreground) console number.
config BUSYBOX_CONFIG_KBD_MODE config BUSYBOX_CONFIG_KBD_MODE
bool "kbd_mode (4.1 kb)" bool "kbd_mode (4.3 kb)"
default BUSYBOX_DEFAULT_KBD_MODE default BUSYBOX_DEFAULT_KBD_MODE
help help
This program reports and sets keyboard mode. This program reports and sets keyboard mode.
config BUSYBOX_CONFIG_LOADFONT config BUSYBOX_CONFIG_LOADFONT
bool "loadfont (5.2 kb)" bool "loadfont (5.4 kb)"
default BUSYBOX_DEFAULT_LOADFONT default BUSYBOX_DEFAULT_LOADFONT
help help
This program loads a console font from standard input. This program loads a console font from standard input.
@ -78,25 +78,25 @@ config BUSYBOX_CONFIG_FEATURE_LOADFONT_RAW
default BUSYBOX_DEFAULT_FEATURE_LOADFONT_RAW default BUSYBOX_DEFAULT_FEATURE_LOADFONT_RAW
depends on BUSYBOX_CONFIG_LOADFONT || BUSYBOX_CONFIG_SETFONT depends on BUSYBOX_CONFIG_LOADFONT || BUSYBOX_CONFIG_SETFONT
config BUSYBOX_CONFIG_LOADKMAP config BUSYBOX_CONFIG_LOADKMAP
bool "loadkmap (1.8 kb)" bool "loadkmap (2.1 kb)"
default BUSYBOX_DEFAULT_LOADKMAP default BUSYBOX_DEFAULT_LOADKMAP
help help
This program loads a keyboard translation table from This program loads a keyboard translation table from
standard input. standard input.
config BUSYBOX_CONFIG_OPENVT config BUSYBOX_CONFIG_OPENVT
bool "openvt (7.2 kb)" bool "openvt (7.4 kb)"
default BUSYBOX_DEFAULT_OPENVT default BUSYBOX_DEFAULT_OPENVT
help help
This program is used to start a command on an unused This program is used to start a command on an unused
virtual terminal. virtual terminal.
config BUSYBOX_CONFIG_RESET config BUSYBOX_CONFIG_RESET
bool "reset (345 bytes)" bool "reset (676 bytes)"
default BUSYBOX_DEFAULT_RESET default BUSYBOX_DEFAULT_RESET
help help
This program is used to reset the terminal screen, if it This program is used to reset the terminal screen, if it
gets messed up. gets messed up.
config BUSYBOX_CONFIG_RESIZE config BUSYBOX_CONFIG_RESIZE
bool "resize (903 bytes)" bool "resize (1.2 kb)"
default BUSYBOX_DEFAULT_RESIZE default BUSYBOX_DEFAULT_RESIZE
help help
This program is used to (re)set the width and height of your current This program is used to (re)set the width and height of your current
@ -112,7 +112,7 @@ config BUSYBOX_CONFIG_FEATURE_RESIZE_PRINT
E.g.: E.g.:
COLUMNS=80;LINES=44;export COLUMNS LINES; COLUMNS=80;LINES=44;export COLUMNS LINES;
config BUSYBOX_CONFIG_SETCONSOLE config BUSYBOX_CONFIG_SETCONSOLE
bool "setconsole (3.6 kb)" bool "setconsole (3.8 kb)"
default BUSYBOX_DEFAULT_SETCONSOLE default BUSYBOX_DEFAULT_SETCONSOLE
help help
Redirect writes to /dev/console to another device, Redirect writes to /dev/console to another device,
@ -125,18 +125,18 @@ config BUSYBOX_CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS
default BUSYBOX_DEFAULT_FEATURE_SETCONSOLE_LONG_OPTIONS default BUSYBOX_DEFAULT_FEATURE_SETCONSOLE_LONG_OPTIONS
depends on BUSYBOX_CONFIG_SETCONSOLE && BUSYBOX_CONFIG_LONG_OPTS depends on BUSYBOX_CONFIG_SETCONSOLE && BUSYBOX_CONFIG_LONG_OPTS
config BUSYBOX_CONFIG_SETKEYCODES config BUSYBOX_CONFIG_SETKEYCODES
bool "setkeycodes (2.1 kb)" bool "setkeycodes (2.4 kb)"
default BUSYBOX_DEFAULT_SETKEYCODES default BUSYBOX_DEFAULT_SETKEYCODES
help help
This program loads entries into the kernel's scancode-to-keycode This program loads entries into the kernel's scancode-to-keycode
map, allowing unusual keyboards to generate usable keycodes. map, allowing unusual keyboards to generate usable keycodes.
config BUSYBOX_CONFIG_SETLOGCONS config BUSYBOX_CONFIG_SETLOGCONS
bool "setlogcons (1.8 kb)" bool "setlogcons (2 kb)"
default BUSYBOX_DEFAULT_SETLOGCONS default BUSYBOX_DEFAULT_SETLOGCONS
help help
This program redirects the output console of kernel messages. This program redirects the output console of kernel messages.
config BUSYBOX_CONFIG_SHOWKEY config BUSYBOX_CONFIG_SHOWKEY
bool "showkey (4.7 kb)" bool "showkey (4.9 kb)"
default BUSYBOX_DEFAULT_SHOWKEY default BUSYBOX_DEFAULT_SHOWKEY
help help
Shows keys pressed. Shows keys pressed.

View File

@ -48,14 +48,14 @@ config BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE
Allow df, du, and ls to have human readable output. Allow df, du, and ls to have human readable output.
config BUSYBOX_CONFIG_BASENAME config BUSYBOX_CONFIG_BASENAME
bool "basename (438 bytes)" bool "basename (3.7 kb)"
default BUSYBOX_DEFAULT_BASENAME default BUSYBOX_DEFAULT_BASENAME
help help
basename is used to strip the directory and suffix from filenames, basename is used to strip the directory and suffix from filenames,
leaving just the filename itself. Enable this option if you wish leaving just the filename itself. Enable this option if you wish
to enable the 'basename' utility. to enable the 'basename' utility.
config BUSYBOX_CONFIG_CAT config BUSYBOX_CONFIG_CAT
bool "cat (5.6 kb)" bool "cat (5.8 kb)"
default BUSYBOX_DEFAULT_CAT default BUSYBOX_DEFAULT_CAT
help help
cat is used to concatenate files and print them to the standard cat is used to concatenate files and print them to the standard
@ -96,20 +96,20 @@ config BUSYBOX_CONFIG_FEATURE_CHOWN_LONG_OPTIONS
default BUSYBOX_DEFAULT_FEATURE_CHOWN_LONG_OPTIONS default BUSYBOX_DEFAULT_FEATURE_CHOWN_LONG_OPTIONS
depends on BUSYBOX_CONFIG_CHOWN && BUSYBOX_CONFIG_LONG_OPTS depends on BUSYBOX_CONFIG_CHOWN && BUSYBOX_CONFIG_LONG_OPTS
config BUSYBOX_CONFIG_CHROOT config BUSYBOX_CONFIG_CHROOT
bool "chroot (3.7 kb)" bool "chroot (4 kb)"
default BUSYBOX_DEFAULT_CHROOT default BUSYBOX_DEFAULT_CHROOT
help help
chroot is used to change the root directory and run a command. chroot is used to change the root directory and run a command.
The default command is '/bin/sh'. The default command is '/bin/sh'.
config BUSYBOX_CONFIG_CKSUM config BUSYBOX_CONFIG_CKSUM
bool "cksum (4.1 kb)" bool "cksum (4.3 kb)"
default BUSYBOX_DEFAULT_CKSUM default BUSYBOX_DEFAULT_CKSUM
config BUSYBOX_CONFIG_CRC32 config BUSYBOX_CONFIG_CRC32
bool "crc32 (4.1 kb)" bool "crc32 (4.2 kb)"
default BUSYBOX_DEFAULT_CRC32 default BUSYBOX_DEFAULT_CRC32
config BUSYBOX_CONFIG_COMM config BUSYBOX_CONFIG_COMM
bool "comm (4.2 kb)" bool "comm (4.4 kb)"
default BUSYBOX_DEFAULT_COMM default BUSYBOX_DEFAULT_COMM
help help
comm is used to compare two files line by line and return comm is used to compare two files line by line and return
@ -133,7 +133,7 @@ config BUSYBOX_CONFIG_FEATURE_CP_REFLINK
default BUSYBOX_DEFAULT_FEATURE_CP_REFLINK default BUSYBOX_DEFAULT_FEATURE_CP_REFLINK
depends on BUSYBOX_CONFIG_FEATURE_CP_LONG_OPTIONS depends on BUSYBOX_CONFIG_FEATURE_CP_LONG_OPTIONS
config BUSYBOX_CONFIG_CUT config BUSYBOX_CONFIG_CUT
bool "cut (5.8 kb)" bool "cut (6.7 kb)"
default BUSYBOX_DEFAULT_CUT default BUSYBOX_DEFAULT_CUT
help help
cut is used to print selected parts of lines from cut is used to print selected parts of lines from
@ -146,7 +146,7 @@ config BUSYBOX_CONFIG_FEATURE_CUT_REGEX
help help
Allow regex based delimiters. Allow regex based delimiters.
config BUSYBOX_CONFIG_DATE config BUSYBOX_CONFIG_DATE
bool "date (7 kb)" bool "date (7.2 kb)"
default BUSYBOX_DEFAULT_DATE default BUSYBOX_DEFAULT_DATE
help help
date is used to set the system date or display the date is used to set the system date or display the
@ -183,7 +183,7 @@ config BUSYBOX_CONFIG_FEATURE_DATE_COMPAT
the same format. With it on, 'date DATE' additionally supports the same format. With it on, 'date DATE' additionally supports
MMDDhhmm[[YY]YY][.ss] format. MMDDhhmm[[YY]YY][.ss] format.
config BUSYBOX_CONFIG_DD config BUSYBOX_CONFIG_DD
bool "dd (7.5 kb)" bool "dd (8.3 kb)"
default BUSYBOX_DEFAULT_DD default BUSYBOX_DEFAULT_DD
help help
dd copies a file (from standard input to standard output, dd copies a file (from standard input to standard output,
@ -227,7 +227,7 @@ config BUSYBOX_CONFIG_FEATURE_DD_STATUS
help help
Enable support for status=noxfer/none option. Enable support for status=noxfer/none option.
config BUSYBOX_CONFIG_DF config BUSYBOX_CONFIG_DF
bool "df (6.8 kb)" bool "df (7.1 kb)"
default BUSYBOX_DEFAULT_DF default BUSYBOX_DEFAULT_DF
help help
df reports the amount of disk space used and available df reports the amount of disk space used and available
@ -262,26 +262,26 @@ config BUSYBOX_CONFIG_FEATURE_SKIP_ROOTFS
Otherwise, choose Y. Otherwise, choose Y.
config BUSYBOX_CONFIG_DIRNAME config BUSYBOX_CONFIG_DIRNAME
bool "dirname (329 bytes)" bool "dirname (611 bytes)"
default BUSYBOX_DEFAULT_DIRNAME default BUSYBOX_DEFAULT_DIRNAME
help help
dirname is used to strip a non-directory suffix from dirname is used to strip a non-directory suffix from
a file name. a file name.
config BUSYBOX_CONFIG_DOS2UNIX config BUSYBOX_CONFIG_DOS2UNIX
bool "dos2unix (5.2 kb)" bool "dos2unix (5.5 kb)"
default BUSYBOX_DEFAULT_DOS2UNIX default BUSYBOX_DEFAULT_DOS2UNIX
help help
dos2unix is used to convert a text file from DOS format to dos2unix is used to convert a text file from DOS format to
UNIX format, and vice versa. UNIX format, and vice versa.
config BUSYBOX_CONFIG_UNIX2DOS config BUSYBOX_CONFIG_UNIX2DOS
bool "unix2dos (5.2 kb)" bool "unix2dos (5.5 kb)"
default BUSYBOX_DEFAULT_UNIX2DOS default BUSYBOX_DEFAULT_UNIX2DOS
help help
unix2dos is used to convert a text file from UNIX format to unix2dos is used to convert a text file from UNIX format to
DOS format, and vice versa. DOS format, and vice versa.
config BUSYBOX_CONFIG_DU config BUSYBOX_CONFIG_DU
bool "du (6.3 kb)" bool "du (6.5 kb)"
default BUSYBOX_DEFAULT_DU default BUSYBOX_DEFAULT_DU
help help
du is used to report the amount of disk space used du is used to report the amount of disk space used
@ -292,7 +292,7 @@ config BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
default BUSYBOX_DEFAULT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K default BUSYBOX_DEFAULT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K
depends on BUSYBOX_CONFIG_DU depends on BUSYBOX_CONFIG_DU
config BUSYBOX_CONFIG_ECHO config BUSYBOX_CONFIG_ECHO
bool "echo (1.8 kb)" bool "echo (2 kb)"
default BUSYBOX_DEFAULT_ECHO default BUSYBOX_DEFAULT_ECHO
help help
echo prints a specified string to stdout. echo prints a specified string to stdout.
@ -303,25 +303,25 @@ config BUSYBOX_CONFIG_FEATURE_FANCY_ECHO
default BUSYBOX_DEFAULT_FEATURE_FANCY_ECHO default BUSYBOX_DEFAULT_FEATURE_FANCY_ECHO
depends on BUSYBOX_CONFIG_ECHO || BUSYBOX_CONFIG_ASH_ECHO || BUSYBOX_CONFIG_HUSH_ECHO depends on BUSYBOX_CONFIG_ECHO || BUSYBOX_CONFIG_ASH_ECHO || BUSYBOX_CONFIG_HUSH_ECHO
config BUSYBOX_CONFIG_ENV config BUSYBOX_CONFIG_ENV
bool "env (4 kb)" bool "env (4.3 kb)"
default BUSYBOX_DEFAULT_ENV default BUSYBOX_DEFAULT_ENV
help help
env is used to set an environment variable and run env is used to set an environment variable and run
a command; without options it displays the current a command; without options it displays the current
environment. environment.
config BUSYBOX_CONFIG_EXPAND config BUSYBOX_CONFIG_EXPAND
bool "expand (5.1 kb)" bool "expand (5.3 kb)"
default BUSYBOX_DEFAULT_EXPAND default BUSYBOX_DEFAULT_EXPAND
help help
By default, convert all tabs to spaces. By default, convert all tabs to spaces.
config BUSYBOX_CONFIG_UNEXPAND config BUSYBOX_CONFIG_UNEXPAND
bool "unexpand (5.3 kb)" bool "unexpand (5.5 kb)"
default BUSYBOX_DEFAULT_UNEXPAND default BUSYBOX_DEFAULT_UNEXPAND
help help
By default, convert only leading sequences of blanks to tabs. By default, convert only leading sequences of blanks to tabs.
config BUSYBOX_CONFIG_EXPR config BUSYBOX_CONFIG_EXPR
bool "expr (6.6 kb)" bool "expr (6.8 kb)"
default BUSYBOX_DEFAULT_EXPR default BUSYBOX_DEFAULT_EXPR
help help
expr is used to calculate numbers and print the result expr is used to calculate numbers and print the result
@ -336,22 +336,22 @@ config BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64
the applet slightly larger, but will allow computation with very the applet slightly larger, but will allow computation with very
large numbers. large numbers.
config BUSYBOX_CONFIG_FACTOR config BUSYBOX_CONFIG_FACTOR
bool "factor (2.7 kb)" bool "factor (3.2 kb)"
default BUSYBOX_DEFAULT_FACTOR default BUSYBOX_DEFAULT_FACTOR
help help
factor factorizes integers factor factorizes integers
config BUSYBOX_CONFIG_FALSE config BUSYBOX_CONFIG_FALSE
bool "false (tiny)" bool "false (314 bytes)"
default BUSYBOX_DEFAULT_FALSE default BUSYBOX_DEFAULT_FALSE
help help
false returns an exit code of FALSE (1). false returns an exit code of FALSE (1).
config BUSYBOX_CONFIG_FOLD config BUSYBOX_CONFIG_FOLD
bool "fold (4.6 kb)" bool "fold (4.8 kb)"
default BUSYBOX_DEFAULT_FOLD default BUSYBOX_DEFAULT_FOLD
help help
Wrap text to fit a specific width. Wrap text to fit a specific width.
config BUSYBOX_CONFIG_HEAD config BUSYBOX_CONFIG_HEAD
bool "head (3.8 kb)" bool "head (4 kb)"
default BUSYBOX_DEFAULT_HEAD default BUSYBOX_DEFAULT_HEAD
help help
head is used to print the first specified number of lines head is used to print the first specified number of lines
@ -362,19 +362,19 @@ config BUSYBOX_CONFIG_FEATURE_FANCY_HEAD
default BUSYBOX_DEFAULT_FEATURE_FANCY_HEAD default BUSYBOX_DEFAULT_FEATURE_FANCY_HEAD
depends on BUSYBOX_CONFIG_HEAD depends on BUSYBOX_CONFIG_HEAD
config BUSYBOX_CONFIG_HOSTID config BUSYBOX_CONFIG_HOSTID
bool "hostid (286 bytes)" bool "hostid (566 bytes)"
default BUSYBOX_DEFAULT_HOSTID default BUSYBOX_DEFAULT_HOSTID
help help
hostid prints the numeric identifier (in hexadecimal) for hostid prints the numeric identifier (in hexadecimal) for
the current host. the current host.
config BUSYBOX_CONFIG_ID config BUSYBOX_CONFIG_ID
bool "id (7 kb)" bool "id (7.1 kb)"
default BUSYBOX_DEFAULT_ID default BUSYBOX_DEFAULT_ID
help help
id displays the current user and group ID names. id displays the current user and group ID names.
config BUSYBOX_CONFIG_GROUPS config BUSYBOX_CONFIG_GROUPS
bool "groups (6.7 kb)" bool "groups (6.8 kb)"
default BUSYBOX_DEFAULT_GROUPS default BUSYBOX_DEFAULT_GROUPS
help help
Print the group names associated with current user id. Print the group names associated with current user id.
@ -389,17 +389,17 @@ config BUSYBOX_CONFIG_FEATURE_INSTALL_LONG_OPTIONS
default BUSYBOX_DEFAULT_FEATURE_INSTALL_LONG_OPTIONS default BUSYBOX_DEFAULT_FEATURE_INSTALL_LONG_OPTIONS
depends on BUSYBOX_CONFIG_INSTALL && BUSYBOX_CONFIG_LONG_OPTS depends on BUSYBOX_CONFIG_INSTALL && BUSYBOX_CONFIG_LONG_OPTS
config BUSYBOX_CONFIG_LINK config BUSYBOX_CONFIG_LINK
bool "link (3.2 kb)" bool "link (3.5 kb)"
default BUSYBOX_DEFAULT_LINK default BUSYBOX_DEFAULT_LINK
help help
link creates hard links between files. link creates hard links between files.
config BUSYBOX_CONFIG_LN config BUSYBOX_CONFIG_LN
bool "ln (4.9 kb)" bool "ln (5.1 kb)"
default BUSYBOX_DEFAULT_LN default BUSYBOX_DEFAULT_LN
help help
ln is used to create hard or soft links between files. ln is used to create hard or soft links between files.
config BUSYBOX_CONFIG_LOGNAME config BUSYBOX_CONFIG_LOGNAME
bool "logname (1.1 kb)" bool "logname (1.4 kb)"
default BUSYBOX_DEFAULT_LOGNAME default BUSYBOX_DEFAULT_LOGNAME
help help
logname is used to print the current user's login name. logname is used to print the current user's login name.
@ -468,31 +468,31 @@ config BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
configurable, and the output may not be legible on configurable, and the output may not be legible on
many output screens. many output screens.
config BUSYBOX_CONFIG_MD5SUM config BUSYBOX_CONFIG_MD5SUM
bool "md5sum (6.5 kb)" bool "md5sum (6.7 kb)"
default BUSYBOX_DEFAULT_MD5SUM default BUSYBOX_DEFAULT_MD5SUM
help help
Compute and check MD5 message digest Compute and check MD5 message digest
config BUSYBOX_CONFIG_SHA1SUM config BUSYBOX_CONFIG_SHA1SUM
bool "sha1sum (5.9 kb)" bool "sha1sum (6.7 kb)"
default BUSYBOX_DEFAULT_SHA1SUM default BUSYBOX_DEFAULT_SHA1SUM
help help
Compute and check SHA1 message digest Compute and check SHA1 message digest
config BUSYBOX_CONFIG_SHA256SUM config BUSYBOX_CONFIG_SHA256SUM
bool "sha256sum (7 kb)" bool "sha256sum (8.2 kb)"
default BUSYBOX_DEFAULT_SHA256SUM default BUSYBOX_DEFAULT_SHA256SUM
help help
Compute and check SHA256 message digest Compute and check SHA256 message digest
config BUSYBOX_CONFIG_SHA512SUM config BUSYBOX_CONFIG_SHA512SUM
bool "sha512sum (7.4 kb)" bool "sha512sum (7.3 kb)"
default BUSYBOX_DEFAULT_SHA512SUM default BUSYBOX_DEFAULT_SHA512SUM
help help
Compute and check SHA512 message digest Compute and check SHA512 message digest
config BUSYBOX_CONFIG_SHA3SUM config BUSYBOX_CONFIG_SHA3SUM
bool "sha3sum (6.1 kb)" bool "sha3sum (6.3 kb)"
default BUSYBOX_DEFAULT_SHA3SUM default BUSYBOX_DEFAULT_SHA3SUM
help help
Compute and check SHA3 message digest Compute and check SHA3 message digest
@ -509,24 +509,24 @@ config BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK
against pre-calculated hash values. against pre-calculated hash values.
-s and -w are useful options when verifying checksums. -s and -w are useful options when verifying checksums.
config BUSYBOX_CONFIG_MKDIR config BUSYBOX_CONFIG_MKDIR
bool "mkdir (4.5 kb)" bool "mkdir (4.7 kb)"
default BUSYBOX_DEFAULT_MKDIR default BUSYBOX_DEFAULT_MKDIR
help help
mkdir is used to create directories with the specified names. mkdir is used to create directories with the specified names.
config BUSYBOX_CONFIG_MKFIFO config BUSYBOX_CONFIG_MKFIFO
bool "mkfifo (3.8 kb)" bool "mkfifo (4 kb)"
default BUSYBOX_DEFAULT_MKFIFO default BUSYBOX_DEFAULT_MKFIFO
help help
mkfifo is used to create FIFOs (named pipes). mkfifo is used to create FIFOs (named pipes).
The 'mknod' program can also create FIFOs. The 'mknod' program can also create FIFOs.
config BUSYBOX_CONFIG_MKNOD config BUSYBOX_CONFIG_MKNOD
bool "mknod (4.5 kb)" bool "mknod (4.6 kb)"
default BUSYBOX_DEFAULT_MKNOD default BUSYBOX_DEFAULT_MKNOD
help help
mknod is used to create FIFOs or block/character special mknod is used to create FIFOs or block/character special
files with the specified names. files with the specified names.
config BUSYBOX_CONFIG_MKTEMP config BUSYBOX_CONFIG_MKTEMP
bool "mktemp (4.2 kb)" bool "mktemp (4.5 kb)"
default BUSYBOX_DEFAULT_MKTEMP default BUSYBOX_DEFAULT_MKTEMP
help help
mktemp is used to create unique temporary files mktemp is used to create unique temporary files
@ -536,22 +536,22 @@ config BUSYBOX_CONFIG_MV
help help
mv is used to move or rename files or directories. mv is used to move or rename files or directories.
config BUSYBOX_CONFIG_NICE config BUSYBOX_CONFIG_NICE
bool "nice (2.1 kb)" bool "nice (2.3 kb)"
default BUSYBOX_DEFAULT_NICE default BUSYBOX_DEFAULT_NICE
help help
nice runs a program with modified scheduling priority. nice runs a program with modified scheduling priority.
config BUSYBOX_CONFIG_NL config BUSYBOX_CONFIG_NL
bool "nl (4.6 kb)" bool "nl (4.9 kb)"
default BUSYBOX_DEFAULT_NL default BUSYBOX_DEFAULT_NL
help help
nl is used to number lines of files. nl is used to number lines of files.
config BUSYBOX_CONFIG_NOHUP config BUSYBOX_CONFIG_NOHUP
bool "nohup (2 kb)" bool "nohup (2.2 kb)"
default BUSYBOX_DEFAULT_NOHUP default BUSYBOX_DEFAULT_NOHUP
help help
run a command immune to hangups, with output to a non-tty. run a command immune to hangups, with output to a non-tty.
config BUSYBOX_CONFIG_NPROC config BUSYBOX_CONFIG_NPROC
bool "nproc (3.7 kb)" bool "nproc (3.9 kb)"
default BUSYBOX_DEFAULT_NPROC default BUSYBOX_DEFAULT_NPROC
help help
Print number of CPUs Print number of CPUs
@ -561,29 +561,29 @@ config BUSYBOX_CONFIG_OD
help help
od is used to dump binary files in octal and other formats. od is used to dump binary files in octal and other formats.
config BUSYBOX_CONFIG_PASTE config BUSYBOX_CONFIG_PASTE
bool "paste (4.9 kb)" bool "paste (5.1 kb)"
default BUSYBOX_DEFAULT_PASTE default BUSYBOX_DEFAULT_PASTE
help help
paste is used to paste lines of different files together paste is used to paste lines of different files together
and write the result to stdout and write the result to stdout
config BUSYBOX_CONFIG_PRINTENV config BUSYBOX_CONFIG_PRINTENV
bool "printenv (1.3 kb)" bool "printenv (1.6 kb)"
default BUSYBOX_DEFAULT_PRINTENV default BUSYBOX_DEFAULT_PRINTENV
help help
printenv is used to print all or part of environment. printenv is used to print all or part of environment.
config BUSYBOX_CONFIG_PRINTF config BUSYBOX_CONFIG_PRINTF
bool "printf (3.8 kb)" bool "printf (4.1 kb)"
default BUSYBOX_DEFAULT_PRINTF default BUSYBOX_DEFAULT_PRINTF
help help
printf is used to format and print specified strings. printf is used to format and print specified strings.
It's similar to 'echo' except it has more options. It's similar to 'echo' except it has more options.
config BUSYBOX_CONFIG_PWD config BUSYBOX_CONFIG_PWD
bool "pwd (3.7 kb)" bool "pwd (4 kb)"
default BUSYBOX_DEFAULT_PWD default BUSYBOX_DEFAULT_PWD
help help
pwd is used to print the current directory. pwd is used to print the current directory.
config BUSYBOX_CONFIG_READLINK config BUSYBOX_CONFIG_READLINK
bool "readlink (4 kb)" bool "readlink (4.8 kb)"
default BUSYBOX_DEFAULT_READLINK default BUSYBOX_DEFAULT_READLINK
help help
This program reads a symbolic link and returns the name This program reads a symbolic link and returns the name
@ -596,49 +596,50 @@ config BUSYBOX_CONFIG_FEATURE_READLINK_FOLLOW
help help
Enable the readlink option (-f). Enable the readlink option (-f).
config BUSYBOX_CONFIG_REALPATH config BUSYBOX_CONFIG_REALPATH
bool "realpath (1.6 kb)" bool "realpath (2.5 kb)"
default BUSYBOX_DEFAULT_REALPATH default BUSYBOX_DEFAULT_REALPATH
help help
Return the canonicalized absolute pathname. Return the canonicalized absolute pathname.
This isn't provided by GNU shellutils, but where else does it belong. This isn't provided by GNU shellutils, but where else does it belong.
config BUSYBOX_CONFIG_RM config BUSYBOX_CONFIG_RM
bool "rm (5.4 kb)" bool "rm (5.5 kb)"
default BUSYBOX_DEFAULT_RM default BUSYBOX_DEFAULT_RM
help help
rm is used to remove files or directories. rm is used to remove files or directories.
config BUSYBOX_CONFIG_RMDIR config BUSYBOX_CONFIG_RMDIR
bool "rmdir (3.5 kb)" bool "rmdir (3.8 kb)"
default BUSYBOX_DEFAULT_RMDIR default BUSYBOX_DEFAULT_RMDIR
help help
rmdir is used to remove empty directories. rmdir is used to remove empty directories.
config BUSYBOX_CONFIG_SEQ config BUSYBOX_CONFIG_SEQ
bool "seq (3.8 kb)" bool "seq (4 kb)"
default BUSYBOX_DEFAULT_SEQ default BUSYBOX_DEFAULT_SEQ
help help
print a sequence of numbers print a sequence of numbers
config BUSYBOX_CONFIG_SHRED config BUSYBOX_CONFIG_SHRED
bool "shred (4.9 kb)" bool "shred (5.5 kb)"
default BUSYBOX_DEFAULT_SHRED default BUSYBOX_DEFAULT_SHRED
help help
Overwrite a file to hide its contents, and optionally delete it Overwrite a file to hide its contents, and optionally delete it
config BUSYBOX_CONFIG_SHUF config BUSYBOX_CONFIG_SHUF
bool "shuf (5.4 kb)" bool "shuf (6 kb)"
default BUSYBOX_DEFAULT_SHUF default BUSYBOX_DEFAULT_SHUF
help help
Generate random permutations Generate random permutations
config BUSYBOX_CONFIG_SLEEP config BUSYBOX_CONFIG_SLEEP
bool "sleep (2 kb)" bool "sleep (2.4 kb)"
default BUSYBOX_DEFAULT_SLEEP default BUSYBOX_DEFAULT_SLEEP
help help
sleep is used to pause for a specified number of seconds. sleep is used to pause for a specified number of seconds.
It comes in 3 versions: It comes in 2 versions:
- small: takes one integer parameter - small: takes one integer parameter
- fancy: takes multiple integer arguments with suffixes: - fancy:
* takes multiple integer arguments with suffixes:
sleep 1d 2h 3m 15s sleep 1d 2h 3m 15s
- fancy with fractional numbers: * allows fractional numbers:
sleep 2.3s 4.5h sleeps for 16202.3 seconds sleep 2.3s 4.5h sleeps for 16202.3 seconds
Last one is "the most compatible" with coreutils sleep, fancy is more compatible with coreutils sleep, but it adds around
but it adds around 1k of code. 1k of code.
config BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP config BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP
bool "Enable multiple arguments and s/m/h/d suffixes" bool "Enable multiple arguments and s/m/h/d suffixes"
@ -647,7 +648,7 @@ config BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP
help help
Allow sleep to pause for specified minutes, hours, and days. Allow sleep to pause for specified minutes, hours, and days.
config BUSYBOX_CONFIG_SORT config BUSYBOX_CONFIG_SORT
bool "sort (7.7 kb)" bool "sort (8.1 kb)"
default BUSYBOX_DEFAULT_SORT default BUSYBOX_DEFAULT_SORT
help help
sort is used to sort lines of text in specified files. sort is used to sort lines of text in specified files.
@ -672,7 +673,7 @@ config BUSYBOX_CONFIG_FEATURE_SORT_OPTIMIZE_MEMORY
Attempt to use less memory (by storing only one copy Attempt to use less memory (by storing only one copy
of duplicated lines, and such). Useful if you work on huge files. of duplicated lines, and such). Useful if you work on huge files.
config BUSYBOX_CONFIG_SPLIT config BUSYBOX_CONFIG_SPLIT
bool "split (5 kb)" bool "split (5.2 kb)"
default BUSYBOX_DEFAULT_SPLIT default BUSYBOX_DEFAULT_SPLIT
help help
Split a file into pieces. Split a file into pieces.
@ -708,17 +709,17 @@ config BUSYBOX_CONFIG_FEATURE_STAT_FILESYSTEM
Without this, stat will not support the '-f' option to display Without this, stat will not support the '-f' option to display
information about filesystem status. information about filesystem status.
config BUSYBOX_CONFIG_STTY config BUSYBOX_CONFIG_STTY
bool "stty (8.9 kb)" bool "stty (9.2 kb)"
default BUSYBOX_DEFAULT_STTY default BUSYBOX_DEFAULT_STTY
help help
stty is used to change and print terminal line settings. stty is used to change and print terminal line settings.
config BUSYBOX_CONFIG_SUM config BUSYBOX_CONFIG_SUM
bool "sum (4 kb)" bool "sum (4.2 kb)"
default BUSYBOX_DEFAULT_SUM default BUSYBOX_DEFAULT_SUM
help help
checksum and count the blocks in a file checksum and count the blocks in a file
config BUSYBOX_CONFIG_SYNC config BUSYBOX_CONFIG_SYNC
bool "sync (3.8 kb)" bool "sync (4 kb)"
default BUSYBOX_DEFAULT_SYNC default BUSYBOX_DEFAULT_SYNC
help help
sync is used to flush filesystem buffers. sync is used to flush filesystem buffers.
@ -730,17 +731,17 @@ config BUSYBOX_CONFIG_FEATURE_SYNC_FANCY
sync -d FILE... executes fdatasync() on each FILE. sync -d FILE... executes fdatasync() on each FILE.
sync -f FILE... executes syncfs() on each FILE. sync -f FILE... executes syncfs() on each FILE.
config BUSYBOX_CONFIG_FSYNC config BUSYBOX_CONFIG_FSYNC
bool "fsync (3.6 kb)" bool "fsync (3.8 kb)"
default BUSYBOX_DEFAULT_FSYNC default BUSYBOX_DEFAULT_FSYNC
help help
fsync is used to flush file-related cached blocks to disk. fsync is used to flush file-related cached blocks to disk.
config BUSYBOX_CONFIG_TAC config BUSYBOX_CONFIG_TAC
bool "tac (3.9 kb)" bool "tac (4.1 kb)"
default BUSYBOX_DEFAULT_TAC default BUSYBOX_DEFAULT_TAC
help help
tac is used to concatenate and print files in reverse. tac is used to concatenate and print files in reverse.
config BUSYBOX_CONFIG_TAIL config BUSYBOX_CONFIG_TAIL
bool "tail (6.8 kb)" bool "tail (7.2 kb)"
default BUSYBOX_DEFAULT_TAIL default BUSYBOX_DEFAULT_TAIL
help help
tail is used to print the last specified number of lines tail is used to print the last specified number of lines
@ -758,7 +759,7 @@ config BUSYBOX_CONFIG_FEATURE_FANCY_TAIL
-v Always output headers giving file names -v Always output headers giving file names
-F Same as -f, but keep retrying -F Same as -f, but keep retrying
config BUSYBOX_CONFIG_TEE config BUSYBOX_CONFIG_TEE
bool "tee (4.2 kb)" bool "tee (4.4 kb)"
default BUSYBOX_DEFAULT_TEE default BUSYBOX_DEFAULT_TEE
help help
tee is used to read from standard input and write tee is used to read from standard input and write
@ -771,7 +772,7 @@ config BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO
help help
Enable this option for a faster tee, at expense of size. Enable this option for a faster tee, at expense of size.
config BUSYBOX_CONFIG_TEST config BUSYBOX_CONFIG_TEST
bool "test (4.1 kb)" bool "test (4.4 kb)"
default BUSYBOX_DEFAULT_TEST default BUSYBOX_DEFAULT_TEST
help help
test is used to check file types and compare values, test is used to check file types and compare values,
@ -797,13 +798,13 @@ config BUSYBOX_CONFIG_FEATURE_TEST_64
help help
Enable 64-bit support in test. Enable 64-bit support in test.
config BUSYBOX_CONFIG_TIMEOUT config BUSYBOX_CONFIG_TIMEOUT
bool "timeout (6 kb)" bool "timeout (6.5 kb)"
default BUSYBOX_DEFAULT_TIMEOUT default BUSYBOX_DEFAULT_TIMEOUT
help help
Runs a program and watches it. If it does not terminate in Runs a program and watches it. If it does not terminate in
specified number of seconds, it is sent a signal. specified number of seconds, it is sent a signal.
config BUSYBOX_CONFIG_TOUCH config BUSYBOX_CONFIG_TOUCH
bool "touch (5.9 kb)" bool "touch (6.1 kb)"
default BUSYBOX_DEFAULT_TOUCH default BUSYBOX_DEFAULT_TOUCH
help help
touch is used to create or change the access and/or touch is used to create or change the access and/or
@ -816,7 +817,7 @@ config BUSYBOX_CONFIG_FEATURE_TOUCH_SUSV3
help help
Enable touch to use a reference file or a given date/time argument. Enable touch to use a reference file or a given date/time argument.
config BUSYBOX_CONFIG_TR config BUSYBOX_CONFIG_TR
bool "tr (5.1 kb)" bool "tr (5.3 kb)"
default BUSYBOX_DEFAULT_TR default BUSYBOX_DEFAULT_TR
help help
tr is used to squeeze, and/or delete characters from standard tr is used to squeeze, and/or delete characters from standard
@ -841,29 +842,29 @@ config BUSYBOX_CONFIG_FEATURE_TR_EQUIV
useful for cases when no other way of expressing a character useful for cases when no other way of expressing a character
is possible. is possible.
config BUSYBOX_CONFIG_TRUE config BUSYBOX_CONFIG_TRUE
bool "true (tiny)" bool "true (311 bytes)"
default BUSYBOX_DEFAULT_TRUE default BUSYBOX_DEFAULT_TRUE
help help
true returns an exit code of TRUE (0). true returns an exit code of TRUE (0).
config BUSYBOX_CONFIG_TRUNCATE config BUSYBOX_CONFIG_TRUNCATE
bool "truncate (4.2 kb)" bool "truncate (4.4 kb)"
default BUSYBOX_DEFAULT_TRUNCATE default BUSYBOX_DEFAULT_TRUNCATE
help help
truncate truncates files to a given size. If a file does truncate truncates files to a given size. If a file does
not exist, it is created unless told otherwise. not exist, it is created unless told otherwise.
config BUSYBOX_CONFIG_TSORT config BUSYBOX_CONFIG_TSORT
bool "tsort (0.7 kb)" bool "tsort (2.6 kb)"
default BUSYBOX_DEFAULT_TSORT default BUSYBOX_DEFAULT_TSORT
help help
tsort performs a topological sort. tsort performs a topological sort.
config BUSYBOX_CONFIG_TTY config BUSYBOX_CONFIG_TTY
bool "tty (3.6 kb)" bool "tty (3.9 kb)"
default BUSYBOX_DEFAULT_TTY default BUSYBOX_DEFAULT_TTY
help help
tty is used to print the name of the current terminal to tty is used to print the name of the current terminal to
standard output. standard output.
config BUSYBOX_CONFIG_UNAME config BUSYBOX_CONFIG_UNAME
bool "uname (3.9 kb)" bool "uname (4.2 kb)"
default BUSYBOX_DEFAULT_UNAME default BUSYBOX_DEFAULT_UNAME
help help
uname is used to print system information. uname is used to print system information.
@ -877,47 +878,47 @@ config BUSYBOX_CONFIG_UNAME_OSNAME
default BUSYBOX_DEFAULT_UNAME_OSNAME "GNU/Linux". default BUSYBOX_DEFAULT_UNAME_OSNAME "GNU/Linux".
config BUSYBOX_CONFIG_BB_ARCH config BUSYBOX_CONFIG_BB_ARCH
bool "arch (1.1 kb)" bool "arch (1.4 kb)"
default BUSYBOX_DEFAULT_BB_ARCH default BUSYBOX_DEFAULT_BB_ARCH
help help
Same as uname -m. Same as uname -m.
config BUSYBOX_CONFIG_UNIQ config BUSYBOX_CONFIG_UNIQ
bool "uniq (4.9 kb)" bool "uniq (5.1 kb)"
default BUSYBOX_DEFAULT_UNIQ default BUSYBOX_DEFAULT_UNIQ
help help
uniq is used to remove duplicate lines from a sorted file. uniq is used to remove duplicate lines from a sorted file.
config BUSYBOX_CONFIG_UNLINK config BUSYBOX_CONFIG_UNLINK
bool "unlink (3.2 kb)" bool "unlink (3.5 kb)"
default BUSYBOX_DEFAULT_UNLINK default BUSYBOX_DEFAULT_UNLINK
help help
unlink deletes a file by calling unlink() unlink deletes a file by calling unlink()
config BUSYBOX_CONFIG_USLEEP config BUSYBOX_CONFIG_USLEEP
bool "usleep (1.3 kb)" bool "usleep (1.6 kb)"
default BUSYBOX_DEFAULT_USLEEP default BUSYBOX_DEFAULT_USLEEP
help help
usleep is used to pause for a specified number of microseconds. usleep is used to pause for a specified number of microseconds.
config BUSYBOX_CONFIG_UUDECODE config BUSYBOX_CONFIG_UUDECODE
bool "uudecode (5.8 kb)" bool "uudecode (5.9 kb)"
default BUSYBOX_DEFAULT_UUDECODE default BUSYBOX_DEFAULT_UUDECODE
help help
uudecode is used to decode a uuencoded file. uudecode is used to decode a uuencoded file.
config BUSYBOX_CONFIG_BASE32 config BUSYBOX_CONFIG_BASE32
bool "base32 (4.9 kb)" bool "base32 (5.5 kb)"
default BUSYBOX_DEFAULT_BASE32 default BUSYBOX_DEFAULT_BASE32
help help
Base32 encode and decode Base32 encode and decode
config BUSYBOX_CONFIG_BASE64 config BUSYBOX_CONFIG_BASE64
bool "base64 (4.9 kb)" bool "base64 (5.3 kb)"
default BUSYBOX_DEFAULT_BASE64 default BUSYBOX_DEFAULT_BASE64
help help
Base64 encode and decode Base64 encode and decode
config BUSYBOX_CONFIG_UUENCODE config BUSYBOX_CONFIG_UUENCODE
bool "uuencode (4.4 kb)" bool "uuencode (4.7 kb)"
default BUSYBOX_DEFAULT_UUENCODE default BUSYBOX_DEFAULT_UUENCODE
help help
uuencode is used to uuencode a file. uuencode is used to uuencode a file.
config BUSYBOX_CONFIG_WC config BUSYBOX_CONFIG_WC
bool "wc (4.5 kb)" bool "wc (4.7 kb)"
default BUSYBOX_DEFAULT_WC default BUSYBOX_DEFAULT_WC
help help
wc is used to print the number of bytes, words, and lines, wc is used to print the number of bytes, words, and lines,
@ -930,33 +931,33 @@ config BUSYBOX_CONFIG_FEATURE_WC_LARGE
help help
Use "unsigned long long" for counter variables. Use "unsigned long long" for counter variables.
config BUSYBOX_CONFIG_WHO config BUSYBOX_CONFIG_WHO
bool "who (3.9 kb)" bool "who (5.6 kb)"
default BUSYBOX_DEFAULT_WHO default BUSYBOX_DEFAULT_WHO
depends on BUSYBOX_CONFIG_FEATURE_UTMP depends on BUSYBOX_CONFIG_FEATURE_UTMP
help help
Print users currently logged on. Print users currently logged on.
config BUSYBOX_CONFIG_W config BUSYBOX_CONFIG_W
bool "w (3.8 kb)" bool "w (5.5 kb)"
default BUSYBOX_DEFAULT_W default BUSYBOX_DEFAULT_W
depends on BUSYBOX_CONFIG_FEATURE_UTMP depends on BUSYBOX_CONFIG_FEATURE_UTMP
help help
Print users currently logged on. Print users currently logged on.
config BUSYBOX_CONFIG_USERS config BUSYBOX_CONFIG_USERS
bool "users (3.4 kb)" bool "users (3.6 kb)"
default BUSYBOX_DEFAULT_USERS default BUSYBOX_DEFAULT_USERS
depends on BUSYBOX_CONFIG_FEATURE_UTMP depends on BUSYBOX_CONFIG_FEATURE_UTMP
help help
Print users currently logged on. Print users currently logged on.
config BUSYBOX_CONFIG_WHOAMI config BUSYBOX_CONFIG_WHOAMI
bool "whoami (3.2 kb)" bool "whoami (3.5 kb)"
default BUSYBOX_DEFAULT_WHOAMI default BUSYBOX_DEFAULT_WHOAMI
help help
whoami is used to print the username of the current whoami is used to print the username of the current
user id (same as id -un). user id (same as id -un).
config BUSYBOX_CONFIG_YES config BUSYBOX_CONFIG_YES
bool "yes (1.2 kb)" bool "yes (1.5 kb)"
default BUSYBOX_DEFAULT_YES default BUSYBOX_DEFAULT_YES
help help
yes is used to repeatedly output a specific string, or yes is used to repeatedly output a specific string, or

View File

@ -7,12 +7,12 @@
menu "Debian Utilities" menu "Debian Utilities"
config BUSYBOX_CONFIG_PIPE_PROGRESS config BUSYBOX_CONFIG_PIPE_PROGRESS
bool "pipe_progress (275 bytes)" bool "pipe_progress (576 bytes)"
default BUSYBOX_DEFAULT_PIPE_PROGRESS default BUSYBOX_DEFAULT_PIPE_PROGRESS
help help
Display a dot to indicate pipe activity. Display a dot to indicate pipe activity.
config BUSYBOX_CONFIG_RUN_PARTS config BUSYBOX_CONFIG_RUN_PARTS
bool "run-parts (6.1 kb)" bool "run-parts (6.2 kb)"
default BUSYBOX_DEFAULT_RUN_PARTS default BUSYBOX_DEFAULT_RUN_PARTS
help help
run-parts is a utility designed to run all the scripts in a directory. run-parts is a utility designed to run all the scripts in a directory.
@ -61,7 +61,7 @@ config BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY
-v|--verbose -v|--verbose
-N|--nicelevel N -N|--nicelevel N
config BUSYBOX_CONFIG_WHICH config BUSYBOX_CONFIG_WHICH
bool "which (3.8 kb)" bool "which (4 kb)"
default BUSYBOX_DEFAULT_WHICH default BUSYBOX_DEFAULT_WHICH
help help
which is used to find programs in your PATH and which is used to find programs in your PATH and

View File

@ -7,19 +7,19 @@
menu "Linux Ext2 FS Progs" menu "Linux Ext2 FS Progs"
config BUSYBOX_CONFIG_CHATTR config BUSYBOX_CONFIG_CHATTR
bool "chattr (3.8 kb)" bool "chattr (4.1 kb)"
default BUSYBOX_DEFAULT_CHATTR default BUSYBOX_DEFAULT_CHATTR
help help
chattr changes the file attributes on a second extended file system. chattr changes the file attributes on a second extended file system.
config BUSYBOX_CONFIG_FSCK config BUSYBOX_CONFIG_FSCK
bool "fsck (7.4 kb)" bool "fsck (7.6 kb)"
default BUSYBOX_DEFAULT_FSCK default BUSYBOX_DEFAULT_FSCK
help help
fsck is used to check and optionally repair one or more filesystems. fsck is used to check and optionally repair one or more filesystems.
In actuality, fsck is simply a front-end for the various file system In actuality, fsck is simply a front-end for the various file system
checkers (fsck.fstype) available under Linux. checkers (fsck.fstype) available under Linux.
config BUSYBOX_CONFIG_LSATTR config BUSYBOX_CONFIG_LSATTR
bool "lsattr (5.5 kb)" bool "lsattr (5.7 kb)"
default BUSYBOX_DEFAULT_LSATTR default BUSYBOX_DEFAULT_LSATTR
help help
lsattr lists the file attributes on a second extended file system. lsattr lists the file attributes on a second extended file system.

View File

@ -7,7 +7,7 @@
menu "Editors" menu "Editors"
config BUSYBOX_CONFIG_AWK config BUSYBOX_CONFIG_AWK
bool "awk (23 kb)" bool "awk (24 kb)"
default BUSYBOX_DEFAULT_AWK default BUSYBOX_DEFAULT_AWK
help help
Awk is used as a pattern scanning and processing language. Awk is used as a pattern scanning and processing language.
@ -31,7 +31,7 @@ config BUSYBOX_CONFIG_FEATURE_AWK_GNU_EXTENSIONS
This enables the use of awk library files. This enables the use of awk library files.
Example: awk -f mylib.awk -e '{print myfunction($1);}' ... Example: awk -f mylib.awk -e '{print myfunction($1);}' ...
config BUSYBOX_CONFIG_CMP config BUSYBOX_CONFIG_CMP
bool "cmp (4.9 kb)" bool "cmp (5.3 kb)"
default BUSYBOX_DEFAULT_CMP default BUSYBOX_DEFAULT_CMP
help help
cmp is used to compare two files and returns the result cmp is used to compare two files and returns the result
@ -57,14 +57,14 @@ config BUSYBOX_CONFIG_FEATURE_DIFF_DIR
This option enables support for directory and subdirectory This option enables support for directory and subdirectory
comparison. comparison.
config BUSYBOX_CONFIG_ED config BUSYBOX_CONFIG_ED
bool "ed (21 kb)" bool "ed (16 kb)"
default BUSYBOX_DEFAULT_ED default BUSYBOX_DEFAULT_ED
help help
The original 1970's Unix text editor, from the days of teletypes. The original 1970's Unix text editor, from the days of teletypes.
Small, simple, evil. Part of SUSv3. If you're not already using Small, simple, evil. Part of SUSv3. If you're not already using
this, you don't need it. this, you don't need it.
config BUSYBOX_CONFIG_PATCH config BUSYBOX_CONFIG_PATCH
bool "patch (9.4 kb)" bool "patch (9.6 kb)"
default BUSYBOX_DEFAULT_PATCH default BUSYBOX_DEFAULT_PATCH
help help
Apply a unified diff formatted patch. Apply a unified diff formatted patch.
@ -75,7 +75,7 @@ config BUSYBOX_CONFIG_SED
sed is used to perform text transformations on a file sed is used to perform text transformations on a file
or input from a pipeline. or input from a pipeline.
config BUSYBOX_CONFIG_VI config BUSYBOX_CONFIG_VI
bool "vi (23 kb)" bool "vi (26 kb)"
default BUSYBOX_DEFAULT_VI default BUSYBOX_DEFAULT_VI
help help
'vi' is a text editor. More specifically, it is the One True 'vi' is a text editor. More specifically, it is the One True
@ -134,7 +134,7 @@ config BUSYBOX_CONFIG_FEATURE_VI_SEARCH
config BUSYBOX_CONFIG_FEATURE_VI_REGEX_SEARCH config BUSYBOX_CONFIG_FEATURE_VI_REGEX_SEARCH
bool "Enable regex in search and replace" bool "Enable regex in search and replace"
default BUSYBOX_DEFAULT_FEATURE_VI_REGEX_SEARCH # Uses GNU regex, which may be unavailable. FIXME default BUSYBOX_DEFAULT_FEATURE_VI_REGEX_SEARCH
depends on BUSYBOX_CONFIG_FEATURE_VI_SEARCH depends on BUSYBOX_CONFIG_FEATURE_VI_SEARCH
depends on USE_GLIBC depends on USE_GLIBC
help help

View File

@ -7,7 +7,7 @@
menu "Finding Utilities" menu "Finding Utilities"
config BUSYBOX_CONFIG_FIND config BUSYBOX_CONFIG_FIND
bool "find (14 kb)" bool "find (16 kb)"
default BUSYBOX_DEFAULT_FIND default BUSYBOX_DEFAULT_FIND
help help
find is used to search your system to find specified files. find is used to search your system to find specified files.
@ -136,6 +136,13 @@ config BUSYBOX_CONFIG_FEATURE_FIND_EXEC_PLUS
Without this option, -exec + is a synonym for -exec ; Without this option, -exec + is a synonym for -exec ;
(IOW: it works correctly, but without expected speedup) (IOW: it works correctly, but without expected speedup)
config BUSYBOX_CONFIG_FEATURE_FIND_EXEC_OK
bool "Enable -ok: execute confirmed commands"
default BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_OK
depends on BUSYBOX_CONFIG_FEATURE_FIND_EXEC
help
Support the 'find -ok' option which prompts before executing.
config BUSYBOX_CONFIG_FEATURE_FIND_USER config BUSYBOX_CONFIG_FEATURE_FIND_USER
bool "Enable -user: username/uid matching" bool "Enable -user: username/uid matching"
default BUSYBOX_DEFAULT_FEATURE_FIND_USER default BUSYBOX_DEFAULT_FEATURE_FIND_USER
@ -234,19 +241,19 @@ config BUSYBOX_CONFIG_FEATURE_FIND_LINKS
help help
Support the 'find -links' option for matching number of links. Support the 'find -links' option for matching number of links.
config BUSYBOX_CONFIG_GREP config BUSYBOX_CONFIG_GREP
bool "grep (8.6 kb)" bool "grep (8.9 kb)"
default BUSYBOX_DEFAULT_GREP default BUSYBOX_DEFAULT_GREP
help help
grep is used to search files for a specified pattern. grep is used to search files for a specified pattern.
config BUSYBOX_CONFIG_EGREP config BUSYBOX_CONFIG_EGREP
bool "egrep (7.8 kb)" bool "egrep (8 kb)"
default BUSYBOX_DEFAULT_EGREP default BUSYBOX_DEFAULT_EGREP
help help
Alias to "grep -E". Alias to "grep -E".
config BUSYBOX_CONFIG_FGREP config BUSYBOX_CONFIG_FGREP
bool "fgrep (7.8 kb)" bool "fgrep (8 kb)"
default BUSYBOX_DEFAULT_FGREP default BUSYBOX_DEFAULT_FGREP
help help
Alias to "grep -F". Alias to "grep -F".
@ -260,7 +267,7 @@ config BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT
context surrounding our matching lines. context surrounding our matching lines.
Print the specified number of context lines (-C). Print the specified number of context lines (-C).
config BUSYBOX_CONFIG_XARGS config BUSYBOX_CONFIG_XARGS
bool "xargs (7.2 kb)" bool "xargs (7.6 kb)"
default BUSYBOX_DEFAULT_XARGS default BUSYBOX_DEFAULT_XARGS
help help
xargs is used to execute a specified command for xargs is used to execute a specified command for

View File

@ -45,19 +45,19 @@ config BUSYBOX_CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE
Enable reading and parsing of $PWD/bootchartd.conf Enable reading and parsing of $PWD/bootchartd.conf
and /etc/bootchartd.conf files. and /etc/bootchartd.conf files.
config BUSYBOX_CONFIG_HALT config BUSYBOX_CONFIG_HALT
bool "halt (4 kb)" bool "halt (4.3 kb)"
default BUSYBOX_DEFAULT_HALT default BUSYBOX_DEFAULT_HALT
help help
Stop all processes and halt the system. Stop all processes and halt the system.
config BUSYBOX_CONFIG_POWEROFF config BUSYBOX_CONFIG_POWEROFF
bool "poweroff (4 kb)" bool "poweroff (4.3 kb)"
default BUSYBOX_DEFAULT_POWEROFF default BUSYBOX_DEFAULT_POWEROFF
help help
Stop all processes and power off the system. Stop all processes and power off the system.
config BUSYBOX_CONFIG_REBOOT config BUSYBOX_CONFIG_REBOOT
bool "reboot (4 kb)" bool "reboot (4.3 kb)"
default BUSYBOX_DEFAULT_REBOOT default BUSYBOX_DEFAULT_REBOOT
help help
Stop all processes and reboot the system. Stop all processes and reboot the system.

View File

@ -17,12 +17,12 @@ config BUSYBOX_CONFIG_NUKE
help help
Alias to "rm -rf". Alias to "rm -rf".
config BUSYBOX_CONFIG_RESUME config BUSYBOX_CONFIG_RESUME
bool "resume (3.2 kb)" bool "resume (3.6 kb)"
default BUSYBOX_DEFAULT_RESUME default BUSYBOX_DEFAULT_RESUME
help help
Resume from saved "suspend-to-disk" image Resume from saved "suspend-to-disk" image
config BUSYBOX_CONFIG_RUN_INIT config BUSYBOX_CONFIG_RUN_INIT
bool "run-init (7.7 kb)" bool "run-init (8 kb)"
default BUSYBOX_DEFAULT_RUN_INIT default BUSYBOX_DEFAULT_RUN_INIT
help help
The run-init utility is used from initramfs to select a new The run-init utility is used from initramfs to select a new

View File

@ -93,18 +93,18 @@ config BUSYBOX_CONFIG_USE_BB_CRYPT_SHA
user which has password encrypted with these algorithms. user which has password encrypted with these algorithms.
config BUSYBOX_CONFIG_ADD_SHELL config BUSYBOX_CONFIG_ADD_SHELL
bool "add-shell (3.1 kb)" bool "add-shell (3.3 kb)"
default BUSYBOX_DEFAULT_ADD_SHELL if BUSYBOX_CONFIG_DESKTOP default BUSYBOX_DEFAULT_ADD_SHELL if BUSYBOX_CONFIG_DESKTOP
help help
Add shells to /etc/shells. Add shells to /etc/shells.
config BUSYBOX_CONFIG_REMOVE_SHELL config BUSYBOX_CONFIG_REMOVE_SHELL
bool "remove-shell (3 kb)" bool "remove-shell (3.3 kb)"
default BUSYBOX_DEFAULT_REMOVE_SHELL if BUSYBOX_CONFIG_DESKTOP default BUSYBOX_DEFAULT_REMOVE_SHELL if BUSYBOX_CONFIG_DESKTOP
help help
Remove shells from /etc/shells. Remove shells from /etc/shells.
config BUSYBOX_CONFIG_ADDGROUP config BUSYBOX_CONFIG_ADDGROUP
bool "addgroup (8.6 kb)" bool "addgroup (8.8 kb)"
default BUSYBOX_DEFAULT_ADDGROUP default BUSYBOX_DEFAULT_ADDGROUP
select BUSYBOX_CONFIG_LONG_OPTS select BUSYBOX_CONFIG_LONG_OPTS
help help
@ -160,7 +160,7 @@ config BUSYBOX_CONFIG_LAST_SYSTEM_ID
help help
Last valid system uid or gid for adduser and addgroup Last valid system uid or gid for adduser and addgroup
config BUSYBOX_CONFIG_CHPASSWD config BUSYBOX_CONFIG_CHPASSWD
bool "chpasswd (18 kb)" bool "chpasswd (19 kb)"
default BUSYBOX_DEFAULT_CHPASSWD default BUSYBOX_DEFAULT_CHPASSWD
help help
Reads a file of user name and password pairs from standard input Reads a file of user name and password pairs from standard input
@ -173,27 +173,27 @@ config BUSYBOX_CONFIG_FEATURE_DEFAULT_PASSWD_ALGO
help help
Possible choices are "d[es]", "m[d5]", "s[ha256]" or "sha512". Possible choices are "d[es]", "m[d5]", "s[ha256]" or "sha512".
config BUSYBOX_CONFIG_CRYPTPW config BUSYBOX_CONFIG_CRYPTPW
bool "cryptpw (14 kb)" bool "cryptpw (15 kb)"
default BUSYBOX_DEFAULT_CRYPTPW default BUSYBOX_DEFAULT_CRYPTPW
help help
Encrypts the given password with the crypt(3) libc function Encrypts the given password with the crypt(3) libc function
using the given salt. using the given salt.
config BUSYBOX_CONFIG_MKPASSWD config BUSYBOX_CONFIG_MKPASSWD
bool "mkpasswd (15 kb)" bool "mkpasswd (16 kb)"
default BUSYBOX_DEFAULT_MKPASSWD default BUSYBOX_DEFAULT_MKPASSWD
help help
Encrypts the given password with the crypt(3) libc function Encrypts the given password with the crypt(3) libc function
using the given salt. Debian has this utility under mkpasswd using the given salt. Debian has this utility under mkpasswd
name. Busybox provides mkpasswd as an alias for cryptpw. name. Busybox provides mkpasswd as an alias for cryptpw.
config BUSYBOX_CONFIG_DELUSER config BUSYBOX_CONFIG_DELUSER
bool "deluser (9.1 kb)" bool "deluser (9.3 kb)"
default BUSYBOX_DEFAULT_DELUSER default BUSYBOX_DEFAULT_DELUSER
help help
Utility for deleting a user account. Utility for deleting a user account.
config BUSYBOX_CONFIG_DELGROUP config BUSYBOX_CONFIG_DELGROUP
bool "delgroup (6.4 kb)" bool "delgroup (6.6 kb)"
default BUSYBOX_DEFAULT_DELGROUP default BUSYBOX_DEFAULT_DELGROUP
help help
Utility for deleting a group account. Utility for deleting a group account.
@ -206,7 +206,7 @@ config BUSYBOX_CONFIG_FEATURE_DEL_USER_FROM_GROUP
If called with two non-option arguments, deluser If called with two non-option arguments, deluser
or delgroup will remove an user from a specified group. or delgroup will remove an user from a specified group.
config BUSYBOX_CONFIG_GETTY config BUSYBOX_CONFIG_GETTY
bool "getty (10 kb)" bool "getty (11 kb)"
default BUSYBOX_DEFAULT_GETTY default BUSYBOX_DEFAULT_GETTY
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help
@ -224,7 +224,7 @@ config BUSYBOX_CONFIG_GETTY
read -r login read -r login
exec /bin/login "$login" exec /bin/login "$login"
config BUSYBOX_CONFIG_LOGIN config BUSYBOX_CONFIG_LOGIN
bool "login (24 kb)" bool "login (25 kb)"
default BUSYBOX_DEFAULT_LOGIN default BUSYBOX_DEFAULT_LOGIN
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help
@ -269,7 +269,7 @@ config BUSYBOX_CONFIG_FEATURE_SECURETTY
The file contains the device names of tty lines (one per line, The file contains the device names of tty lines (one per line,
without leading /dev/) on which root is allowed to login. without leading /dev/) on which root is allowed to login.
config BUSYBOX_CONFIG_PASSWD config BUSYBOX_CONFIG_PASSWD
bool "passwd (21 kb)" bool "passwd (22 kb)"
default BUSYBOX_DEFAULT_PASSWD default BUSYBOX_DEFAULT_PASSWD
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help
@ -312,14 +312,14 @@ config BUSYBOX_CONFIG_FEATURE_SU_BLANK_PW_NEEDS_SECURE_TTY
default BUSYBOX_DEFAULT_FEATURE_SU_BLANK_PW_NEEDS_SECURE_TTY default BUSYBOX_DEFAULT_FEATURE_SU_BLANK_PW_NEEDS_SECURE_TTY
depends on BUSYBOX_CONFIG_SU depends on BUSYBOX_CONFIG_SU
config BUSYBOX_CONFIG_SULOGIN config BUSYBOX_CONFIG_SULOGIN
bool "sulogin (17 kb)" bool "sulogin (18 kb)"
default BUSYBOX_DEFAULT_SULOGIN default BUSYBOX_DEFAULT_SULOGIN
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help
sulogin is invoked when the system goes into single user sulogin is invoked when the system goes into single user
mode (this is done through an entry in inittab). mode (this is done through an entry in inittab).
config BUSYBOX_CONFIG_VLOCK config BUSYBOX_CONFIG_VLOCK
bool "vlock (17 kb)" bool "vlock (18 kb)"
default BUSYBOX_DEFAULT_VLOCK default BUSYBOX_DEFAULT_VLOCK
help help
Build the "vlock" applet which allows you to lock (virtual) terminals. Build the "vlock" applet which allows you to lock (virtual) terminals.

View File

@ -9,12 +9,12 @@ config BUSYBOX_CONFIG_FEATURE_MIME_CHARSET
Default charset of the message. Default charset of the message.
config BUSYBOX_CONFIG_MAKEMIME config BUSYBOX_CONFIG_MAKEMIME
bool "makemime (5.4 kb)" bool "makemime (5.6 kb)"
default BUSYBOX_DEFAULT_MAKEMIME default BUSYBOX_DEFAULT_MAKEMIME
help help
Create MIME-formatted messages. Create MIME-formatted messages.
config BUSYBOX_CONFIG_POPMAILDIR config BUSYBOX_CONFIG_POPMAILDIR
bool "popmaildir (10 kb)" bool "popmaildir (11 kb)"
default BUSYBOX_DEFAULT_POPMAILDIR default BUSYBOX_DEFAULT_POPMAILDIR
help help
Simple yet powerful POP3 mail popper. Delivers content Simple yet powerful POP3 mail popper. Delivers content
@ -30,7 +30,7 @@ config BUSYBOX_CONFIG_FEATURE_POPMAILDIR_DELIVERY
Allow to use a custom program for message actual delivery Allow to use a custom program for message actual delivery
(-M "prog [args...]"). (-M "prog [args...]").
config BUSYBOX_CONFIG_REFORMIME config BUSYBOX_CONFIG_REFORMIME
bool "reformime (7.5 kb)" bool "reformime (7.6 kb)"
default BUSYBOX_DEFAULT_REFORMIME default BUSYBOX_DEFAULT_REFORMIME
help help
Parse MIME-formatted messages. Parse MIME-formatted messages.

View File

@ -7,13 +7,13 @@
menu "Miscellaneous Utilities" menu "Miscellaneous Utilities"
config BUSYBOX_CONFIG_ADJTIMEX config BUSYBOX_CONFIG_ADJTIMEX
bool "adjtimex (4.7 kb)" bool "adjtimex (4.9 kb)"
default BUSYBOX_DEFAULT_ADJTIMEX default BUSYBOX_DEFAULT_ADJTIMEX
help help
Adjtimex reads and optionally sets adjustment parameters for Adjtimex reads and optionally sets adjustment parameters for
the Linux clock adjustment algorithm. the Linux clock adjustment algorithm.
config BUSYBOX_CONFIG_ASCII config BUSYBOX_CONFIG_ASCII
bool "ascii" bool "ascii (784 bytes)"
default BUSYBOX_DEFAULT_ASCII default BUSYBOX_DEFAULT_ASCII
help help
Print ascii table. Print ascii table.
@ -39,7 +39,7 @@ config BUSYBOX_CONFIG_FEATURE_COMPRESS_BBCONFIG
and have very little memory, this might not be a win. Otherwise, and have very little memory, this might not be a win. Otherwise,
you probably want this. you probably want this.
config BUSYBOX_CONFIG_BC config BUSYBOX_CONFIG_BC
bool "bc (45 kb)" bool "bc (38 kb)"
default BUSYBOX_DEFAULT_BC default BUSYBOX_DEFAULT_BC
select BUSYBOX_CONFIG_FEATURE_DC_BIG select BUSYBOX_CONFIG_FEATURE_DC_BIG
help help
@ -63,7 +63,7 @@ config BUSYBOX_CONFIG_BC
5) "read()" accepts expressions, not only numeric literals. 5) "read()" accepts expressions, not only numeric literals.
config BUSYBOX_CONFIG_DC config BUSYBOX_CONFIG_DC
bool "dc (36 kb)" bool "dc (29 kb)"
default BUSYBOX_DEFAULT_DC default BUSYBOX_DEFAULT_DC
help help
dc is a reverse-polish notation command-line calculator which dc is a reverse-polish notation command-line calculator which
@ -125,7 +125,7 @@ config BUSYBOX_CONFIG_FEATURE_BC_LONG_OPTIONS
endif endif
config BUSYBOX_CONFIG_BEEP config BUSYBOX_CONFIG_BEEP
bool "beep (2.4 kb)" bool "beep (2.7 kb)"
default BUSYBOX_DEFAULT_BEEP default BUSYBOX_DEFAULT_BEEP
help help
The beep applets beeps in a given freq/Hz. The beep applets beeps in a given freq/Hz.
@ -146,7 +146,7 @@ config BUSYBOX_CONFIG_FEATURE_BEEP_LENGTH_MS
help help
Length in ms for default beep. Length in ms for default beep.
config BUSYBOX_CONFIG_CHAT config BUSYBOX_CONFIG_CHAT
bool "chat (6.3 kb)" bool "chat (6.7 kb)"
default BUSYBOX_DEFAULT_CHAT default BUSYBOX_DEFAULT_CHAT
help help
Simple chat utility. Simple chat utility.
@ -220,7 +220,7 @@ config BUSYBOX_CONFIG_CONSPY
or conspy -nd NUM screenshot of console num or conspy -nd NUM screenshot of console num
or conspy -cs NUM poor man's GNU screen like or conspy -cs NUM poor man's GNU screen like
config BUSYBOX_CONFIG_CROND config BUSYBOX_CONFIG_CROND
bool "crond (14 kb)" bool "crond (15 kb)"
default BUSYBOX_DEFAULT_CROND default BUSYBOX_DEFAULT_CROND
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help
@ -330,7 +330,7 @@ config BUSYBOX_CONFIG_FEATURE_DEVFS
/dev/loop0. If your /dev directory has normal names instead of /dev/loop0. If your /dev directory has normal names instead of
devfs names, you don't want this. devfs names, you don't want this.
config BUSYBOX_CONFIG_DEVMEM config BUSYBOX_CONFIG_DEVMEM
bool "devmem (2.5 kb)" bool "devmem (2.7 kb)"
default BUSYBOX_DEFAULT_DEVMEM default BUSYBOX_DEFAULT_DEVMEM
help help
devmem is a small program that reads and writes from physical devmem is a small program that reads and writes from physical
@ -380,6 +380,11 @@ config BUSYBOX_CONFIG_FLASHCP
help help
The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7. The flashcp binary, inspired by mtd-utils as of git head 5eceb74f7.
This utility is used to copy images into a MTD device. This utility is used to copy images into a MTD device.
config BUSYBOX_CONFIG_GETFATTR
bool "getfattr (12.3 kb)"
default BUSYBOX_DEFAULT_GETFATTR
help
Get extended attributes on files
config BUSYBOX_CONFIG_HDPARM config BUSYBOX_CONFIG_HDPARM
bool "hdparm (25 kb)" bool "hdparm (25 kb)"
default BUSYBOX_DEFAULT_HDPARM default BUSYBOX_DEFAULT_HDPARM
@ -437,36 +442,36 @@ config BUSYBOX_CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA
help help
Enable the 'hdparm -d' option to get/set using_dma flag. Enable the 'hdparm -d' option to get/set using_dma flag.
config BUSYBOX_CONFIG_HEXEDIT config BUSYBOX_CONFIG_HEXEDIT
bool "hexedit (21 kb)" bool "hexedit (15 kb)"
default BUSYBOX_DEFAULT_HEXEDIT default BUSYBOX_DEFAULT_HEXEDIT
help help
Edit file in hexadecimal. Edit file in hexadecimal.
config BUSYBOX_CONFIG_I2CGET config BUSYBOX_CONFIG_I2CGET
bool "i2cget (5.5 kb)" bool "i2cget (5.7 kb)"
default BUSYBOX_DEFAULT_I2CGET default BUSYBOX_DEFAULT_I2CGET
help help
Read from I2C/SMBus chip registers. Read from I2C/SMBus chip registers.
config BUSYBOX_CONFIG_I2CSET config BUSYBOX_CONFIG_I2CSET
bool "i2cset (6.7 kb)" bool "i2cset (6.9 kb)"
default BUSYBOX_DEFAULT_I2CSET default BUSYBOX_DEFAULT_I2CSET
help help
Set I2C registers. Set I2C registers.
config BUSYBOX_CONFIG_I2CDUMP config BUSYBOX_CONFIG_I2CDUMP
bool "i2cdump (7.1 kb)" bool "i2cdump (7.2 kb)"
default BUSYBOX_DEFAULT_I2CDUMP default BUSYBOX_DEFAULT_I2CDUMP
help help
Examine I2C registers. Examine I2C registers.
config BUSYBOX_CONFIG_I2CDETECT config BUSYBOX_CONFIG_I2CDETECT
bool "i2cdetect (7.1 kb)" bool "i2cdetect (7.3 kb)"
default BUSYBOX_DEFAULT_I2CDETECT default BUSYBOX_DEFAULT_I2CDETECT
help help
Detect I2C chips. Detect I2C chips.
config BUSYBOX_CONFIG_I2CTRANSFER config BUSYBOX_CONFIG_I2CTRANSFER
bool "i2ctransfer (4.0 kb)" bool "i2ctransfer (5.5 kb)"
default BUSYBOX_DEFAULT_I2CTRANSFER default BUSYBOX_DEFAULT_I2CTRANSFER
help help
Send user-defined I2C messages in one transfer. Send user-defined I2C messages in one transfer.
@ -579,7 +584,7 @@ config BUSYBOX_CONFIG_LOCK
help help
Small utility for using locks in scripts Small utility for using locks in scripts
config BUSYBOX_CONFIG_LSSCSI config BUSYBOX_CONFIG_LSSCSI
bool "lsscsi (2.5 kb)" bool "lsscsi (2.9 kb)"
default BUSYBOX_DEFAULT_LSSCSI default BUSYBOX_DEFAULT_LSSCSI
help help
lsscsi is a utility for displaying information about SCSI buses in the lsscsi is a utility for displaying information about SCSI buses in the
@ -587,7 +592,7 @@ config BUSYBOX_CONFIG_LSSCSI
This version uses sysfs (/sys/bus/scsi/devices) only. This version uses sysfs (/sys/bus/scsi/devices) only.
config BUSYBOX_CONFIG_MAKEDEVS config BUSYBOX_CONFIG_MAKEDEVS
bool "makedevs (9.2 kb)" bool "makedevs (9.4 kb)"
default BUSYBOX_DEFAULT_MAKEDEVS default BUSYBOX_DEFAULT_MAKEDEVS
help help
'makedevs' is a utility used to create a batch of devices with 'makedevs' is a utility used to create a batch of devices with
@ -623,7 +628,7 @@ config BUSYBOX_CONFIG_MAN
help help
Format and display manual pages. Format and display manual pages.
config BUSYBOX_CONFIG_MICROCOM config BUSYBOX_CONFIG_MICROCOM
bool "microcom (5.7 kb)" bool "microcom (5.9 kb)"
default BUSYBOX_DEFAULT_MICROCOM default BUSYBOX_DEFAULT_MICROCOM
help help
The poor man's minicom utility for chatting with serial port devices. The poor man's minicom utility for chatting with serial port devices.
@ -635,36 +640,36 @@ config BUSYBOX_CONFIG_MIM
Run a script from a Makefile-like specification file. Run a script from a Makefile-like specification file.
Unlike 'make' dependencies aren't supported. Unlike 'make' dependencies aren't supported.
config BUSYBOX_CONFIG_MT config BUSYBOX_CONFIG_MT
bool "mt (2.5 kb)" bool "mt (2.7 kb)"
default BUSYBOX_DEFAULT_MT default BUSYBOX_DEFAULT_MT
help help
mt is used to control tape devices. You can use the mt utility 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 to advance or rewind a tape past a specified number of archive
files on the tape. files on the tape.
config BUSYBOX_CONFIG_NANDWRITE config BUSYBOX_CONFIG_NANDWRITE
bool "nandwrite (4.8 kb)" bool "nandwrite (5 kb)"
default BUSYBOX_DEFAULT_NANDWRITE default BUSYBOX_DEFAULT_NANDWRITE
help help
Write to the specified MTD device, with bad blocks awareness Write to the specified MTD device, with bad blocks awareness
config BUSYBOX_CONFIG_NANDDUMP config BUSYBOX_CONFIG_NANDDUMP
bool "nanddump (5.2 kb)" bool "nanddump (5.4 kb)"
default BUSYBOX_DEFAULT_NANDDUMP default BUSYBOX_DEFAULT_NANDDUMP
help help
Dump the content of raw NAND chip Dump the content of raw NAND chip
config BUSYBOX_CONFIG_PARTPROBE config BUSYBOX_CONFIG_PARTPROBE
bool "partprobe (3.5 kb)" bool "partprobe (3.7 kb)"
default BUSYBOX_DEFAULT_PARTPROBE default BUSYBOX_DEFAULT_PARTPROBE
help help
Ask kernel to rescan partition table. Ask kernel to rescan partition table.
config BUSYBOX_CONFIG_RAIDAUTORUN config BUSYBOX_CONFIG_RAIDAUTORUN
bool "raidautorun (1.3 kb)" bool "raidautorun (1.6 kb)"
default BUSYBOX_DEFAULT_RAIDAUTORUN default BUSYBOX_DEFAULT_RAIDAUTORUN
help help
raidautorun tells the kernel md driver to raidautorun tells the kernel md driver to
search and start RAID arrays. search and start RAID arrays.
config BUSYBOX_CONFIG_READAHEAD config BUSYBOX_CONFIG_READAHEAD
bool "readahead (1.5 kb)" bool "readahead (1.7 kb)"
default BUSYBOX_DEFAULT_READAHEAD default BUSYBOX_DEFAULT_READAHEAD
depends on BUSYBOX_CONFIG_LFS depends on BUSYBOX_CONFIG_LFS
help help
@ -691,7 +696,7 @@ config BUSYBOX_CONFIG_RFKILL
rfkill block|unblock wlan : block/unblock all wlan(wifi) devices rfkill block|unblock wlan : block/unblock all wlan(wifi) devices
config BUSYBOX_CONFIG_RUNLEVEL config BUSYBOX_CONFIG_RUNLEVEL
bool "runlevel (559 bytes)" bool "runlevel (837 bytes)"
default BUSYBOX_DEFAULT_RUNLEVEL default BUSYBOX_DEFAULT_RUNLEVEL
depends on BUSYBOX_CONFIG_FEATURE_UTMP depends on BUSYBOX_CONFIG_FEATURE_UTMP
help help
@ -700,50 +705,50 @@ config BUSYBOX_CONFIG_RUNLEVEL
This applet uses utmp but does not rely on busybox supporing This applet uses utmp but does not rely on busybox supporing
utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc. utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
config BUSYBOX_CONFIG_RX config BUSYBOX_CONFIG_RX
bool "rx (2.9 kb)" bool "rx (3.2 kb)"
default BUSYBOX_DEFAULT_RX default BUSYBOX_DEFAULT_RX
help help
Receive files using the Xmodem protocol. Receive files using the Xmodem protocol.
config BUSYBOX_CONFIG_SEEDRNG config BUSYBOX_CONFIG_SEEDRNG
bool "seedrng (1.3 kb)" bool "seedrng (9.1 kb)"
default BUSYBOX_DEFAULT_SEEDRNG default BUSYBOX_DEFAULT_SEEDRNG
help help
Seed the kernel RNG from seed files, meant to be called Seed the kernel RNG from seed files, meant to be called
once during startup, once during shutdown, and optionally once during startup, once during shutdown, and optionally
at some periodic interval in between. at some periodic interval in between.
config BUSYBOX_CONFIG_SETFATTR config BUSYBOX_CONFIG_SETFATTR
bool "setfattr (3.7 kb)" bool "setfattr (3.9 kb)"
default BUSYBOX_DEFAULT_SETFATTR default BUSYBOX_DEFAULT_SETFATTR
help help
Set/delete extended attributes on files Set/delete extended attributes on files
config BUSYBOX_CONFIG_SETSERIAL config BUSYBOX_CONFIG_SETSERIAL
bool "setserial (6.9 kb)" bool "setserial (7.1 kb)"
default BUSYBOX_DEFAULT_SETSERIAL default BUSYBOX_DEFAULT_SETSERIAL
help help
Retrieve or set Linux serial port. Retrieve or set Linux serial port.
config BUSYBOX_CONFIG_STRINGS config BUSYBOX_CONFIG_STRINGS
bool "strings (4.6 kb)" bool "strings (4.8 kb)"
default BUSYBOX_DEFAULT_STRINGS default BUSYBOX_DEFAULT_STRINGS
help help
strings prints the printable character sequences for each file strings prints the printable character sequences for each file
specified. specified.
config BUSYBOX_CONFIG_TIME config BUSYBOX_CONFIG_TIME
bool "time (6.8 kb)" bool "time (8.1 kb)"
default BUSYBOX_DEFAULT_TIME default BUSYBOX_DEFAULT_TIME
help help
The time command runs the specified program with the given arguments. The time command runs the specified program with the given arguments.
When the command finishes, time writes a message to standard output When the command finishes, time writes a message to standard output
giving timing statistics about this program run. giving timing statistics about this program run.
config BUSYBOX_CONFIG_TREE config BUSYBOX_CONFIG_TREE
bool "tree (0.6 kb)" bool "tree (2.5 kb)"
default BUSYBOX_DEFAULT_TREE default BUSYBOX_DEFAULT_TREE
help help
List files and directories in a tree structure. List files and directories in a tree structure.
config BUSYBOX_CONFIG_TS config BUSYBOX_CONFIG_TS
bool "ts (450 bytes)" bool "ts (4.4 kb)"
default BUSYBOX_DEFAULT_TS default BUSYBOX_DEFAULT_TS
config BUSYBOX_CONFIG_TTYSIZE config BUSYBOX_CONFIG_TTYSIZE
bool "ttysize (432 bytes)" bool "ttysize (718 bytes)"
default BUSYBOX_DEFAULT_TTYSIZE default BUSYBOX_DEFAULT_TTYSIZE
help help
A replacement for "stty size". Unlike stty, can report only width, A replacement for "stty size". Unlike stty, can report only width,
@ -751,52 +756,52 @@ config BUSYBOX_CONFIG_TTYSIZE
error, but returns default 80x24. error, but returns default 80x24.
Usage in shell scripts: width=`ttysize w`. Usage in shell scripts: width=`ttysize w`.
config BUSYBOX_CONFIG_UBIATTACH config BUSYBOX_CONFIG_UBIATTACH
bool "ubiattach (4.2 kb)" bool "ubiattach (4.5 kb)"
default BUSYBOX_DEFAULT_UBIATTACH default BUSYBOX_DEFAULT_UBIATTACH
help help
Attach MTD device to an UBI device. Attach MTD device to an UBI device.
config BUSYBOX_CONFIG_UBIDETACH config BUSYBOX_CONFIG_UBIDETACH
bool "ubidetach (4.1 kb)" bool "ubidetach (4.3 kb)"
default BUSYBOX_DEFAULT_UBIDETACH default BUSYBOX_DEFAULT_UBIDETACH
help help
Detach MTD device from an UBI device. Detach MTD device from an UBI device.
config BUSYBOX_CONFIG_UBIMKVOL config BUSYBOX_CONFIG_UBIMKVOL
bool "ubimkvol (5.3 kb)" bool "ubimkvol (5.5 kb)"
default BUSYBOX_DEFAULT_UBIMKVOL default BUSYBOX_DEFAULT_UBIMKVOL
help help
Create a UBI volume. Create a UBI volume.
config BUSYBOX_CONFIG_UBIRMVOL config BUSYBOX_CONFIG_UBIRMVOL
bool "ubirmvol (4.9 kb)" bool "ubirmvol (5.1 kb)"
default BUSYBOX_DEFAULT_UBIRMVOL default BUSYBOX_DEFAULT_UBIRMVOL
help help
Delete a UBI volume. Delete a UBI volume.
config BUSYBOX_CONFIG_UBIRSVOL config BUSYBOX_CONFIG_UBIRSVOL
bool "ubirsvol (4.2 kb)" bool "ubirsvol (4.4 kb)"
default BUSYBOX_DEFAULT_UBIRSVOL default BUSYBOX_DEFAULT_UBIRSVOL
help help
Resize a UBI volume. Resize a UBI volume.
config BUSYBOX_CONFIG_UBIUPDATEVOL config BUSYBOX_CONFIG_UBIUPDATEVOL
bool "ubiupdatevol (5.2 kb)" bool "ubiupdatevol (5.6 kb)"
default BUSYBOX_DEFAULT_UBIUPDATEVOL default BUSYBOX_DEFAULT_UBIUPDATEVOL
help help
Update a UBI volume. Update a UBI volume.
config BUSYBOX_CONFIG_UBIRENAME config BUSYBOX_CONFIG_UBIRENAME
bool "ubirename (2.4 kb)" bool "ubirename (2.7 kb)"
default BUSYBOX_DEFAULT_UBIRENAME default BUSYBOX_DEFAULT_UBIRENAME
help help
Utility to rename UBI volumes Utility to rename UBI volumes
config BUSYBOX_CONFIG_VOLNAME config BUSYBOX_CONFIG_VOLNAME
bool "volname (1.6 kb)" bool "volname (1.9 kb)"
default BUSYBOX_DEFAULT_VOLNAME default BUSYBOX_DEFAULT_VOLNAME
help help
Prints a CD-ROM volume name. Prints a CD-ROM volume name.
config BUSYBOX_CONFIG_WATCHDOG config BUSYBOX_CONFIG_WATCHDOG
bool "watchdog (5.3 kb)" bool "watchdog (5.7 kb)"
default BUSYBOX_DEFAULT_WATCHDOG default BUSYBOX_DEFAULT_WATCHDOG
help help
The watchdog utility is used with hardware or software watchdog The watchdog utility is used with hardware or software watchdog

View File

@ -47,7 +47,7 @@ config BUSYBOX_CONFIG_INSMOD
help help
insmod is used to load specified modules in the running kernel. insmod is used to load specified modules in the running kernel.
config BUSYBOX_CONFIG_LSMOD config BUSYBOX_CONFIG_LSMOD
bool "lsmod (1.9 kb)" bool "lsmod (2.1 kb)"
default BUSYBOX_DEFAULT_LSMOD default BUSYBOX_DEFAULT_LSMOD
help help
lsmod is used to display a list of loaded modules. lsmod is used to display a list of loaded modules.
@ -66,7 +66,7 @@ config BUSYBOX_CONFIG_MODINFO
help help
Show information about a Linux Kernel module Show information about a Linux Kernel module
config BUSYBOX_CONFIG_MODPROBE config BUSYBOX_CONFIG_MODPROBE
bool "modprobe (28 kb)" bool "modprobe (27 kb)"
default BUSYBOX_DEFAULT_MODPROBE default BUSYBOX_DEFAULT_MODPROBE
help help
Handle the loading of modules, and their dependencies on a high Handle the loading of modules, and their dependencies on a high
@ -83,7 +83,7 @@ config BUSYBOX_CONFIG_FEATURE_MODPROBE_BLACKLIST
hardware autodetection scripts to load modules like evdev, frame hardware autodetection scripts to load modules like evdev, frame
buffer drivers etc. buffer drivers etc.
config BUSYBOX_CONFIG_RMMOD config BUSYBOX_CONFIG_RMMOD
bool "rmmod (3.3 kb)" bool "rmmod (3.5 kb)"
default BUSYBOX_DEFAULT_RMMOD default BUSYBOX_DEFAULT_RMMOD
help help
rmmod is used to unload specified modules from the kernel. rmmod is used to unload specified modules from the kernel.

View File

@ -90,12 +90,12 @@ config BUSYBOX_CONFIG_ARP
help help
Manipulate the system ARP cache. Manipulate the system ARP cache.
config BUSYBOX_CONFIG_ARPING config BUSYBOX_CONFIG_ARPING
bool "arping (9 kb)" bool "arping (9.1 kb)"
default BUSYBOX_DEFAULT_ARPING default BUSYBOX_DEFAULT_ARPING
help help
Ping hosts by ARP packets. Ping hosts by ARP packets.
config BUSYBOX_CONFIG_BRCTL config BUSYBOX_CONFIG_BRCTL
bool "brctl (4.7 kb)" bool "brctl (9.9 kb)"
default BUSYBOX_DEFAULT_BRCTL default BUSYBOX_DEFAULT_BRCTL
help help
Manage ethernet bridges. Manage ethernet bridges.
@ -120,12 +120,12 @@ config BUSYBOX_CONFIG_FEATURE_BRCTL_SHOW
Add support for option which prints the current config: Add support for option which prints the current config:
show show
config BUSYBOX_CONFIG_DNSD config BUSYBOX_CONFIG_DNSD
bool "dnsd (9.8 kb)" bool "dnsd (10 kb)"
default BUSYBOX_DEFAULT_DNSD default BUSYBOX_DEFAULT_DNSD
help help
Small and static DNS server daemon. Small and static DNS server daemon.
config BUSYBOX_CONFIG_ETHER_WAKE config BUSYBOX_CONFIG_ETHER_WAKE
bool "ether-wake (4.9 kb)" bool "ether-wake (5.2 kb)"
default BUSYBOX_DEFAULT_ETHER_WAKE default BUSYBOX_DEFAULT_ETHER_WAKE
help help
Send a magic packet to wake up sleeping machines. Send a magic packet to wake up sleeping machines.
@ -167,13 +167,13 @@ config BUSYBOX_CONFIG_FEATURE_FTPD_AUTHENTICATION
of the user it was started under, and does not require login. of the user it was started under, and does not require login.
Take care to not launch it under root. Take care to not launch it under root.
config BUSYBOX_CONFIG_FTPGET config BUSYBOX_CONFIG_FTPGET
bool "ftpget (7.8 kb)" bool "ftpget (7.9 kb)"
default BUSYBOX_DEFAULT_FTPGET default BUSYBOX_DEFAULT_FTPGET
help help
Retrieve a remote file via FTP. Retrieve a remote file via FTP.
config BUSYBOX_CONFIG_FTPPUT config BUSYBOX_CONFIG_FTPPUT
bool "ftpput (7.5 kb)" bool "ftpput (7.6 kb)"
default BUSYBOX_DEFAULT_FTPPUT default BUSYBOX_DEFAULT_FTPPUT
help help
Store a remote file via FTP. Store a remote file via FTP.
@ -183,13 +183,13 @@ config BUSYBOX_CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS
default BUSYBOX_DEFAULT_FEATURE_FTPGETPUT_LONG_OPTIONS default BUSYBOX_DEFAULT_FEATURE_FTPGETPUT_LONG_OPTIONS
depends on BUSYBOX_CONFIG_LONG_OPTS && (BUSYBOX_CONFIG_FTPGET || BUSYBOX_CONFIG_FTPPUT) depends on BUSYBOX_CONFIG_LONG_OPTS && (BUSYBOX_CONFIG_FTPGET || BUSYBOX_CONFIG_FTPPUT)
config BUSYBOX_CONFIG_HOSTNAME config BUSYBOX_CONFIG_HOSTNAME
bool "hostname (5.5 kb)" bool "hostname (5.8 kb)"
default BUSYBOX_DEFAULT_HOSTNAME default BUSYBOX_DEFAULT_HOSTNAME
help help
Show or set the system's host name. Show or set the system's host name.
config BUSYBOX_CONFIG_DNSDOMAINNAME config BUSYBOX_CONFIG_DNSDOMAINNAME
bool "dnsdomainname (3.6 kb)" bool "dnsdomainname (3.8 kb)"
default BUSYBOX_DEFAULT_DNSDOMAINNAME default BUSYBOX_DEFAULT_DNSDOMAINNAME
help help
Alias to "hostname -d". Alias to "hostname -d".
@ -408,7 +408,7 @@ config BUSYBOX_CONFIG_IFENSLAVE
Userspace application to bind several interfaces Userspace application to bind several interfaces
to a logical interface (use with kernel bonding driver). to a logical interface (use with kernel bonding driver).
config BUSYBOX_CONFIG_IFPLUGD config BUSYBOX_CONFIG_IFPLUGD
bool "ifplugd (10 kb)" bool "ifplugd (11 kb)"
default BUSYBOX_DEFAULT_IFPLUGD default BUSYBOX_DEFAULT_IFPLUGD
help help
Network interface plug detection daemon. Network interface plug detection daemon.
@ -569,7 +569,7 @@ config BUSYBOX_CONFIG_IP
trying to be portable, it's better to use "ip CMD" forms. trying to be portable, it's better to use "ip CMD" forms.
config BUSYBOX_CONFIG_IPADDR config BUSYBOX_CONFIG_IPADDR
bool "ipaddr (14 kb)" bool "ipaddr (15 kb)"
default BUSYBOX_DEFAULT_IPADDR default BUSYBOX_DEFAULT_IPADDR
select BUSYBOX_CONFIG_FEATURE_IP_ADDRESS select BUSYBOX_CONFIG_FEATURE_IP_ADDRESS
help help
@ -590,7 +590,7 @@ config BUSYBOX_CONFIG_IPROUTE
Short form of "ip route" Short form of "ip route"
config BUSYBOX_CONFIG_IPTUNNEL config BUSYBOX_CONFIG_IPTUNNEL
bool "iptunnel (9.6 kb)" bool "iptunnel (9.8 kb)"
default BUSYBOX_DEFAULT_IPTUNNEL default BUSYBOX_DEFAULT_IPTUNNEL
select BUSYBOX_CONFIG_FEATURE_IP_TUNNEL select BUSYBOX_CONFIG_FEATURE_IP_TUNNEL
help help
@ -604,7 +604,7 @@ config BUSYBOX_CONFIG_IPRULE
Short form of "ip rule" Short form of "ip rule"
config BUSYBOX_CONFIG_IPNEIGH config BUSYBOX_CONFIG_IPNEIGH
bool "ipneigh (8.3 kb)" bool "ipneigh (8.6 kb)"
default BUSYBOX_DEFAULT_IPNEIGH default BUSYBOX_DEFAULT_IPNEIGH
select BUSYBOX_CONFIG_FEATURE_IP_NEIGH select BUSYBOX_CONFIG_FEATURE_IP_NEIGH
help help
@ -624,6 +624,12 @@ config BUSYBOX_CONFIG_FEATURE_IP_LINK
help help
Configure network devices with "ip". Configure network devices with "ip".
config BUSYBOX_CONFIG_FEATURE_IP_LINK_CAN
bool "ip link set type can"
default BUSYBOX_DEFAULT_FEATURE_IP_LINK_CAN
help
Configure CAN devices with "ip".
config BUSYBOX_CONFIG_FEATURE_IP_ROUTE config BUSYBOX_CONFIG_FEATURE_IP_ROUTE
bool "ip route" bool "ip route"
default BUSYBOX_DEFAULT_FEATURE_IP_ROUTE default BUSYBOX_DEFAULT_FEATURE_IP_ROUTE
@ -669,7 +675,7 @@ config BUSYBOX_CONFIG_FEATURE_IP_RARE_PROTOCOLS
Ethernet, wireless, infrared, ppp/slip, ip tunnelling Ethernet, wireless, infrared, ppp/slip, ip tunnelling
link types are supported without this option selected. link types are supported without this option selected.
config BUSYBOX_CONFIG_IPCALC config BUSYBOX_CONFIG_IPCALC
bool "ipcalc (4.4 kb)" bool "ipcalc (4.6 kb)"
default BUSYBOX_DEFAULT_IPCALC default BUSYBOX_DEFAULT_IPCALC
help help
ipcalc takes an IP address and netmask and calculates the ipcalc takes an IP address and netmask and calculates the
@ -688,14 +694,14 @@ config BUSYBOX_CONFIG_FEATURE_IPCALC_FANCY
Adds the options hostname, prefix and silent to the output of Adds the options hostname, prefix and silent to the output of
"ipcalc". "ipcalc".
config BUSYBOX_CONFIG_FAKEIDENTD config BUSYBOX_CONFIG_FAKEIDENTD
bool "fakeidentd (8.7 kb)" bool "fakeidentd (9 kb)"
default BUSYBOX_DEFAULT_FAKEIDENTD default BUSYBOX_DEFAULT_FAKEIDENTD
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help
fakeidentd listens on the ident port and returns a predefined fakeidentd listens on the ident port and returns a predefined
fake value on any query. fake value on any query.
config BUSYBOX_CONFIG_NAMEIF config BUSYBOX_CONFIG_NAMEIF
bool "nameif (6.6 kb)" bool "nameif (6.9 kb)"
default BUSYBOX_DEFAULT_NAMEIF default BUSYBOX_DEFAULT_NAMEIF
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help
@ -723,7 +729,7 @@ config BUSYBOX_CONFIG_FEATURE_NAMEIF_EXTENDED
new_interface_name mac=00:80:C8:38:91:B5 new_interface_name mac=00:80:C8:38:91:B5
new_interface_name 00:80:C8:38:91:B5 new_interface_name 00:80:C8:38:91:B5
config BUSYBOX_CONFIG_NBDCLIENT config BUSYBOX_CONFIG_NBDCLIENT
bool "nbd-client (6 kb)" bool "nbd-client (6.3 kb)"
default BUSYBOX_DEFAULT_NBDCLIENT default BUSYBOX_DEFAULT_NBDCLIENT
help help
Network block device client Network block device client
@ -792,7 +798,7 @@ config BUSYBOX_CONFIG_FEATURE_NETSTAT_PRG
Add support for -p flag to print out PID and program name. Add support for -p flag to print out PID and program name.
+700 bytes of code. +700 bytes of code.
config BUSYBOX_CONFIG_NSLOOKUP config BUSYBOX_CONFIG_NSLOOKUP
bool "nslookup (9.7 kb)" bool "nslookup (10 kb)"
default BUSYBOX_DEFAULT_NSLOOKUP default BUSYBOX_DEFAULT_NSLOOKUP
help help
nslookup is a tool to query Internet name servers. nslookup is a tool to query Internet name servers.
@ -807,7 +813,7 @@ config BUSYBOX_CONFIG_FEATURE_NSLOOKUP_LONG_OPTIONS
default BUSYBOX_DEFAULT_FEATURE_NSLOOKUP_LONG_OPTIONS default BUSYBOX_DEFAULT_FEATURE_NSLOOKUP_LONG_OPTIONS
depends on BUSYBOX_CONFIG_FEATURE_NSLOOKUP_BIG && BUSYBOX_CONFIG_LONG_OPTS depends on BUSYBOX_CONFIG_FEATURE_NSLOOKUP_BIG && BUSYBOX_CONFIG_LONG_OPTS
config BUSYBOX_CONFIG_NTPD config BUSYBOX_CONFIG_NTPD
bool "ntpd (22 kb)" bool "ntpd (23 kb)"
default BUSYBOX_DEFAULT_NTPD default BUSYBOX_DEFAULT_NTPD
help help
The NTP client/server daemon. The NTP client/server daemon.
@ -855,22 +861,22 @@ config BUSYBOX_CONFIG_FEATURE_FANCY_PING
or terminate with SIGALRM in 5 seconds otherwise. or terminate with SIGALRM in 5 seconds otherwise.
No command-line options will be recognized. No command-line options will be recognized.
config BUSYBOX_CONFIG_PSCAN config BUSYBOX_CONFIG_PSCAN
bool "pscan (6 kb)" bool "pscan (6.2 kb)"
default BUSYBOX_DEFAULT_PSCAN default BUSYBOX_DEFAULT_PSCAN
help help
Simple network port scanner. Simple network port scanner.
config BUSYBOX_CONFIG_ROUTE config BUSYBOX_CONFIG_ROUTE
bool "route (8.7 kb)" bool "route (9 kb)"
default BUSYBOX_DEFAULT_ROUTE default BUSYBOX_DEFAULT_ROUTE
help help
Route displays or manipulates the kernel's IP routing tables. Route displays or manipulates the kernel's IP routing tables.
config BUSYBOX_CONFIG_SLATTACH config BUSYBOX_CONFIG_SLATTACH
bool "slattach (6.2 kb)" bool "slattach (6.3 kb)"
default BUSYBOX_DEFAULT_SLATTACH default BUSYBOX_DEFAULT_SLATTACH
help help
slattach configures serial line as SLIP network interface. slattach configures serial line as SLIP network interface.
config BUSYBOX_CONFIG_SSL_CLIENT config BUSYBOX_CONFIG_SSL_CLIENT
bool "ssl_client (25 kb)" bool "ssl_client (28 kb)"
default BUSYBOX_DEFAULT_SSL_CLIENT default BUSYBOX_DEFAULT_SSL_CLIENT
select BUSYBOX_CONFIG_TLS select BUSYBOX_CONFIG_TLS
help help
@ -929,7 +935,7 @@ config BUSYBOX_CONFIG_FEATURE_TELNET_WIDTH
default BUSYBOX_DEFAULT_FEATURE_TELNET_WIDTH default BUSYBOX_DEFAULT_FEATURE_TELNET_WIDTH
depends on BUSYBOX_CONFIG_TELNET depends on BUSYBOX_CONFIG_TELNET
config BUSYBOX_CONFIG_TELNETD config BUSYBOX_CONFIG_TELNETD
bool "telnetd (12 kb)" bool "telnetd (13 kb)"
default BUSYBOX_DEFAULT_TELNETD default BUSYBOX_DEFAULT_TELNETD
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help
@ -1076,7 +1082,7 @@ config BUSYBOX_CONFIG_TRACEROUTE
Utility to trace the route of IP packets. Utility to trace the route of IP packets.
config BUSYBOX_CONFIG_TRACEROUTE6 config BUSYBOX_CONFIG_TRACEROUTE6
bool "traceroute6 (13 kb)" bool "traceroute6 (12 kb)"
default BUSYBOX_DEFAULT_TRACEROUTE6 default BUSYBOX_DEFAULT_TRACEROUTE6
depends on BUSYBOX_CONFIG_FEATURE_IPV6 depends on BUSYBOX_CONFIG_FEATURE_IPV6
help help
@ -1095,7 +1101,7 @@ config BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP
default BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_USE_ICMP default BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_USE_ICMP
depends on BUSYBOX_CONFIG_TRACEROUTE || BUSYBOX_CONFIG_TRACEROUTE6 depends on BUSYBOX_CONFIG_TRACEROUTE || BUSYBOX_CONFIG_TRACEROUTE6
config BUSYBOX_CONFIG_TUNCTL config BUSYBOX_CONFIG_TUNCTL
bool "tunctl (6.2 kb)" bool "tunctl (6.4 kb)"
default BUSYBOX_DEFAULT_TUNCTL default BUSYBOX_DEFAULT_TUNCTL
help help
tunctl creates or deletes tun devices. tunctl creates or deletes tun devices.
@ -1108,12 +1114,12 @@ config BUSYBOX_CONFIG_FEATURE_TUNCTL_UG
Allow to specify owner and group of newly created interface. Allow to specify owner and group of newly created interface.
340 bytes of pure bloat. Say no here. 340 bytes of pure bloat. Say no here.
config BUSYBOX_CONFIG_VCONFIG config BUSYBOX_CONFIG_VCONFIG
bool "vconfig (2.3 kb)" bool "vconfig (2.6 kb)"
default BUSYBOX_DEFAULT_VCONFIG default BUSYBOX_DEFAULT_VCONFIG
help help
Creates, removes, and configures VLAN interfaces Creates, removes, and configures VLAN interfaces
config BUSYBOX_CONFIG_WGET config BUSYBOX_CONFIG_WGET
bool "wget (38 kb)" bool "wget (41 kb)"
default BUSYBOX_DEFAULT_WGET default BUSYBOX_DEFAULT_WGET
help help
wget is a utility for non-interactive download of files from HTTP wget is a utility for non-interactive download of files from HTTP
@ -1233,12 +1239,12 @@ config BUSYBOX_CONFIG_FEATURE_WGET_OPENSSL
By default TLS verification is performed, unless By default TLS verification is performed, unless
--no-check-certificate option is passed. --no-check-certificate option is passed.
config BUSYBOX_CONFIG_WHOIS config BUSYBOX_CONFIG_WHOIS
bool "whois (6.3 kb)" bool "whois (6.5 kb)"
default BUSYBOX_DEFAULT_WHOIS default BUSYBOX_DEFAULT_WHOIS
help help
whois is a client for the whois directory service whois is a client for the whois directory service
config BUSYBOX_CONFIG_ZCIP config BUSYBOX_CONFIG_ZCIP
bool "zcip (8.4 kb)" bool "zcip (8.7 kb)"
default BUSYBOX_DEFAULT_ZCIP default BUSYBOX_DEFAULT_ZCIP
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help

View File

@ -11,6 +11,13 @@ config BUSYBOX_CONFIG_UDHCPD
udhcpd is a DHCP server geared primarily toward embedded systems, udhcpd is a DHCP server geared primarily toward embedded systems,
while striving to be fully functional and RFC compliant. while striving to be fully functional and RFC compliant.
config BUSYBOX_CONFIG_FEATURE_UDHCPD_BOOTP
bool "Answer to BOOTP requests as well"
default BUSYBOX_DEFAULT_FEATURE_UDHCPD_BOOTP
depends on BUSYBOX_CONFIG_UDHCPD
help
Support old BOOTP protocol too.
config BUSYBOX_CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC config BUSYBOX_CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC
bool "Select IP address based on client MAC" bool "Select IP address based on client MAC"
default BUSYBOX_DEFAULT_FEATURE_UDHCPD_BASE_IP_ON_MAC default BUSYBOX_DEFAULT_FEATURE_UDHCPD_BASE_IP_ON_MAC
@ -44,7 +51,7 @@ config BUSYBOX_CONFIG_DHCPD_LEASES_FILE
of the file. Normally it is safe to leave it untouched. of the file. Normally it is safe to leave it untouched.
config BUSYBOX_CONFIG_DUMPLEASES config BUSYBOX_CONFIG_DUMPLEASES
bool "dumpleases (5.1 kb)" bool "dumpleases (5.3 kb)"
default BUSYBOX_DEFAULT_DUMPLEASES default BUSYBOX_DEFAULT_DUMPLEASES
help help
dumpleases displays the leases written out by the udhcpd. dumpleases displays the leases written out by the udhcpd.
@ -52,7 +59,7 @@ config BUSYBOX_CONFIG_DUMPLEASES
by the absolute time that it expires in seconds from epoch. by the absolute time that it expires in seconds from epoch.
config BUSYBOX_CONFIG_DHCPRELAY config BUSYBOX_CONFIG_DHCPRELAY
bool "dhcprelay (5.2 kb)" bool "dhcprelay (5.5 kb)"
default BUSYBOX_DEFAULT_DHCPRELAY default BUSYBOX_DEFAULT_DHCPRELAY
help help
dhcprelay listens for DHCP requests on one or more interfaces dhcprelay listens for DHCP requests on one or more interfaces

View File

@ -7,18 +7,18 @@
menu "Print Utilities" menu "Print Utilities"
config BUSYBOX_CONFIG_LPD config BUSYBOX_CONFIG_LPD
bool "lpd (5.5 kb)" bool "lpd (5.7 kb)"
default BUSYBOX_DEFAULT_LPD default BUSYBOX_DEFAULT_LPD
help help
lpd is a print spooling daemon. lpd is a print spooling daemon.
config BUSYBOX_CONFIG_LPR config BUSYBOX_CONFIG_LPR
bool "lpr (9.9 kb)" bool "lpr (10 kb)"
default BUSYBOX_DEFAULT_LPR default BUSYBOX_DEFAULT_LPR
help help
lpr sends files (or standard input) to a print spooling daemon. lpr sends files (or standard input) to a print spooling daemon.
config BUSYBOX_CONFIG_LPQ config BUSYBOX_CONFIG_LPQ
bool "lpq (9.9 kb)" bool "lpq (10 kb)"
default BUSYBOX_DEFAULT_LPQ default BUSYBOX_DEFAULT_LPQ
help help
lpq is a print spool queue examination and manipulation program. lpq is a print spool queue examination and manipulation program.

View File

@ -22,26 +22,26 @@ config BUSYBOX_CONFIG_FEATURE_SHOW_THREADS
and 'h' command in top. and 'h' command in top.
config BUSYBOX_CONFIG_FREE config BUSYBOX_CONFIG_FREE
bool "free (3.1 kb)" bool "free (3.8 kb)"
default BUSYBOX_DEFAULT_FREE default BUSYBOX_DEFAULT_FREE
help help
free displays the total amount of free and used physical and swap 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. memory in the system, as well as the buffers used by the kernel.
The shared memory column should be ignored; it is obsolete. The shared memory column should be ignored; it is obsolete.
config BUSYBOX_CONFIG_FUSER config BUSYBOX_CONFIG_FUSER
bool "fuser (7 kb)" bool "fuser (7.3 kb)"
default BUSYBOX_DEFAULT_FUSER default BUSYBOX_DEFAULT_FUSER
help help
fuser lists all PIDs (Process IDs) that currently have a given fuser lists all PIDs (Process IDs) that currently have a given
file open. fuser can also list all PIDs that have a given network file open. fuser can also list all PIDs that have a given network
(TCP or UDP) port open. (TCP or UDP) port open.
config BUSYBOX_CONFIG_IOSTAT config BUSYBOX_CONFIG_IOSTAT
bool "iostat (7.6 kb)" bool "iostat (8 kb)"
default BUSYBOX_DEFAULT_IOSTAT default BUSYBOX_DEFAULT_IOSTAT
help help
Report CPU and I/O statistics Report CPU and I/O statistics
config BUSYBOX_CONFIG_KILL config BUSYBOX_CONFIG_KILL
bool "kill (3.1 kb)" bool "kill (3.4 kb)"
default BUSYBOX_DEFAULT_KILL default BUSYBOX_DEFAULT_KILL
help help
The command kill sends the specified signal to the specified The command kill sends the specified signal to the specified
@ -49,7 +49,7 @@ config BUSYBOX_CONFIG_KILL
signal is sent. signal is sent.
config BUSYBOX_CONFIG_KILLALL config BUSYBOX_CONFIG_KILLALL
bool "killall (5.6 kb)" bool "killall (5.9 kb)"
default BUSYBOX_DEFAULT_KILLALL default BUSYBOX_DEFAULT_KILLALL
help help
killall sends a signal to all processes running any of the killall sends a signal to all processes running any of the
@ -57,7 +57,7 @@ config BUSYBOX_CONFIG_KILLALL
sent. sent.
config BUSYBOX_CONFIG_KILLALL5 config BUSYBOX_CONFIG_KILLALL5
bool "killall5 (5.3 kb)" bool "killall5 (5.6 kb)"
default BUSYBOX_DEFAULT_KILLALL5 default BUSYBOX_DEFAULT_KILLALL5
help help
The SystemV killall command. killall5 sends a signal The SystemV killall command. killall5 sends a signal
@ -65,34 +65,34 @@ config BUSYBOX_CONFIG_KILLALL5
in its own session, so it won't kill the shell that is running in its own session, so it won't kill the shell that is running
the script it was called from. the script it was called from.
config BUSYBOX_CONFIG_LSOF config BUSYBOX_CONFIG_LSOF
bool "lsof (3.4 kb)" bool "lsof (3.7 kb)"
default BUSYBOX_DEFAULT_LSOF default BUSYBOX_DEFAULT_LSOF
help help
Show open files in the format of: Show open files in the format of:
PID <TAB> /path/to/executable <TAB> /path/to/opened/file PID <TAB> /path/to/executable <TAB> /path/to/opened/file
config BUSYBOX_CONFIG_MPSTAT config BUSYBOX_CONFIG_MPSTAT
bool "mpstat (9.8 kb)" bool "mpstat (10 kb)"
default BUSYBOX_DEFAULT_MPSTAT default BUSYBOX_DEFAULT_MPSTAT
help help
Per-processor statistics Per-processor statistics
config BUSYBOX_CONFIG_NMETER config BUSYBOX_CONFIG_NMETER
bool "nmeter (11 kb)" bool "nmeter (12 kb)"
default BUSYBOX_DEFAULT_NMETER default BUSYBOX_DEFAULT_NMETER
help help
Prints selected system stats continuously, one line per update. Prints selected system stats continuously, one line per update.
config BUSYBOX_CONFIG_PGREP config BUSYBOX_CONFIG_PGREP
bool "pgrep (6.5 kb)" bool "pgrep (6.8 kb)"
default BUSYBOX_DEFAULT_PGREP default BUSYBOX_DEFAULT_PGREP
help help
Look for processes by name. Look for processes by name.
config BUSYBOX_CONFIG_PKILL config BUSYBOX_CONFIG_PKILL
bool "pkill (7.5 kb)" bool "pkill (7.8 kb)"
default BUSYBOX_DEFAULT_PKILL default BUSYBOX_DEFAULT_PKILL
help help
Send signals to processes by name. Send signals to processes by name.
config BUSYBOX_CONFIG_PIDOF config BUSYBOX_CONFIG_PIDOF
bool "pidof (6.3 kb)" bool "pidof (6.5 kb)"
default BUSYBOX_DEFAULT_PIDOF default BUSYBOX_DEFAULT_PIDOF
help help
Pidof finds the process id's (pids) of the named programs. It prints Pidof finds the process id's (pids) of the named programs. It prints
@ -114,12 +114,12 @@ config BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT
The special pid %PPID can be used to name the parent process The special pid %PPID can be used to name the parent process
of the pidof, in other words the calling shell or shell script. of the pidof, in other words the calling shell or shell script.
config BUSYBOX_CONFIG_PMAP config BUSYBOX_CONFIG_PMAP
bool "pmap (6 kb)" bool "pmap (6.2 kb)"
default BUSYBOX_DEFAULT_PMAP default BUSYBOX_DEFAULT_PMAP
help help
Display processes' memory mappings. Display processes' memory mappings.
config BUSYBOX_CONFIG_POWERTOP config BUSYBOX_CONFIG_POWERTOP
bool "powertop (9.6 kb)" bool "powertop (9.9 kb)"
default BUSYBOX_DEFAULT_POWERTOP default BUSYBOX_DEFAULT_POWERTOP
help help
Analyze power consumption on Intel-based laptops Analyze power consumption on Intel-based laptops
@ -132,7 +132,7 @@ config BUSYBOX_CONFIG_FEATURE_POWERTOP_INTERACTIVE
Without this, powertop will only refresh display every 10 seconds. Without this, powertop will only refresh display every 10 seconds.
No keyboard commands will work, only ^C to terminate. No keyboard commands will work, only ^C to terminate.
config BUSYBOX_CONFIG_PS config BUSYBOX_CONFIG_PS
bool "ps (11 kb)" bool "ps (12 kb)"
default BUSYBOX_DEFAULT_PS default BUSYBOX_DEFAULT_PS
help help
ps gives a snapshot of the current processes. ps gives a snapshot of the current processes.
@ -172,23 +172,23 @@ config BUSYBOX_CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS
default BUSYBOX_DEFAULT_FEATURE_PS_ADDITIONAL_COLUMNS default BUSYBOX_DEFAULT_FEATURE_PS_ADDITIONAL_COLUMNS
depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && BUSYBOX_CONFIG_DESKTOP depends on (BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_MINIPS) && BUSYBOX_CONFIG_DESKTOP
config BUSYBOX_CONFIG_PSTREE config BUSYBOX_CONFIG_PSTREE
bool "pstree (9.3 kb)" bool "pstree (9.4 kb)"
default BUSYBOX_DEFAULT_PSTREE default BUSYBOX_DEFAULT_PSTREE
help help
Display a tree of processes. Display a tree of processes.
config BUSYBOX_CONFIG_PWDX config BUSYBOX_CONFIG_PWDX
bool "pwdx (3.7 kb)" bool "pwdx (3.9 kb)"
default BUSYBOX_DEFAULT_PWDX default BUSYBOX_DEFAULT_PWDX
help help
Report current working directory of a process Report current working directory of a process
config BUSYBOX_CONFIG_SMEMCAP config BUSYBOX_CONFIG_SMEMCAP
bool "smemcap (2.5 kb)" bool "smemcap (3 kb)"
default BUSYBOX_DEFAULT_SMEMCAP default BUSYBOX_DEFAULT_SMEMCAP
help help
smemcap is a tool for capturing process data for smem, smemcap is a tool for capturing process data for smem,
a memory usage statistic tool. a memory usage statistic tool.
config BUSYBOX_CONFIG_BB_SYSCTL config BUSYBOX_CONFIG_BB_SYSCTL
bool "sysctl (7.4 kb)" bool "sysctl (7.9 kb)"
default BUSYBOX_DEFAULT_BB_SYSCTL default BUSYBOX_DEFAULT_BB_SYSCTL
help help
Configure kernel parameters at runtime. Configure kernel parameters at runtime.
@ -254,7 +254,7 @@ config BUSYBOX_CONFIG_FEATURE_TOPMEM
help help
Enable 's' in top (gives lots of memory info). Enable 's' in top (gives lots of memory info).
config BUSYBOX_CONFIG_UPTIME config BUSYBOX_CONFIG_UPTIME
bool "uptime (3.7 kb)" bool "uptime (4 kb)"
default BUSYBOX_DEFAULT_UPTIME default BUSYBOX_DEFAULT_UPTIME
help help
uptime gives a one line display of the current time, how long uptime gives a one line display of the current time, how long
@ -268,7 +268,7 @@ config BUSYBOX_CONFIG_FEATURE_UPTIME_UTMP_SUPPORT
help help
Display the number of users currently logged on. Display the number of users currently logged on.
config BUSYBOX_CONFIG_WATCH config BUSYBOX_CONFIG_WATCH
bool "watch (4.4 kb)" bool "watch (5.2 kb)"
default BUSYBOX_DEFAULT_WATCH default BUSYBOX_DEFAULT_WATCH
help help
watch is used to execute a program periodically, showing watch is used to execute a program periodically, showing

View File

@ -7,44 +7,44 @@
menu "Runit Utilities" menu "Runit Utilities"
config BUSYBOX_CONFIG_CHPST config BUSYBOX_CONFIG_CHPST
bool "chpst (9 kb)" bool "chpst (9.2 kb)"
default BUSYBOX_DEFAULT_CHPST default BUSYBOX_DEFAULT_CHPST
help help
chpst changes the process state according to the given options, and chpst changes the process state according to the given options, and
execs specified program. execs specified program.
config BUSYBOX_CONFIG_SETUIDGID config BUSYBOX_CONFIG_SETUIDGID
bool "setuidgid (4 kb)" bool "setuidgid (4.2 kb)"
default BUSYBOX_DEFAULT_SETUIDGID default BUSYBOX_DEFAULT_SETUIDGID
help help
Sets soft resource limits as specified by options Sets soft resource limits as specified by options
config BUSYBOX_CONFIG_ENVUIDGID config BUSYBOX_CONFIG_ENVUIDGID
bool "envuidgid (3.9 kb)" bool "envuidgid (4.1 kb)"
default BUSYBOX_DEFAULT_ENVUIDGID default BUSYBOX_DEFAULT_ENVUIDGID
help help
Sets $UID to account's uid and $GID to account's gid Sets $UID to account's uid and $GID to account's gid
config BUSYBOX_CONFIG_ENVDIR config BUSYBOX_CONFIG_ENVDIR
bool "envdir (2.5 kb)" bool "envdir (2.9 kb)"
default BUSYBOX_DEFAULT_ENVDIR default BUSYBOX_DEFAULT_ENVDIR
help help
Sets various environment variables as specified by files Sets various environment variables as specified by files
in the given directory in the given directory
config BUSYBOX_CONFIG_SOFTLIMIT config BUSYBOX_CONFIG_SOFTLIMIT
bool "softlimit (4.5 kb)" bool "softlimit (4.7 kb)"
default BUSYBOX_DEFAULT_SOFTLIMIT default BUSYBOX_DEFAULT_SOFTLIMIT
help help
Sets soft resource limits as specified by options Sets soft resource limits as specified by options
config BUSYBOX_CONFIG_RUNSV config BUSYBOX_CONFIG_RUNSV
bool "runsv (7.8 kb)" bool "runsv (8.2 kb)"
default BUSYBOX_DEFAULT_RUNSV default BUSYBOX_DEFAULT_RUNSV
help help
runsv starts and monitors a service and optionally an appendant log runsv starts and monitors a service and optionally an appendant log
service. service.
config BUSYBOX_CONFIG_RUNSVDIR config BUSYBOX_CONFIG_RUNSVDIR
bool "runsvdir (6.3 kb)" bool "runsvdir (6.6 kb)"
default BUSYBOX_DEFAULT_RUNSVDIR default BUSYBOX_DEFAULT_RUNSVDIR
help help
runsvdir starts a runsv process for each subdirectory, or symlink to runsvdir starts a runsv process for each subdirectory, or symlink to
@ -60,7 +60,7 @@ config BUSYBOX_CONFIG_FEATURE_RUNSVDIR_LOG
message (viewable via top/ps). Otherwise (feature is off message (viewable via top/ps). Otherwise (feature is off
or no parameter), error messages go to stderr only. or no parameter), error messages go to stderr only.
config BUSYBOX_CONFIG_SV config BUSYBOX_CONFIG_SV
bool "sv (8.5 kb)" bool "sv (8.7 kb)"
default BUSYBOX_DEFAULT_SV default BUSYBOX_DEFAULT_SV
help help
sv reports the current status and controls the state of services sv reports the current status and controls the state of services
@ -75,14 +75,14 @@ config BUSYBOX_CONFIG_SV_DEFAULT_SERVICE_DIR
Defaults to "/var/service" Defaults to "/var/service"
config BUSYBOX_CONFIG_SVC config BUSYBOX_CONFIG_SVC
bool "svc (8.4 kb)" bool "svc (8.7 kb)"
default BUSYBOX_DEFAULT_SVC default BUSYBOX_DEFAULT_SVC
help help
svc controls the state of services monitored by the runsv supervisor. svc controls the state of services monitored by the runsv supervisor.
It is compatible with daemontools command with the same name. It is compatible with daemontools command with the same name.
config BUSYBOX_CONFIG_SVOK config BUSYBOX_CONFIG_SVOK
bool "svok (1.5 kb)" bool "svok (1.8 kb)"
default BUSYBOX_DEFAULT_SVOK default BUSYBOX_DEFAULT_SVOK
help help
svok checks whether runsv supervisor is running. svok checks whether runsv supervisor is running.

View File

@ -87,7 +87,7 @@ config BUSYBOX_CONFIG_SHELL_ASH
depends on !BUSYBOX_CONFIG_NOMMU depends on !BUSYBOX_CONFIG_NOMMU
config BUSYBOX_CONFIG_ASH config BUSYBOX_CONFIG_ASH
bool "ash (78 kb)" bool "ash (80 kb)"
default BUSYBOX_DEFAULT_ASH default BUSYBOX_DEFAULT_ASH
depends on !BUSYBOX_CONFIG_NOMMU depends on !BUSYBOX_CONFIG_NOMMU
select BUSYBOX_CONFIG_SHELL_ASH select BUSYBOX_CONFIG_SHELL_ASH
@ -201,11 +201,6 @@ config BUSYBOX_CONFIG_ASH_TEST
default BUSYBOX_DEFAULT_ASH_TEST default BUSYBOX_DEFAULT_ASH_TEST
depends on BUSYBOX_CONFIG_SHELL_ASH depends on BUSYBOX_CONFIG_SHELL_ASH
config BUSYBOX_CONFIG_ASH_SLEEP
bool "sleep builtin"
default BUSYBOX_DEFAULT_ASH_SLEEP
depends on BUSYBOX_CONFIG_SHELL_ASH
config BUSYBOX_CONFIG_ASH_HELP config BUSYBOX_CONFIG_ASH_HELP
bool "help builtin" bool "help builtin"
default BUSYBOX_DEFAULT_ASH_HELP default BUSYBOX_DEFAULT_ASH_HELP
@ -227,7 +222,7 @@ config BUSYBOX_CONFIG_ASH_CMDCMD
endif # ash options endif # ash options
config BUSYBOX_CONFIG_CTTYHACK config BUSYBOX_CONFIG_CTTYHACK
bool "cttyhack (2.4 kb)" bool "cttyhack (2.7 kb)"
default BUSYBOX_DEFAULT_CTTYHACK default BUSYBOX_DEFAULT_CTTYHACK
help help
One common problem reported on the mailing list is the "can't One common problem reported on the mailing list is the "can't
@ -270,7 +265,7 @@ config BUSYBOX_CONFIG_CTTYHACK
# getty 115200 $(cttyhack) # getty 115200 $(cttyhack)
config BUSYBOX_CONFIG_HUSH config BUSYBOX_CONFIG_HUSH
bool "hush (68 kb)" bool "hush (70 kb)"
default BUSYBOX_DEFAULT_HUSH default BUSYBOX_DEFAULT_HUSH
select BUSYBOX_CONFIG_SHELL_HUSH select BUSYBOX_CONFIG_SHELL_HUSH
help help

View File

@ -7,7 +7,7 @@
menu "System Logging Utilities" menu "System Logging Utilities"
config BUSYBOX_CONFIG_KLOGD config BUSYBOX_CONFIG_KLOGD
bool "klogd (5.7 kb)" bool "klogd (6.2 kb)"
default BUSYBOX_DEFAULT_KLOGD default BUSYBOX_DEFAULT_KLOGD
help help
klogd is a utility which intercepts and logs all klogd is a utility which intercepts and logs all
@ -35,7 +35,7 @@ config BUSYBOX_CONFIG_FEATURE_KLOGD_KLOGCTL
If in doubt, say 'Y'. If in doubt, say 'Y'.
config BUSYBOX_CONFIG_LOGGER config BUSYBOX_CONFIG_LOGGER
bool "logger (6.3 kb)" bool "logger (6.5 kb)"
default BUSYBOX_DEFAULT_LOGGER default BUSYBOX_DEFAULT_LOGGER
select BUSYBOX_CONFIG_FEATURE_SYSLOG select BUSYBOX_CONFIG_FEATURE_SYSLOG
help help
@ -44,7 +44,7 @@ config BUSYBOX_CONFIG_LOGGER
they can be logged. This is generally used to help locate they can be logged. This is generally used to help locate
problems that occur within programs and scripts. problems that occur within programs and scripts.
config BUSYBOX_CONFIG_LOGREAD config BUSYBOX_CONFIG_LOGREAD
bool "logread (4.8 kb)" bool "logread (5 kb)"
default BUSYBOX_DEFAULT_LOGREAD default BUSYBOX_DEFAULT_LOGREAD
help help
If you enabled Circular Buffer support, you almost If you enabled Circular Buffer support, you almost
@ -64,7 +64,7 @@ config BUSYBOX_CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING
contention at some minor memory expense. contention at some minor memory expense.
config BUSYBOX_CONFIG_SYSLOGD config BUSYBOX_CONFIG_SYSLOGD
bool "syslogd (13 kb)" bool "syslogd (14 kb)"
default BUSYBOX_DEFAULT_SYSLOGD default BUSYBOX_DEFAULT_SYSLOGD
help help
The syslogd utility is used to record logs of all the The syslogd utility is used to record logs of all the

View File

@ -7,7 +7,7 @@
menu "Linux System Utilities" menu "Linux System Utilities"
config BUSYBOX_CONFIG_ACPID config BUSYBOX_CONFIG_ACPID
bool "acpid (9 kb)" bool "acpid (9.3 kb)"
default BUSYBOX_DEFAULT_ACPID default BUSYBOX_DEFAULT_ACPID
help help
acpid listens to ACPI events coming either in textual form from acpid listens to ACPI events coming either in textual form from
@ -28,7 +28,7 @@ config BUSYBOX_CONFIG_FEATURE_ACPID_COMPAT
help help
Accept and ignore compatibility options -g -m -s -S -v. Accept and ignore compatibility options -g -m -s -S -v.
config BUSYBOX_CONFIG_BLKDISCARD config BUSYBOX_CONFIG_BLKDISCARD
bool "blkdiscard (4.3 kb)" bool "blkdiscard (4.6 kb)"
default BUSYBOX_DEFAULT_BLKDISCARD default BUSYBOX_DEFAULT_BLKDISCARD
help help
blkdiscard discards sectors on a given device. blkdiscard discards sectors on a given device.
@ -46,23 +46,23 @@ config BUSYBOX_CONFIG_FEATURE_BLKID_TYPE
help help
Show TYPE="filesystem type" Show TYPE="filesystem type"
config BUSYBOX_CONFIG_BLOCKDEV config BUSYBOX_CONFIG_BLOCKDEV
bool "blockdev (2.3 kb)" bool "blockdev (2.6 kb)"
default BUSYBOX_DEFAULT_BLOCKDEV default BUSYBOX_DEFAULT_BLOCKDEV
help help
Performs some ioctls with block devices. Performs some ioctls with block devices.
config BUSYBOX_CONFIG_CAL config BUSYBOX_CONFIG_CAL
bool "cal (5.8 kb)" bool "cal (6.1 kb)"
default BUSYBOX_DEFAULT_CAL default BUSYBOX_DEFAULT_CAL
help help
cal is used to display a monthly calendar. cal is used to display a monthly calendar.
config BUSYBOX_CONFIG_CHRT config BUSYBOX_CONFIG_CHRT
bool "chrt (4.7 kb)" bool "chrt (5.1 kb)"
default BUSYBOX_DEFAULT_CHRT default BUSYBOX_DEFAULT_CHRT
help help
Manipulate real-time attributes of a process. Manipulate real-time attributes of a process.
This requires sched_{g,s}etparam support in your libc. This requires sched_{g,s}etparam support in your libc.
config BUSYBOX_CONFIG_DMESG config BUSYBOX_CONFIG_DMESG
bool "dmesg (3.7 kb)" bool "dmesg (3.9 kb)"
default BUSYBOX_DEFAULT_DMESG default BUSYBOX_DEFAULT_DMESG
help help
dmesg is used to examine or control the kernel ring buffer. When the dmesg is used to examine or control the kernel ring buffer. When the
@ -94,7 +94,7 @@ config BUSYBOX_CONFIG_FEATURE_DMESG_PRETTY
<6>BIOS-provided physical RAM map: <6>BIOS-provided physical RAM map:
<6> BIOS-e820: 0000000000000000 - 000000000009f000 (usable) <6> BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
config BUSYBOX_CONFIG_EJECT config BUSYBOX_CONFIG_EJECT
bool "eject (4 kb)" bool "eject (4.3 kb)"
default BUSYBOX_DEFAULT_EJECT default BUSYBOX_DEFAULT_EJECT
help help
Used to eject cdroms. (defaults to /dev/cdrom) Used to eject cdroms. (defaults to /dev/cdrom)
@ -107,17 +107,17 @@ config BUSYBOX_CONFIG_FEATURE_EJECT_SCSI
Add the -s option to eject, this allows to eject SCSI-Devices and Add the -s option to eject, this allows to eject SCSI-Devices and
usb-storage devices. usb-storage devices.
config BUSYBOX_CONFIG_FALLOCATE config BUSYBOX_CONFIG_FALLOCATE
bool "fallocate (4.1 kb)" bool "fallocate (4.3 kb)"
default BUSYBOX_DEFAULT_FALLOCATE default BUSYBOX_DEFAULT_FALLOCATE
help help
Preallocate space for files. Preallocate space for files.
config BUSYBOX_CONFIG_FATATTR config BUSYBOX_CONFIG_FATATTR
bool "fatattr (1.9 kb)" bool "fatattr (2.2 kb)"
default BUSYBOX_DEFAULT_FATATTR default BUSYBOX_DEFAULT_FATATTR
help help
fatattr lists or changes the file attributes on a fat file system. fatattr lists or changes the file attributes on a fat file system.
config BUSYBOX_CONFIG_FBSET config BUSYBOX_CONFIG_FBSET
bool "fbset (5.9 kb)" bool "fbset (6.2 kb)"
default BUSYBOX_DEFAULT_FBSET default BUSYBOX_DEFAULT_FBSET
help help
fbset is used to show or change the settings of a Linux frame buffer fbset is used to show or change the settings of a Linux frame buffer
@ -144,12 +144,12 @@ config BUSYBOX_CONFIG_FEATURE_FBSET_READMODE
default BUSYBOX_DEFAULT_FEATURE_FBSET_READMODE /etc/fb.modes, which can be used to set frame buffer default BUSYBOX_DEFAULT_FEATURE_FBSET_READMODE /etc/fb.modes, which can be used to set frame buffer
device to pre-defined video modes. device to pre-defined video modes.
config BUSYBOX_CONFIG_FDFORMAT config BUSYBOX_CONFIG_FDFORMAT
bool "fdformat (4.4 kb)" bool "fdformat (4.7 kb)"
default BUSYBOX_DEFAULT_FDFORMAT default BUSYBOX_DEFAULT_FDFORMAT
help help
fdformat is used to low-level format a floppy disk. fdformat is used to low-level format a floppy disk.
config BUSYBOX_CONFIG_FDISK config BUSYBOX_CONFIG_FDISK
bool "fdisk (37 kb)" bool "fdisk (31 kb)"
default BUSYBOX_DEFAULT_FDISK default BUSYBOX_DEFAULT_FDISK
help help
The fdisk utility is used to divide hard disks into one or more The fdisk utility is used to divide hard disks into one or more
@ -222,18 +222,18 @@ config BUSYBOX_CONFIG_FEATURE_FDISK_ADVANCED
partition, and similarly evil things. Unless you have a very good partition, and similarly evil things. Unless you have a very good
reason you would be wise to leave this disabled. reason you would be wise to leave this disabled.
config BUSYBOX_CONFIG_FINDFS config BUSYBOX_CONFIG_FINDFS
bool "findfs (12 kb)" bool "findfs (11 kb)"
default BUSYBOX_DEFAULT_FINDFS default BUSYBOX_DEFAULT_FINDFS
select BUSYBOX_CONFIG_VOLUMEID select BUSYBOX_CONFIG_VOLUMEID
help help
Prints the name of a filesystem with given label or UUID. Prints the name of a filesystem with given label or UUID.
config BUSYBOX_CONFIG_FLOCK config BUSYBOX_CONFIG_FLOCK
bool "flock (6.3 kb)" bool "flock (6.5 kb)"
default BUSYBOX_DEFAULT_FLOCK default BUSYBOX_DEFAULT_FLOCK
help help
Manage locks from shell scripts Manage locks from shell scripts
config BUSYBOX_CONFIG_FDFLUSH config BUSYBOX_CONFIG_FDFLUSH
bool "fdflush (1.3 kb)" bool "fdflush (1.6 kb)"
default BUSYBOX_DEFAULT_FDFLUSH default BUSYBOX_DEFAULT_FDFLUSH
help help
fdflush is only needed when changing media on slightly-broken fdflush is only needed when changing media on slightly-broken
@ -245,7 +245,7 @@ config BUSYBOX_CONFIG_FDFLUSH
leave this disabled. leave this disabled.
config BUSYBOX_CONFIG_FREERAMDISK config BUSYBOX_CONFIG_FREERAMDISK
bool "freeramdisk (1.3 kb)" bool "freeramdisk (1.6 kb)"
default BUSYBOX_DEFAULT_FREERAMDISK default BUSYBOX_DEFAULT_FREERAMDISK
help help
Linux allows you to create ramdisks. This utility allows you to Linux allows you to create ramdisks. This utility allows you to
@ -265,18 +265,18 @@ config BUSYBOX_CONFIG_FSCK_MINIX
check for and attempt to repair any corruption that occurs to a minix check for and attempt to repair any corruption that occurs to a minix
filesystem. filesystem.
config BUSYBOX_CONFIG_FSFREEZE config BUSYBOX_CONFIG_FSFREEZE
bool "fsfreeze (3.5 kb)" bool "fsfreeze (3.7 kb)"
default BUSYBOX_DEFAULT_FSFREEZE default BUSYBOX_DEFAULT_FSFREEZE
select BUSYBOX_CONFIG_LONG_OPTS select BUSYBOX_CONFIG_LONG_OPTS
help help
Halt new accesses and flush writes on a mounted filesystem. Halt new accesses and flush writes on a mounted filesystem.
config BUSYBOX_CONFIG_FSTRIM config BUSYBOX_CONFIG_FSTRIM
bool "fstrim (4.4 kb)" bool "fstrim (4.6 kb)"
default BUSYBOX_DEFAULT_FSTRIM default BUSYBOX_DEFAULT_FSTRIM
help help
Discard unused blocks on a mounted filesystem. Discard unused blocks on a mounted filesystem.
config BUSYBOX_CONFIG_GETOPT config BUSYBOX_CONFIG_GETOPT
bool "getopt (5.8 kb)" bool "getopt (6 kb)"
default BUSYBOX_DEFAULT_GETOPT default BUSYBOX_DEFAULT_GETOPT
help help
The getopt utility is used to break up (parse) options in command The getopt utility is used to break up (parse) options in command
@ -293,26 +293,27 @@ config BUSYBOX_CONFIG_FEATURE_GETOPT_LONG
help help
Enable support for long options (option -l). Enable support for long options (option -l).
config BUSYBOX_CONFIG_HEXDUMP config BUSYBOX_CONFIG_HEXDUMP
bool "hexdump (8.6 kb)" bool "hexdump (8.7 kb)"
default BUSYBOX_DEFAULT_HEXDUMP default BUSYBOX_DEFAULT_HEXDUMP
help help
The hexdump utility is used to display binary data in a readable The hexdump utility is used to display binary data in a readable
way that is comparable to the output from most hex editors. way that is comparable to the output from most hex editors.
config BUSYBOX_CONFIG_HD config BUSYBOX_CONFIG_HD
bool "hd (7.8 kb)" bool "hd (8.3 kb)"
default BUSYBOX_DEFAULT_HD default BUSYBOX_DEFAULT_HD
help help
hd is an alias to hexdump -C. hd is an alias to hexdump -C.
config BUSYBOX_CONFIG_XXD config BUSYBOX_CONFIG_XXD
bool "xxd (8.9 kb)" bool "xxd (11 kb)"
default BUSYBOX_DEFAULT_XXD default BUSYBOX_DEFAULT_XXD
help help
The xxd utility is used to display binary data in a readable The xxd utility is used to display binary data in a readable
way that is comparable to the output from most hex editors. way that is comparable to the output from most hex editors.
config BUSYBOX_CONFIG_HWCLOCK config BUSYBOX_CONFIG_HWCLOCK
bool "hwclock (5.8 kb)" bool "hwclock (5.9 kb)"
default BUSYBOX_DEFAULT_HWCLOCK default BUSYBOX_DEFAULT_HWCLOCK
select BUSYBOX_CONFIG_LONG_OPTS
help help
The hwclock utility is used to read and set the hardware clock The hwclock utility is used to read and set the hardware clock
on a system. This is primarily used to set the current time on on a system. This is primarily used to set the current time on
@ -331,26 +332,26 @@ config BUSYBOX_CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS
pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO
config BUSYBOX_CONFIG_IONICE config BUSYBOX_CONFIG_IONICE
bool "ionice (3.8 kb)" bool "ionice (4 kb)"
default BUSYBOX_DEFAULT_IONICE default BUSYBOX_DEFAULT_IONICE
help help
Set/set program io scheduling class and priority Set/set program io scheduling class and priority
Requires kernel >= 2.6.13 Requires kernel >= 2.6.13
config BUSYBOX_CONFIG_IPCRM config BUSYBOX_CONFIG_IPCRM
bool "ipcrm (3.2 kb)" bool "ipcrm (3.5 kb)"
default BUSYBOX_DEFAULT_IPCRM default BUSYBOX_DEFAULT_IPCRM
help help
The ipcrm utility allows the removal of System V interprocess The ipcrm utility allows the removal of System V interprocess
communication (IPC) objects and the associated data structures communication (IPC) objects and the associated data structures
from the system. from the system.
config BUSYBOX_CONFIG_IPCS config BUSYBOX_CONFIG_IPCS
bool "ipcs (11 kb)" bool "ipcs (12 kb)"
default BUSYBOX_DEFAULT_IPCS default BUSYBOX_DEFAULT_IPCS
help help
The ipcs utility is used to provide information on the currently The ipcs utility is used to provide information on the currently
allocated System V interprocess (IPC) objects in the system. allocated System V interprocess (IPC) objects in the system.
config BUSYBOX_CONFIG_LAST config BUSYBOX_CONFIG_LAST
bool "last (6.1 kb)" bool "last (7.4 kb)"
default BUSYBOX_DEFAULT_LAST default BUSYBOX_DEFAULT_LAST
depends on BUSYBOX_CONFIG_FEATURE_WTMP depends on BUSYBOX_CONFIG_FEATURE_WTMP
help help
@ -364,14 +365,14 @@ config BUSYBOX_CONFIG_FEATURE_LAST_FANCY
'last' displays detailed information about the last users that 'last' displays detailed information about the last users that
logged into the system (mimics sysvinit last). +900 bytes. logged into the system (mimics sysvinit last). +900 bytes.
config BUSYBOX_CONFIG_LOSETUP config BUSYBOX_CONFIG_LOSETUP
bool "losetup (5.5 kb)" bool "losetup (6.2 kb)"
default BUSYBOX_DEFAULT_LOSETUP default BUSYBOX_DEFAULT_LOSETUP
help help
losetup is used to associate or detach a loop device with a regular 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 file or block device, and to query the status of a loop device. This
version does not currently support enabling data encryption. version does not currently support enabling data encryption.
config BUSYBOX_CONFIG_LSPCI config BUSYBOX_CONFIG_LSPCI
bool "lspci (6.3 kb)" bool "lspci (6.4 kb)"
default BUSYBOX_DEFAULT_LSPCI default BUSYBOX_DEFAULT_LSPCI
help help
lspci is a utility for displaying information about PCI buses in the lspci is a utility for displaying information about PCI buses in the
@ -379,7 +380,7 @@ config BUSYBOX_CONFIG_LSPCI
This version uses sysfs (/sys/bus/pci/devices) only. This version uses sysfs (/sys/bus/pci/devices) only.
config BUSYBOX_CONFIG_LSUSB config BUSYBOX_CONFIG_LSUSB
bool "lsusb (4.2 kb)" bool "lsusb (4.4 kb)"
default BUSYBOX_DEFAULT_LSUSB default BUSYBOX_DEFAULT_LSUSB
help help
lsusb is a utility for displaying information about USB buses in the lsusb is a utility for displaying information about USB buses in the
@ -387,7 +388,7 @@ config BUSYBOX_CONFIG_LSUSB
This version uses sysfs (/sys/bus/usb/devices) only. This version uses sysfs (/sys/bus/usb/devices) only.
config BUSYBOX_CONFIG_MDEV config BUSYBOX_CONFIG_MDEV
bool "mdev (17 kb)" bool "mdev (20 kb)"
default BUSYBOX_DEFAULT_MDEV default BUSYBOX_DEFAULT_MDEV
help help
mdev is a mini-udev implementation for dynamically creating device mdev is a mini-udev implementation for dynamically creating device
@ -454,7 +455,7 @@ config BUSYBOX_CONFIG_FEATURE_MDEV_DAEMON
resources than registering mdev as hotplug helper or using the resources than registering mdev as hotplug helper or using the
uevent applet. uevent applet.
config BUSYBOX_CONFIG_MESG config BUSYBOX_CONFIG_MESG
bool "mesg (1.4 kb)" bool "mesg (1.8 kb)"
default BUSYBOX_DEFAULT_MESG default BUSYBOX_DEFAULT_MESG
help help
Mesg controls access to your terminal by others. It is typically Mesg controls access to your terminal by others. It is typically
@ -505,18 +506,18 @@ config BUSYBOX_CONFIG_MKFS_REISER
Utility to create ReiserFS filesystems. Utility to create ReiserFS filesystems.
Note: this applet needs a lot of testing and polishing. Note: this applet needs a lot of testing and polishing.
config BUSYBOX_CONFIG_MKDOSFS config BUSYBOX_CONFIG_MKDOSFS
bool "mkdosfs (7.2 kb)" bool "mkdosfs (7.6 kb)"
default BUSYBOX_DEFAULT_MKDOSFS default BUSYBOX_DEFAULT_MKDOSFS
help help
Utility to create FAT32 filesystems. Utility to create FAT32 filesystems.
config BUSYBOX_CONFIG_MKFS_VFAT config BUSYBOX_CONFIG_MKFS_VFAT
bool "mkfs.vfat (7.2 kb)" bool "mkfs.vfat (7.6 kb)"
default BUSYBOX_DEFAULT_MKFS_VFAT default BUSYBOX_DEFAULT_MKFS_VFAT
help help
Alias to "mkdosfs". Alias to "mkdosfs".
config BUSYBOX_CONFIG_MKSWAP config BUSYBOX_CONFIG_MKSWAP
bool "mkswap (6.3 kb)" bool "mkswap (6.6 kb)"
default BUSYBOX_DEFAULT_MKSWAP default BUSYBOX_DEFAULT_MKSWAP
help help
The mkswap utility is used to configure a file or disk partition as The mkswap utility is used to configure a file or disk partition as
@ -535,7 +536,7 @@ config BUSYBOX_CONFIG_FEATURE_MKSWAP_UUID
help help
Generate swap spaces with universally unique identifiers. Generate swap spaces with universally unique identifiers.
config BUSYBOX_CONFIG_MORE config BUSYBOX_CONFIG_MORE
bool "more (7 kb)" bool "more (7.2 kb)"
default BUSYBOX_DEFAULT_MORE default BUSYBOX_DEFAULT_MORE
help help
more is a simple utility which allows you to read text one screen more is a simple utility which allows you to read text one screen
@ -544,7 +545,7 @@ config BUSYBOX_CONFIG_MORE
you will probably find this utility very helpful. If you don't have you will probably find this utility very helpful. If you don't have
any need to reading text files, you can leave this disabled. any need to reading text files, you can leave this disabled.
config BUSYBOX_CONFIG_MOUNT config BUSYBOX_CONFIG_MOUNT
bool "mount (23 kb)" bool "mount (24 kb)"
default BUSYBOX_DEFAULT_MOUNT default BUSYBOX_DEFAULT_MOUNT
help help
All files and filesystems in Unix are arranged into one big directory All files and filesystems in Unix are arranged into one big directory
@ -634,7 +635,7 @@ config BUSYBOX_CONFIG_FEATURE_MOUNT_OTHERTAB
help help
Support mount -T (specifying an alternate fstab) Support mount -T (specifying an alternate fstab)
config BUSYBOX_CONFIG_MOUNTPOINT config BUSYBOX_CONFIG_MOUNTPOINT
bool "mountpoint (4.9 kb)" bool "mountpoint (5.1 kb)"
default BUSYBOX_DEFAULT_MOUNTPOINT default BUSYBOX_DEFAULT_MOUNTPOINT
help help
mountpoint checks if the directory is a mountpoint. mountpoint checks if the directory is a mountpoint.
@ -659,12 +660,12 @@ config BUSYBOX_CONFIG_NOLOGIN_DEPENDENCIES
If you know these will be available externally you can If you know these will be available externally you can
disable this option. disable this option.
config BUSYBOX_CONFIG_NSENTER config BUSYBOX_CONFIG_NSENTER
bool "nsenter (6.5 kb)" bool "nsenter (6.8 kb)"
default BUSYBOX_DEFAULT_NSENTER default BUSYBOX_DEFAULT_NSENTER
help help
Run program with namespaces of other processes. Run program with namespaces of other processes.
config BUSYBOX_CONFIG_PIVOT_ROOT config BUSYBOX_CONFIG_PIVOT_ROOT
bool "pivot_root (1.1 kb)" bool "pivot_root (1.4 kb)"
default BUSYBOX_DEFAULT_PIVOT_ROOT default BUSYBOX_DEFAULT_PIVOT_ROOT
help help
The pivot_root utility swaps the mount points for the root filesystem The pivot_root utility swaps the mount points for the root filesystem
@ -675,7 +676,7 @@ config BUSYBOX_CONFIG_PIVOT_ROOT
Note: This is for initrd in linux 2.4. Under initramfs (introduced Note: This is for initrd in linux 2.4. Under initramfs (introduced
in linux 2.6) use switch_root instead. in linux 2.6) use switch_root instead.
config BUSYBOX_CONFIG_RDATE config BUSYBOX_CONFIG_RDATE
bool "rdate (5.6 kb)" bool "rdate (5.9 kb)"
default BUSYBOX_DEFAULT_RDATE default BUSYBOX_DEFAULT_RDATE
help help
The rdate utility allows you to synchronize the date and time of your The rdate utility allows you to synchronize the date and time of your
@ -683,44 +684,44 @@ config BUSYBOX_CONFIG_RDATE
the RFC868 protocol, which is built into the inetd daemon on most the RFC868 protocol, which is built into the inetd daemon on most
systems. systems.
config BUSYBOX_CONFIG_RDEV config BUSYBOX_CONFIG_RDEV
bool "rdev (1.8 kb)" bool "rdev (2.1 kb)"
default BUSYBOX_DEFAULT_RDEV default BUSYBOX_DEFAULT_RDEV
help help
Print the device node associated with the filesystem mounted at '/'. Print the device node associated with the filesystem mounted at '/'.
config BUSYBOX_CONFIG_READPROFILE config BUSYBOX_CONFIG_READPROFILE
bool "readprofile (7.1 kb)" bool "readprofile (7.5 kb)"
default BUSYBOX_DEFAULT_READPROFILE default BUSYBOX_DEFAULT_READPROFILE
help help
This allows you to parse /proc/profile for basic profiling. This allows you to parse /proc/profile for basic profiling.
config BUSYBOX_CONFIG_RENICE config BUSYBOX_CONFIG_RENICE
bool "renice (4.2 kb)" bool "renice (4.4 kb)"
default BUSYBOX_DEFAULT_RENICE default BUSYBOX_DEFAULT_RENICE
help help
Renice alters the scheduling priority of one or more running Renice alters the scheduling priority of one or more running
processes. processes.
config BUSYBOX_CONFIG_REV config BUSYBOX_CONFIG_REV
bool "rev (4.4 kb)" bool "rev (4.6 kb)"
default BUSYBOX_DEFAULT_REV default BUSYBOX_DEFAULT_REV
help help
Reverse lines of a file or files. Reverse lines of a file or files.
config BUSYBOX_CONFIG_RTCWAKE config BUSYBOX_CONFIG_RTCWAKE
bool "rtcwake (6.8 kb)" bool "rtcwake (7.5 kb)"
default BUSYBOX_DEFAULT_RTCWAKE default BUSYBOX_DEFAULT_RTCWAKE
help help
Enter a system sleep state until specified wakeup time. Enter a system sleep state until specified wakeup time.
config BUSYBOX_CONFIG_SCRIPT config BUSYBOX_CONFIG_SCRIPT
bool "script (8.6 kb)" bool "script (8.8 kb)"
default BUSYBOX_DEFAULT_SCRIPT default BUSYBOX_DEFAULT_SCRIPT
help help
The script makes typescript of terminal session. The script makes typescript of terminal session.
config BUSYBOX_CONFIG_SCRIPTREPLAY config BUSYBOX_CONFIG_SCRIPTREPLAY
bool "scriptreplay (2.4 kb)" bool "scriptreplay (2.6 kb)"
default BUSYBOX_DEFAULT_SCRIPTREPLAY default BUSYBOX_DEFAULT_SCRIPTREPLAY
help help
This program replays a typescript, using timing information This program replays a typescript, using timing information
given by script -t. given by script -t.
config BUSYBOX_CONFIG_SETARCH config BUSYBOX_CONFIG_SETARCH
bool "setarch (3.6 kb)" bool "setarch (3.8 kb)"
default BUSYBOX_DEFAULT_SETARCH default BUSYBOX_DEFAULT_SETARCH
help help
The linux32 utility is used to create a 32bit environment for the The linux32 utility is used to create a 32bit environment for the
@ -729,18 +730,18 @@ config BUSYBOX_CONFIG_SETARCH
(like amd64/x86, ppc64/ppc, sparc64/sparc, etc...). (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...).
config BUSYBOX_CONFIG_LINUX32 config BUSYBOX_CONFIG_LINUX32
bool "linux32 (3.3 kb)" bool "linux32 (3.6 kb)"
default BUSYBOX_DEFAULT_LINUX32 default BUSYBOX_DEFAULT_LINUX32
help help
Alias to "setarch linux32". Alias to "setarch linux32".
config BUSYBOX_CONFIG_LINUX64 config BUSYBOX_CONFIG_LINUX64
bool "linux64 (3.3 kb)" bool "linux64 (3.5 kb)"
default BUSYBOX_DEFAULT_LINUX64 default BUSYBOX_DEFAULT_LINUX64
help help
Alias to "setarch linux64". Alias to "setarch linux64".
config BUSYBOX_CONFIG_SETPRIV config BUSYBOX_CONFIG_SETPRIV
bool "setpriv (6.6 kb)" bool "setpriv (6.9 kb)"
default BUSYBOX_DEFAULT_SETPRIV default BUSYBOX_DEFAULT_SETPRIV
select BUSYBOX_CONFIG_LONG_OPTS select BUSYBOX_CONFIG_LONG_OPTS
help help
@ -775,7 +776,7 @@ config BUSYBOX_CONFIG_FEATURE_SETPRIV_CAPABILITY_NAMES
this option allows using the human-readable names in addition to this option allows using the human-readable names in addition to
the index-based names. the index-based names.
config BUSYBOX_CONFIG_SETSID config BUSYBOX_CONFIG_SETSID
bool "setsid (3.6 kb)" bool "setsid (3.8 kb)"
default BUSYBOX_DEFAULT_SETSID default BUSYBOX_DEFAULT_SETSID
help help
setsid runs a program in a new session setsid runs a program in a new session
@ -818,7 +819,7 @@ config BUSYBOX_CONFIG_FEATURE_SWAPONOFF_LABEL
This allows for specifying a device by label or uuid, rather than by This allows for specifying a device by label or uuid, rather than by
name. This feature utilizes the same functionality as blkid/findfs. name. This feature utilizes the same functionality as blkid/findfs.
config BUSYBOX_CONFIG_SWITCH_ROOT config BUSYBOX_CONFIG_SWITCH_ROOT
bool "switch_root (5.5 kb)" bool "switch_root (5.7 kb)"
default BUSYBOX_DEFAULT_SWITCH_ROOT default BUSYBOX_DEFAULT_SWITCH_ROOT
help help
The switch_root utility is used from initramfs to select a new The switch_root utility is used from initramfs to select a new
@ -837,7 +838,7 @@ config BUSYBOX_CONFIG_SWITCH_ROOT
list of active mount points. That's why. list of active mount points. That's why.
config BUSYBOX_CONFIG_TASKSET config BUSYBOX_CONFIG_TASKSET
bool "taskset (4.2 kb)" bool "taskset (5.6 kb)"
default BUSYBOX_DEFAULT_TASKSET default BUSYBOX_DEFAULT_TASKSET
help help
Retrieve or set a processes's CPU affinity. Retrieve or set a processes's CPU affinity.
@ -860,7 +861,7 @@ config BUSYBOX_CONFIG_FEATURE_TASKSET_CPULIST
Add support for taking/printing affinity as CPU list when '-c' Add support for taking/printing affinity as CPU list when '-c'
option is used. For example, it prints '0-3,7' instead of mask '8f'. option is used. For example, it prints '0-3,7' instead of mask '8f'.
config BUSYBOX_CONFIG_UEVENT config BUSYBOX_CONFIG_UEVENT
bool "uevent (3.1 kb)" bool "uevent (3.5 kb)"
default BUSYBOX_DEFAULT_UEVENT default BUSYBOX_DEFAULT_UEVENT
help help
uevent is a netlink listener for kernel uevent notifications uevent is a netlink listener for kernel uevent notifications
@ -881,14 +882,14 @@ config BUSYBOX_CONFIG_FEATURE_UMOUNT_ALL
help help
Support -a option to unmount all currently mounted filesystems. Support -a option to unmount all currently mounted filesystems.
config BUSYBOX_CONFIG_UNSHARE config BUSYBOX_CONFIG_UNSHARE
bool "unshare (7.2 kb)" bool "unshare (7.3 kb)"
default BUSYBOX_DEFAULT_UNSHARE default BUSYBOX_DEFAULT_UNSHARE
depends on !BUSYBOX_CONFIG_NOMMU depends on !BUSYBOX_CONFIG_NOMMU
select BUSYBOX_CONFIG_LONG_OPTS select BUSYBOX_CONFIG_LONG_OPTS
help help
Run program with some namespaces unshared from parent. Run program with some namespaces unshared from parent.
config BUSYBOX_CONFIG_WALL config BUSYBOX_CONFIG_WALL
bool "wall (2.6 kb)" bool "wall (2.9 kb)"
default BUSYBOX_DEFAULT_WALL default BUSYBOX_DEFAULT_WALL
depends on BUSYBOX_CONFIG_FEATURE_UTMP depends on BUSYBOX_CONFIG_FEATURE_UTMP
help help

View File

@ -0,0 +1,14 @@
Index: busybox-1.37.0/libbb/hash_md5_sha.c
===================================================================
--- busybox-1.37.0.orig/libbb/hash_md5_sha.c
+++ busybox-1.37.0/libbb/hash_md5_sha.c
@@ -1313,7 +1313,9 @@ unsigned FAST_FUNC sha1_end(sha1_ctx_t *
hash_size = 8;
if (ctx->process_block == sha1_process_block64
#if ENABLE_SHA1_HWACCEL
+# if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|| ctx->process_block == sha1_process_block64_shaNI
+# endif
#endif
) {
hash_size = 5;

View File

@ -1,6 +1,6 @@
--- a/networking/udhcp/dhcpc.c --- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c
@@ -722,6 +722,7 @@ static int bcast_or_ucast(struct dhcp_pa @@ -711,6 +711,7 @@ static int bcast_or_ucast(struct dhcp_pa
static NOINLINE int send_discover(uint32_t requested) static NOINLINE int send_discover(uint32_t requested)
{ {
struct dhcp_packet packet; struct dhcp_packet packet;
@ -8,7 +8,7 @@
/* Fill in: op, htype, hlen, cookie, chaddr fields, /* Fill in: op, htype, hlen, cookie, chaddr fields,
* xid field, message type option: * xid field, message type option:
@@ -736,6 +737,7 @@ static NOINLINE int send_discover(uint32 @@ -725,6 +726,7 @@ static NOINLINE int send_discover(uint32
*/ */
add_client_options(&packet); add_client_options(&packet);

View File

@ -1,6 +1,6 @@
--- a/networking/udhcp/dhcpc.c --- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c
@@ -1384,6 +1384,12 @@ int udhcpc_main(int argc UNUSED_PARAM, c @@ -1374,6 +1374,12 @@ int udhcpc_main(int argc UNUSED_PARAM, c
struct pollfd pfds[2]; struct pollfd pfds[2];
struct dhcp_packet packet; struct dhcp_packet packet;

View File

@ -1,6 +1,6 @@
--- a/networking/libiproute/iplink.c --- a/networking/libiproute/iplink.c
+++ b/networking/libiproute/iplink.c +++ b/networking/libiproute/iplink.c
@@ -683,7 +683,7 @@ static int do_add_or_delete(char **argv, @@ -953,7 +953,7 @@ static int do_add_or_delete(char **argv,
} }
xrtnl_open(&rth); xrtnl_open(&rth);
ll_init_map(&rth); ll_init_map(&rth);

View File

@ -29,7 +29,7 @@ Forwarded: http://lists.busybox.net/pipermail/busybox/2022-October/089911.html
--- ---
--- a/networking/nslookup.c --- a/networking/nslookup.c
+++ b/networking/nslookup.c +++ b/networking/nslookup.c
@@ -978,6 +978,10 @@ int nslookup_main(int argc UNUSED_PARAM, @@ -1370,6 +1370,10 @@ int nslookup_main(int argc UNUSED_PARAM,
} }
} }