build system: drop PLATFORM_LINUX

PLATFORM_LINUX is a hidden configuration option which is disabled by
default and enabled at over a hundred locations for features that are
deemed to be Linux specific.

The only effect of PLATFORM_LINUX is to control compilation of
libbb/match_fstype.c.  This file is only needed by mount and umount.

Remove all references to PLATFORM_LINUX and compile match_fstype.c
if mount or umount is enabled.

Signed-off-by: Ron Yorston <rmy@pobox.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Ron Yorston 2020-08-04 08:24:19 +01:00 committed by Denys Vlasenko
parent 9914d8b861
commit 5c69ad0ecd
109 changed files with 2 additions and 146 deletions

View File

@ -312,7 +312,6 @@ config BUSYBOX_EXEC_PATH
config SELINUX config SELINUX
bool "Support NSA Security Enhanced Linux" bool "Support NSA Security Enhanced Linux"
default n default n
select PLATFORM_LINUX
help help
Enable support for SELinux in applets ls, ps, and id. Also provide Enable support for SELinux in applets ls, ps, and id. Also provide
the option of compiling in SELinux applets. the option of compiling in SELinux applets.
@ -358,17 +357,6 @@ config FEATURE_SYSLOG
#This option is auto-selected when you select any applet which may #This option is auto-selected when you select any applet which may
#send its output to syslog. You do not need to select it manually. #send its output to syslog. You do not need to select it manually.
config PLATFORM_LINUX
bool #No description makes it a hidden option
default n
#help
#For the most part, busybox requires only POSIX compatibility
#from the target system, but some applets and features use
#Linux-specific interfaces.
#
#This is automatically selected if any applet or feature requires
#Linux-specific interfaces. You do not need to select it manually.
comment 'Build Options' comment 'Build Options'
config STATIC config STATIC

View File

@ -16,7 +16,6 @@ CONFIG_HAVE_DOT_CONFIG=y
# CONFIG_EXTRA_COMPAT is not set # CONFIG_EXTRA_COMPAT is not set
# CONFIG_INCLUDE_SUSv2 is not set # CONFIG_INCLUDE_SUSv2 is not set
# CONFIG_USE_PORTABLE_CODE is not set # CONFIG_USE_PORTABLE_CODE is not set
CONFIG_PLATFORM_LINUX=y
CONFIG_FEATURE_BUFFERS_USE_MALLOC=y CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set # CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set # CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set

View File

@ -87,7 +87,6 @@ CONFIG_DESKTOP=y
# CONFIG_EXTRA_COMPAT is not set # CONFIG_EXTRA_COMPAT is not set
CONFIG_INCLUDE_SUSv2=y CONFIG_INCLUDE_SUSv2=y
# CONFIG_USE_PORTABLE_CODE is not set # CONFIG_USE_PORTABLE_CODE is not set
CONFIG_PLATFORM_LINUX=y
CONFIG_FEATURE_BUFFERS_USE_MALLOC=y CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set # CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set # CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set

View File

@ -16,7 +16,6 @@ CONFIG_DESKTOP=y
# CONFIG_EXTRA_COMPAT is not set # CONFIG_EXTRA_COMPAT is not set
# CONFIG_INCLUDE_SUSv2 is not set # CONFIG_INCLUDE_SUSv2 is not set
# CONFIG_USE_PORTABLE_CODE is not set # CONFIG_USE_PORTABLE_CODE is not set
CONFIG_PLATFORM_LINUX=y
CONFIG_FEATURE_BUFFERS_USE_MALLOC=y CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set # CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set # CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set

View File

@ -16,7 +16,6 @@ CONFIG_DESKTOP=y
# CONFIG_EXTRA_COMPAT is not set # CONFIG_EXTRA_COMPAT is not set
# CONFIG_INCLUDE_SUSv2 is not set # CONFIG_INCLUDE_SUSv2 is not set
# CONFIG_USE_PORTABLE_CODE is not set # CONFIG_USE_PORTABLE_CODE is not set
CONFIG_PLATFORM_LINUX=y
CONFIG_FEATURE_BUFFERS_USE_MALLOC=y CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set # CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set # CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set

View File

@ -16,7 +16,6 @@ CONFIG_DESKTOP=y
# CONFIG_EXTRA_COMPAT is not set # CONFIG_EXTRA_COMPAT is not set
CONFIG_INCLUDE_SUSv2=y CONFIG_INCLUDE_SUSv2=y
# CONFIG_USE_PORTABLE_CODE is not set # CONFIG_USE_PORTABLE_CODE is not set
CONFIG_PLATFORM_LINUX=y
CONFIG_FEATURE_BUFFERS_USE_MALLOC=y CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set # CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set # CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set

View File

@ -16,7 +16,6 @@ CONFIG_HAVE_DOT_CONFIG=y
# CONFIG_EXTRA_COMPAT is not set # CONFIG_EXTRA_COMPAT is not set
CONFIG_INCLUDE_SUSv2=y CONFIG_INCLUDE_SUSv2=y
CONFIG_USE_PORTABLE_CODE=y CONFIG_USE_PORTABLE_CODE=y
# CONFIG_PLATFORM_LINUX is not set
CONFIG_FEATURE_BUFFERS_USE_MALLOC=y CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set # CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set # CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set

View File

@ -9,7 +9,6 @@
//config:config CHVT //config:config CHVT
//config: bool "chvt (2 kb)" //config: bool "chvt (2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program is used to change to another terminal. //config: This program is used to change to another terminal.
//config: Example: chvt 4 (change to terminal /dev/tty4) //config: Example: chvt 4 (change to terminal /dev/tty4)

View File

@ -10,7 +10,6 @@
//config:config DEALLOCVT //config:config DEALLOCVT
//config: bool "deallocvt (1.9 kb)" //config: bool "deallocvt (1.9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program deallocates unused virtual consoles. //config: This program deallocates unused virtual consoles.

View File

@ -9,7 +9,6 @@
//config:config DUMPKMAP //config:config DUMPKMAP
//config: bool "dumpkmap (1.6 kb)" //config: bool "dumpkmap (1.6 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program dumps the kernel's keyboard translation table to //config: This program dumps the kernel's keyboard translation table to
//config: stdout, in binary format. You can then use loadkmap to load it. //config: stdout, in binary format. You can then use loadkmap to load it.

View File

@ -9,7 +9,6 @@
//config:config FGCONSOLE //config:config FGCONSOLE
//config: bool "fgconsole (1.5 kb)" //config: bool "fgconsole (1.5 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program prints active (foreground) console number. //config: This program prints active (foreground) console number.

View File

@ -11,7 +11,6 @@
//config:config KBD_MODE //config:config KBD_MODE
//config: bool "kbd_mode (4.1 kb)" //config: bool "kbd_mode (4.1 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program reports and sets keyboard mode. //config: This program reports and sets keyboard mode.

View File

@ -12,14 +12,12 @@
//config:config LOADFONT //config:config LOADFONT
//config: bool "loadfont (5.2 kb)" //config: bool "loadfont (5.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program loads a console font from standard input. //config: This program loads a console font from standard input.
//config: //config:
//config:config SETFONT //config:config SETFONT
//config: bool "setfont (24 kb)" //config: bool "setfont (24 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Allows to load console screen map. Useful for i18n. //config: Allows to load console screen map. Useful for i18n.
//config: //config:

View File

@ -9,7 +9,6 @@
//config:config LOADKMAP //config:config LOADKMAP
//config: bool "loadkmap (1.8 kb)" //config: bool "loadkmap (1.8 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program loads a keyboard translation table from //config: This program loads a keyboard translation table from
//config: standard input. //config: standard input.

View File

@ -10,7 +10,6 @@
//config:config OPENVT //config:config OPENVT
//config: bool "openvt (7.2 kb)" //config: bool "openvt (7.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program is used to start a command on an unused //config: This program is used to start a command on an unused
//config: virtual terminal. //config: virtual terminal.

View File

@ -10,7 +10,6 @@
//config:config SETCONSOLE //config:config SETCONSOLE
//config: bool "setconsole (3.6 kb)" //config: bool "setconsole (3.6 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Redirect writes to /dev/console to another device, //config: Redirect writes to /dev/console to another device,
//config: like the current tty while logged in via telnet. //config: like the current tty while logged in via telnet.

View File

@ -11,7 +11,6 @@
//config:config SETKEYCODES //config:config SETKEYCODES
//config: bool "setkeycodes (2.1 kb)" //config: bool "setkeycodes (2.1 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program loads entries into the kernel's scancode-to-keycode //config: This program loads entries into the kernel's scancode-to-keycode
//config: map, allowing unusual keyboards to generate usable keycodes. //config: map, allowing unusual keyboards to generate usable keycodes.

View File

@ -11,7 +11,6 @@
//config:config SETLOGCONS //config:config SETLOGCONS
//config: bool "setlogcons (1.8 kb)" //config: bool "setlogcons (1.8 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This program redirects the output console of kernel messages. //config: This program redirects the output console of kernel messages.

View File

@ -9,7 +9,6 @@
//config:config SHOWKEY //config:config SHOWKEY
//config: bool "showkey (4.7 kb)" //config: bool "showkey (4.7 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Shows keys pressed. //config: Shows keys pressed.

View File

@ -37,7 +37,6 @@
//config: bool "Support %[num]N nanosecond format specifier" //config: bool "Support %[num]N nanosecond format specifier"
//config: default n # stat's nanosecond field is a bit non-portable //config: default n # stat's nanosecond field is a bit non-portable
//config: depends on DATE //config: depends on DATE
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Support %[num]N format specifier. Adds ~250 bytes of code. //config: Support %[num]N format specifier. Adds ~250 bytes of code.
//config: //config:

View File

@ -31,7 +31,6 @@
//config: bool "Enable display of filesystem status (-f)" //config: bool "Enable display of filesystem status (-f)"
//config: default y //config: default y
//config: depends on STAT //config: depends on STAT
//config: select PLATFORM_LINUX # statfs()
//config: help //config: help
//config: Without this, stat will not support the '-f' option to display //config: Without this, stat will not support the '-f' option to display
//config: information about filesystem status. //config: information about filesystem status.

View File

@ -12,7 +12,6 @@
//config:config LSATTR //config:config LSATTR
//config: bool "lsattr (5.5 kb)" //config: bool "lsattr (5.5 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: lsattr lists the file attributes on a second extended file system. //config: lsattr lists the file attributes on a second extended file system.

View File

@ -8,7 +8,6 @@
//config:config RUN_INIT //config:config RUN_INIT
//config: bool "run-init (7.7 kb)" //config: bool "run-init (7.7 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The run-init utility is used from initramfs to select a new //config: The run-init utility is used from initramfs to select a new
//config: root device. Under initramfs, you have to use this instead of //config: root device. Under initramfs, you have to use this instead of

View File

@ -334,7 +334,6 @@ config FEATURE_VERBOSE_CP_MESSAGE
config FEATURE_USE_SENDFILE config FEATURE_USE_SENDFILE
bool "Use sendfile system call" bool "Use sendfile system call"
default y default y
select PLATFORM_LINUX
help help
When enabled, busybox will use the kernel sendfile() function When enabled, busybox will use the kernel sendfile() function
instead of read/write loops to copy data between file descriptors instead of read/write loops to copy data between file descriptors
@ -376,7 +375,6 @@ config FEATURE_SKIP_ROOTFS
config MONOTONIC_SYSCALL config MONOTONIC_SYSCALL
bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" bool "Use clock_gettime(CLOCK_MONOTONIC) syscall"
default y default y
select PLATFORM_LINUX
help help
Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring
time intervals (time, ping, traceroute etc need this). time intervals (time, ping, traceroute etc need this).

View File

@ -112,7 +112,8 @@ lib-y += xgethostbyname.o
lib-y += xreadlink.o lib-y += xreadlink.o
lib-y += xrealloc_vector.o lib-y += xrealloc_vector.o
lib-$(CONFIG_PLATFORM_LINUX) += match_fstype.o lib-$(CONFIG_MOUNT) += match_fstype.o
lib-$(CONFIG_UMOUNT) += match_fstype.o
lib-$(CONFIG_FEATURE_UTMP) += utmp.o lib-$(CONFIG_FEATURE_UTMP) += utmp.o

View File

@ -13,7 +13,6 @@
//config:config ADJTIMEX //config:config ADJTIMEX
//config: bool "adjtimex (4.7 kb)" //config: bool "adjtimex (4.7 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Adjtimex reads and optionally sets adjustment parameters for //config: Adjtimex reads and optionally sets adjustment parameters for
//config: the Linux clock adjustment algorithm. //config: the Linux clock adjustment algorithm.

View File

@ -9,7 +9,6 @@
//config:config BEEP //config:config BEEP
//config: bool "beep (2.4 kb)" //config: bool "beep (2.4 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The beep applets beeps in a given freq/Hz. //config: The beep applets beeps in a given freq/Hz.
//config: //config:

View File

@ -12,7 +12,6 @@
//config:config CONSPY //config:config CONSPY
//config: bool "conspy (10 kb)" //config: bool "conspy (10 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: A text-mode VNC like program for Linux virtual terminals. //config: A text-mode VNC like program for Linux virtual terminals.
//config: example: conspy NUM shared access to console num //config: example: conspy NUM shared access to console num

View File

@ -56,7 +56,6 @@
//config:config DEVFSD //config:config DEVFSD
//config: bool "devfsd (obsolete)" //config: bool "devfsd (obsolete)"
//config: default n //config: default n
//config: select PLATFORM_LINUX
//config: select FEATURE_SYSLOG //config: select FEATURE_SYSLOG
//config: help //config: help
//config: This is deprecated and should NOT be used anymore. //config: This is deprecated and should NOT be used anymore.
@ -99,7 +98,6 @@
//config:config FEATURE_DEVFS //config:config FEATURE_DEVFS
//config: bool "Use devfs names for all devices (obsolete)" //config: bool "Use devfs names for all devices (obsolete)"
//config: default n //config: default n
//config: select PLATFORM_LINUX
//config: help //config: help
//config: This is obsolete and should NOT be used anymore. //config: This is obsolete and should NOT be used anymore.
//config: Use linux >= 2.6 (optionally with hotplug) and mdev instead! //config: Use linux >= 2.6 (optionally with hotplug) and mdev instead!

View File

@ -23,7 +23,6 @@
//config:config FBSPLASH //config:config FBSPLASH
//config: bool "fbsplash (26 kb)" //config: bool "fbsplash (26 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Shows splash image and progress bar on framebuffer device. //config: Shows splash image and progress bar on framebuffer device.
//config: Can be used during boot phase of an embedded device. //config: Can be used during boot phase of an embedded device.

View File

@ -14,7 +14,6 @@
//config:config HDPARM //config:config HDPARM
//config: bool "hdparm (25 kb)" //config: bool "hdparm (25 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Get/Set hard drive parameters. Primarily intended for ATA //config: Get/Set hard drive parameters. Primarily intended for ATA
//config: drives. //config: drives.

View File

@ -11,35 +11,30 @@
//config:config I2CGET //config:config I2CGET
//config: bool "i2cget (5.5 kb)" //config: bool "i2cget (5.5 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Read from I2C/SMBus chip registers. //config: Read from I2C/SMBus chip registers.
//config: //config:
//config:config I2CSET //config:config I2CSET
//config: bool "i2cset (6.7 kb)" //config: bool "i2cset (6.7 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Set I2C registers. //config: Set I2C registers.
//config: //config:
//config:config I2CDUMP //config:config I2CDUMP
//config: bool "i2cdump (7.1 kb)" //config: bool "i2cdump (7.1 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Examine I2C registers. //config: Examine I2C registers.
//config: //config:
//config:config I2CDETECT //config:config I2CDETECT
//config: bool "i2cdetect (7.1 kb)" //config: bool "i2cdetect (7.1 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Detect I2C chips. //config: Detect I2C chips.
//config: //config:
//config:config I2CTRANSFER //config:config I2CTRANSFER
//config: bool "i2ctransfer (4.0 kb)" //config: bool "i2ctransfer (4.0 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Send user-defined I2C messages in one transfer. //config: Send user-defined I2C messages in one transfer.
//config: //config:

View File

@ -9,7 +9,6 @@
//config:config LSSCSI //config:config LSSCSI
//config: bool "lsscsi (2.5 kb)" //config: bool "lsscsi (2.5 kb)"
//config: default y //config: default y
//config: #select PLATFORM_LINUX
//config: help //config: help
//config: lsscsi is a utility for displaying information about SCSI buses in the //config: lsscsi is a utility for displaying information about SCSI buses in the
//config: system and devices connected to them. //config: system and devices connected to them.

View File

@ -10,14 +10,12 @@
//config:config NANDWRITE //config:config NANDWRITE
//config: bool "nandwrite (4.8 kb)" //config: bool "nandwrite (4.8 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Write to the specified MTD device, with bad blocks awareness //config: Write to the specified MTD device, with bad blocks awareness
//config: //config:
//config:config NANDDUMP //config:config NANDDUMP
//config: bool "nanddump (5.2 kb)" //config: bool "nanddump (5.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Dump the content of raw NAND chip //config: Dump the content of raw NAND chip

View File

@ -7,7 +7,6 @@
//config:config PARTPROBE //config:config PARTPROBE
//config: bool "partprobe (3.5 kb)" //config: bool "partprobe (3.5 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Ask kernel to rescan partition table. //config: Ask kernel to rescan partition table.

View File

@ -9,7 +9,6 @@
//config:config RAIDAUTORUN //config:config RAIDAUTORUN
//config: bool "raidautorun (1.3 kb)" //config: bool "raidautorun (1.3 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: raidautorun tells the kernel md driver to //config: raidautorun tells the kernel md driver to
//config: search and start RAID arrays. //config: search and start RAID arrays.

View File

@ -13,7 +13,6 @@
//config: bool "readahead (1.5 kb)" //config: bool "readahead (1.5 kb)"
//config: default y //config: default y
//config: depends on LFS //config: depends on LFS
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Preload the files listed on the command line into RAM cache so that //config: Preload the files listed on the command line into RAM cache so that
//config: subsequent reads on these files will not block on disk I/O. //config: subsequent reads on these files will not block on disk I/O.

View File

@ -9,7 +9,6 @@
//config:config RFKILL //config:config RFKILL
//config: bool "rfkill (4.4 kb)" //config: bool "rfkill (4.4 kb)"
//config: default n # doesn't build on Ubuntu 9.04 //config: default n # doesn't build on Ubuntu 9.04
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Enable/disable wireless devices. //config: Enable/disable wireless devices.
//config: //config:

View File

@ -17,7 +17,6 @@
//config:config RX //config:config RX
//config: bool "rx (2.9 kb)" //config: bool "rx (2.9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Receive files using the Xmodem protocol. //config: Receive files using the Xmodem protocol.

View File

@ -10,7 +10,6 @@
//config:config SETSERIAL //config:config SETSERIAL
//config: bool "setserial (6.9 kb)" //config: bool "setserial (6.9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Retrieve or set Linux serial port. //config: Retrieve or set Linux serial port.

View File

@ -6,42 +6,36 @@
//config:config UBIATTACH //config:config UBIATTACH
//config: bool "ubiattach (4.2 kb)" //config: bool "ubiattach (4.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Attach MTD device to an UBI device. //config: Attach MTD device to an UBI device.
//config: //config:
//config:config UBIDETACH //config:config UBIDETACH
//config: bool "ubidetach (4.1 kb)" //config: bool "ubidetach (4.1 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Detach MTD device from an UBI device. //config: Detach MTD device from an UBI device.
//config: //config:
//config:config UBIMKVOL //config:config UBIMKVOL
//config: bool "ubimkvol (5.3 kb)" //config: bool "ubimkvol (5.3 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Create a UBI volume. //config: Create a UBI volume.
//config: //config:
//config:config UBIRMVOL //config:config UBIRMVOL
//config: bool "ubirmvol (4.9 kb)" //config: bool "ubirmvol (4.9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Delete a UBI volume. //config: Delete a UBI volume.
//config: //config:
//config:config UBIRSVOL //config:config UBIRSVOL
//config: bool "ubirsvol (4.2 kb)" //config: bool "ubirsvol (4.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Resize a UBI volume. //config: Resize a UBI volume.
//config: //config:
//config:config UBIUPDATEVOL //config:config UBIUPDATEVOL
//config: bool "ubiupdatevol (5.2 kb)" //config: bool "ubiupdatevol (5.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Update a UBI volume. //config: Update a UBI volume.

View File

@ -9,7 +9,6 @@
//config:config UBIRENAME //config:config UBIRENAME
//config: bool "ubirename (2.4 kb)" //config: bool "ubirename (2.4 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Utility to rename UBI volumes //config: Utility to rename UBI volumes

View File

@ -11,7 +11,6 @@
//config:config WATCHDOG //config:config WATCHDOG
//config: bool "watchdog (5.3 kb)" //config: bool "watchdog (5.3 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The watchdog utility is used with hardware or software watchdog //config: The watchdog utility is used with hardware or software watchdog
//config: device drivers. It opens the specified watchdog device special file //config: device drivers. It opens the specified watchdog device special file

View File

@ -10,7 +10,6 @@
//config:config DEPMOD //config:config DEPMOD
//config: bool "depmod (27 kb)" //config: bool "depmod (27 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: depmod generates modules.dep (and potentially modules.alias //config: depmod generates modules.dep (and potentially modules.alias
//config: and modules.symbols) that contain dependency information //config: and modules.symbols) that contain dependency information

View File

@ -9,7 +9,6 @@
//config:config INSMOD //config:config INSMOD
//config: bool "insmod (22 kb)" //config: bool "insmod (22 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: insmod is used to load specified modules in the running kernel. //config: insmod is used to load specified modules in the running kernel.

View File

@ -10,7 +10,6 @@
//config:config LSMOD //config:config LSMOD
//config: bool "lsmod (1.9 kb)" //config: bool "lsmod (1.9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: lsmod is used to display a list of loaded modules. //config: lsmod is used to display a list of loaded modules.
//config: //config:

View File

@ -8,7 +8,6 @@
//config:config MODINFO //config:config MODINFO
//config: bool "modinfo (24 kb)" //config: bool "modinfo (24 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Show information about a Linux Kernel module //config: Show information about a Linux Kernel module

View File

@ -10,7 +10,6 @@
//config:config MODPROBE //config:config MODPROBE
//config: bool "modprobe (28 kb)" //config: bool "modprobe (28 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Handle the loading of modules, and their dependencies on a high //config: Handle the loading of modules, and their dependencies on a high
//config: level. //config: level.

View File

@ -10,7 +10,6 @@
//config:config RMMOD //config:config RMMOD
//config: bool "rmmod (3.3 kb)" //config: bool "rmmod (3.3 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: rmmod is used to unload specified modules from the kernel. //config: rmmod is used to unload specified modules from the kernel.

View File

@ -15,7 +15,6 @@
//config:config ARP //config:config ARP
//config: bool "arp (10 kb)" //config: bool "arp (10 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Manipulate the system ARP cache. //config: Manipulate the system ARP cache.

View File

@ -8,7 +8,6 @@
//config:config ARPING //config:config ARPING
//config: bool "arping (9 kb)" //config: bool "arping (9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Ping hosts by ARP packets. //config: Ping hosts by ARP packets.

View File

@ -12,7 +12,6 @@
//config:config BRCTL //config:config BRCTL
//config: bool "brctl (4.7 kb)" //config: bool "brctl (4.7 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Manage ethernet bridges. //config: Manage ethernet bridges.
//config: Supports addbr/delbr and addif/delif. //config: Supports addbr/delbr and addif/delif.

View File

@ -66,7 +66,6 @@
//config:config ETHER_WAKE //config:config ETHER_WAKE
//config: bool "ether-wake (4.9 kb)" //config: bool "ether-wake (4.9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Send a magic packet to wake up sleeping machines. //config: Send a magic packet to wake up sleeping machines.

View File

@ -27,7 +27,6 @@
//config:config IFCONFIG //config:config IFCONFIG
//config: bool "ifconfig (12 kb)" //config: bool "ifconfig (12 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Ifconfig is used to configure the kernel-resident network interfaces. //config: Ifconfig is used to configure the kernel-resident network interfaces.
//config: //config:

View File

@ -100,7 +100,6 @@
//config:config IFENSLAVE //config:config IFENSLAVE
//config: bool "ifenslave (13 kb)" //config: bool "ifenslave (13 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Userspace application to bind several interfaces //config: Userspace application to bind several interfaces
//config: to a logical interface (use with kernel bonding driver). //config: to a logical interface (use with kernel bonding driver).

View File

@ -9,7 +9,6 @@
//config:config IFPLUGD //config:config IFPLUGD
//config: bool "ifplugd (10 kb)" //config: bool "ifplugd (10 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Network interface plug detection daemon. //config: Network interface plug detection daemon.

View File

@ -11,7 +11,6 @@
//config:config IP //config:config IP
//config: bool "ip (35 kb)" //config: bool "ip (35 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The "ip" applet is a TCP/IP interface configuration and routing //config: The "ip" applet is a TCP/IP interface configuration and routing
//config: utility. //config: utility.
@ -23,7 +22,6 @@
//config: bool "ipaddr (14 kb)" //config: bool "ipaddr (14 kb)"
//config: default y //config: default y
//config: select FEATURE_IP_ADDRESS //config: select FEATURE_IP_ADDRESS
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Short form of "ip addr" //config: Short form of "ip addr"
//config: //config:
@ -31,7 +29,6 @@
//config: bool "iplink (17 kb)" //config: bool "iplink (17 kb)"
//config: default y //config: default y
//config: select FEATURE_IP_LINK //config: select FEATURE_IP_LINK
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Short form of "ip link" //config: Short form of "ip link"
//config: //config:
@ -39,7 +36,6 @@
//config: bool "iproute (15 kb)" //config: bool "iproute (15 kb)"
//config: default y //config: default y
//config: select FEATURE_IP_ROUTE //config: select FEATURE_IP_ROUTE
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Short form of "ip route" //config: Short form of "ip route"
//config: //config:
@ -47,7 +43,6 @@
//config: bool "iptunnel (9.6 kb)" //config: bool "iptunnel (9.6 kb)"
//config: default y //config: default y
//config: select FEATURE_IP_TUNNEL //config: select FEATURE_IP_TUNNEL
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Short form of "ip tunnel" //config: Short form of "ip tunnel"
//config: //config:
@ -55,7 +50,6 @@
//config: bool "iprule (10 kb)" //config: bool "iprule (10 kb)"
//config: default y //config: default y
//config: select FEATURE_IP_RULE //config: select FEATURE_IP_RULE
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Short form of "ip rule" //config: Short form of "ip rule"
//config: //config:
@ -63,7 +57,6 @@
//config: bool "ipneigh (8.3 kb)" //config: bool "ipneigh (8.3 kb)"
//config: default y //config: default y
//config: select FEATURE_IP_NEIGH //config: select FEATURE_IP_NEIGH
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Short form of "ip neigh" //config: Short form of "ip neigh"
//config: //config:

View File

@ -12,7 +12,6 @@
//config:config NAMEIF //config:config NAMEIF
//config: bool "nameif (6.6 kb)" //config: bool "nameif (6.6 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: select FEATURE_SYSLOG //config: select FEATURE_SYSLOG
//config: help //config: help
//config: nameif is used to rename network interface by its MAC address. //config: nameif is used to rename network interface by its MAC address.

View File

@ -16,7 +16,6 @@
//config:config NETSTAT //config:config NETSTAT
//config: bool "netstat (10 kb)" //config: bool "netstat (10 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: netstat prints information about the Linux networking subsystem. //config: netstat prints information about the Linux networking subsystem.
//config: //config:

View File

@ -43,7 +43,6 @@
//config:config NTPD //config:config NTPD
//config: bool "ntpd (22 kb)" //config: bool "ntpd (22 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The NTP client/server daemon. //config: The NTP client/server daemon.
//config: //config:

View File

@ -27,7 +27,6 @@
//config:config PING //config:config PING
//config: bool "ping (10 kb)" //config: bool "ping (10 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to //config: ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
//config: elicit an ICMP ECHO_RESPONSE from a host or gateway. //config: elicit an ICMP ECHO_RESPONSE from a host or gateway.

View File

@ -27,7 +27,6 @@
//config:config ROUTE //config:config ROUTE
//config: bool "route (8.7 kb)" //config: bool "route (8.7 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Route displays or manipulates the kernel's IP routing tables. //config: Route displays or manipulates the kernel's IP routing tables.

View File

@ -15,7 +15,6 @@
//config:config SLATTACH //config:config SLATTACH
//config: bool "slattach (6.2 kb)" //config: bool "slattach (6.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: slattach configures serial line as SLIP network interface. //config: slattach configures serial line as SLIP network interface.

View File

@ -212,7 +212,6 @@
//config:config TRACEROUTE //config:config TRACEROUTE
//config: bool "traceroute (11 kb)" //config: bool "traceroute (11 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Utility to trace the route of IP packets. //config: Utility to trace the route of IP packets.
//config: //config:

View File

@ -12,7 +12,6 @@
//config:config TUNCTL //config:config TUNCTL
//config: bool "tunctl (6.2 kb)" //config: bool "tunctl (6.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: tunctl creates or deletes tun devices. //config: tunctl creates or deletes tun devices.
//config: //config:

View File

@ -6,7 +6,6 @@
config UDHCPD config UDHCPD
bool "udhcpd (21 kb)" bool "udhcpd (21 kb)"
default y default y
select PLATFORM_LINUX
help help
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.
@ -62,7 +61,6 @@ config DHCPRELAY
config UDHCPC config UDHCPC
bool "udhcpc (24 kb)" bool "udhcpc (24 kb)"
default y default y
select PLATFORM_LINUX
help help
udhcpc is a DHCP client geared primarily toward embedded systems, udhcpc is a DHCP client geared primarily toward embedded systems,
while striving to be fully functional and RFC compliant. while striving to be fully functional and RFC compliant.

View File

@ -9,7 +9,6 @@
//config:config VCONFIG //config:config VCONFIG
//config: bool "vconfig (2.3 kb)" //config: bool "vconfig (2.3 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Creates, removes, and configures VLAN interfaces //config: Creates, removes, and configures VLAN interfaces

View File

@ -16,7 +16,6 @@
//config:config ZCIP //config:config ZCIP
//config: bool "zcip (8.4 kb)" //config: bool "zcip (8.4 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: select FEATURE_SYSLOG //config: select FEATURE_SYSLOG
//config: help //config: help
//config: ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927. //config: ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.

View File

@ -9,7 +9,6 @@
//config:config FREE //config:config FREE
//config: bool "free (3.1 kb)" //config: bool "free (3.1 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX #sysinfo()
//config: help //config: help
//config: free displays the total amount of free and used physical and swap //config: free displays the total amount of free and used physical and swap
//config: memory in the system, as well as the buffers used by the kernel. //config: memory in the system, as well as the buffers used by the kernel.

View File

@ -35,7 +35,6 @@
//config: bool "Enable -o time and -o etime specifiers" //config: bool "Enable -o time and -o etime specifiers"
//config: default y //config: default y
//config: depends on (PS || MINIPS) && DESKTOP //config: depends on (PS || MINIPS) && DESKTOP
//config: select PLATFORM_LINUX
//config: //config:
//config:config FEATURE_PS_UNUSUAL_SYSTEMS //config:config FEATURE_PS_UNUSUAL_SYSTEMS
//config: bool "Support Linux prior to 2.4.0 and non-ELF systems" //config: bool "Support Linux prior to 2.4.0 and non-ELF systems"

View File

@ -14,7 +14,6 @@
//config:config UPTIME //config:config UPTIME
//config: bool "uptime (3.7 kb)" //config: bool "uptime (3.7 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX #sysinfo()
//config: help //config: help
//config: uptime gives a one line display of the current time, how long //config: uptime gives a one line display of the current time, how long
//config: the system has been running, how many users are currently logged //config: the system has been running, how many users are currently logged

View File

@ -33,7 +33,6 @@
//config: bool "Use the klogctl() interface" //config: bool "Use the klogctl() interface"
//config: default y //config: default y
//config: depends on KLOGD //config: depends on KLOGD
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The klogd applet supports two interfaces for reading //config: The klogd applet supports two interfaces for reading
//config: kernel messages. Linux provides the klogctl() interface //config: kernel messages. Linux provides the klogctl() interface

View File

@ -109,7 +109,6 @@
//config: bool "Linux kernel printk buffer support" //config: bool "Linux kernel printk buffer support"
//config: default y //config: default y
//config: depends on SYSLOGD //config: depends on SYSLOGD
//config: select PLATFORM_LINUX
//config: help //config: help
//config: When you enable this feature, the syslogd utility will //config: When you enable this feature, the syslogd utility will
//config: write system log message to the Linux kernel's printk buffer. //config: write system log message to the Linux kernel's printk buffer.

View File

@ -9,7 +9,6 @@
//config:config ACPID //config:config ACPID
//config: bool "acpid (9 kb)" //config: bool "acpid (9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: acpid listens to ACPI events coming either in textual form from //config: acpid listens to ACPI events coming either in textual form from
//config: /proc/acpi/event (though it is marked deprecated it is still widely //config: /proc/acpi/event (though it is marked deprecated it is still widely

View File

@ -8,7 +8,6 @@
//config:config BLKDISCARD //config:config BLKDISCARD
//config: bool "blkdiscard (4.3 kb)" //config: bool "blkdiscard (4.3 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: blkdiscard discards sectors on a given device. //config: blkdiscard discards sectors on a given device.

View File

@ -9,7 +9,6 @@
//config:config BLKID //config:config BLKID
//config: bool "blkid (12 kb)" //config: bool "blkid (12 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: select VOLUMEID //config: select VOLUMEID
//config: help //config: help
//config: Lists labels and UUIDs of all filesystems. //config: Lists labels and UUIDs of all filesystems.

View File

@ -11,7 +11,6 @@
//config:config DMESG //config:config DMESG
//config: bool "dmesg (3.7 kb)" //config: bool "dmesg (3.7 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: dmesg is used to examine or control the kernel ring buffer. When the //config: dmesg is used to examine or control the kernel ring buffer. When the
//config: Linux kernel prints messages to the system log, they are stored in //config: Linux kernel prints messages to the system log, they are stored in

View File

@ -15,7 +15,6 @@
//config:config EJECT //config:config EJECT
//config: bool "eject (4 kb)" //config: bool "eject (4 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Used to eject cdroms. (defaults to /dev/cdrom) //config: Used to eject cdroms. (defaults to /dev/cdrom)
//config: //config:

View File

@ -11,7 +11,6 @@
//config:config FATATTR //config:config FATATTR
//config: bool "fatattr (1.9 kb)" //config: bool "fatattr (1.9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: fatattr lists or changes the file attributes on a fat file system. //config: fatattr lists or changes the file attributes on a fat file system.

View File

@ -14,7 +14,6 @@
//config:config FBSET //config:config FBSET
//config: bool "fbset (5.9 kb)" //config: bool "fbset (5.9 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: fbset is used to show or change the settings of a Linux frame buffer //config: fbset is used to show or change the settings of a Linux frame buffer
//config: device. The frame buffer device provides a simple and unique //config: device. The frame buffer device provides a simple and unique

View File

@ -8,7 +8,6 @@
//config:config FDFORMAT //config:config FDFORMAT
//config: bool "fdformat (4.4 kb)" //config: bool "fdformat (4.4 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: fdformat is used to low-level format a floppy disk. //config: fdformat is used to low-level format a floppy disk.

View File

@ -10,7 +10,6 @@
//config:config FDISK //config:config FDISK
//config: bool "fdisk (37 kb)" //config: bool "fdisk (37 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The fdisk utility is used to divide hard disks into one or more //config: The fdisk utility is used to divide hard disks into one or more
//config: logical disks, which are generally called partitions. This utility //config: logical disks, which are generally called partitions. This utility

View File

@ -10,7 +10,6 @@
//config:config FINDFS //config:config FINDFS
//config: bool "findfs (12 kb)" //config: bool "findfs (12 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: select VOLUMEID //config: select VOLUMEID
//config: help //config: help
//config: Prints the name of a filesystem with given label or UUID. //config: Prints the name of a filesystem with given label or UUID.

View File

@ -11,7 +11,6 @@
//config:config FDFLUSH //config:config FDFLUSH
//config: bool "fdflush (1.3 kb)" //config: bool "fdflush (1.3 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: fdflush is only needed when changing media on slightly-broken //config: fdflush is only needed when changing media on slightly-broken
//config: removable media drives. It is used to make Linux believe that a //config: removable media drives. It is used to make Linux believe that a
@ -24,7 +23,6 @@
//config:config FREERAMDISK //config:config FREERAMDISK
//config: bool "freeramdisk (1.3 kb)" //config: bool "freeramdisk (1.3 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Linux allows you to create ramdisks. This utility allows you to //config: Linux allows you to create ramdisks. This utility allows you to
//config: delete them and completely free all memory that was used for the //config: delete them and completely free all memory that was used for the

View File

@ -7,7 +7,6 @@
//config:config FSFREEZE //config:config FSFREEZE
//config: bool "fsfreeze (3.5 kb)" //config: bool "fsfreeze (3.5 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: select LONG_OPTS //config: select LONG_OPTS
//config: help //config: help
//config: Halt new accesses and flush writes on a mounted filesystem. //config: Halt new accesses and flush writes on a mounted filesystem.

View File

@ -10,7 +10,6 @@
//config:config FSTRIM //config:config FSTRIM
//config: bool "fstrim (4.4 kb)" //config: bool "fstrim (4.4 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Discard unused blocks on a mounted filesystem. //config: Discard unused blocks on a mounted filesystem.

View File

@ -9,7 +9,6 @@
//config:config HWCLOCK //config:config HWCLOCK
//config: bool "hwclock (5.8 kb)" //config: bool "hwclock (5.8 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The hwclock utility is used to read and set the hardware clock //config: The hwclock utility is used to read and set the hardware clock
//config: on a system. This is primarily used to set the current time on //config: on a system. This is primarily used to set the current time on

View File

@ -9,7 +9,6 @@
//config:config IONICE //config:config IONICE
//config: bool "ionice (3.8 kb)" //config: bool "ionice (3.8 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Set/set program io scheduling class and priority //config: Set/set program io scheduling class and priority
//config: Requires kernel >= 2.6.13 //config: Requires kernel >= 2.6.13

View File

@ -10,7 +10,6 @@
//config:config IPCS //config:config IPCS
//config: bool "ipcs (11 kb)" //config: bool "ipcs (11 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The ipcs utility is used to provide information on the currently //config: The ipcs utility is used to provide information on the currently
//config: allocated System V interprocess (IPC) objects in the system. //config: allocated System V interprocess (IPC) objects in the system.

View File

@ -9,7 +9,6 @@
//config:config LOSETUP //config:config LOSETUP
//config: bool "losetup (5.5 kb)" //config: bool "losetup (5.5 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: losetup is used to associate or detach a loop device with a regular //config: losetup is used to associate or detach a loop device with a regular
//config: file or block device, and to query the status of a loop device. This //config: file or block device, and to query the status of a loop device. This

View File

@ -9,7 +9,6 @@
//config:config LSPCI //config:config LSPCI
//config: bool "lspci (6.3 kb)" //config: bool "lspci (6.3 kb)"
//config: default y //config: default y
//config: #select PLATFORM_LINUX
//config: help //config: help
//config: lspci is a utility for displaying information about PCI buses in the //config: lspci is a utility for displaying information about PCI buses in the
//config: system and devices connected to them. //config: system and devices connected to them.

View File

@ -9,7 +9,6 @@
//config:config LSUSB //config:config LSUSB
//config: bool "lsusb (4.2 kb)" //config: bool "lsusb (4.2 kb)"
//config: default y //config: default y
//config: #select PLATFORM_LINUX
//config: help //config: help
//config: lsusb is a utility for displaying information about USB buses in the //config: lsusb is a utility for displaying information about USB buses in the
//config: system and devices connected to them. //config: system and devices connected to them.

View File

@ -10,7 +10,6 @@
//config:config MDEV //config:config MDEV
//config: bool "mdev (17 kb)" //config: bool "mdev (17 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: mdev is a mini-udev implementation for dynamically creating device //config: mdev is a mini-udev implementation for dynamically creating device
//config: nodes in the /dev directory. //config: nodes in the /dev directory.

View File

@ -10,14 +10,12 @@
//config:config MKE2FS //config:config MKE2FS
//config: bool "mke2fs (10 kb)" //config: bool "mke2fs (10 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Utility to create EXT2 filesystems. //config: Utility to create EXT2 filesystems.
//config: //config:
//config:config MKFS_EXT2 //config:config MKFS_EXT2
//config: bool "mkfs.ext2 (10 kb)" //config: bool "mkfs.ext2 (10 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Alias to "mke2fs". //config: Alias to "mke2fs".

View File

@ -65,7 +65,6 @@
//config:config MKFS_MINIX //config:config MKFS_MINIX
//config: bool "mkfs.minix (10 kb)" //config: bool "mkfs.minix (10 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The minix filesystem is a nice, small, compact, read-write filesystem //config: The minix filesystem is a nice, small, compact, read-write filesystem
//config: with little overhead. If you wish to be able to create minix //config: with little overhead. If you wish to be able to create minix

View File

@ -9,7 +9,6 @@
//config:config MKFS_REISER //config:config MKFS_REISER
//config: bool "mkfs_reiser" //config: bool "mkfs_reiser"
//config: default n //config: default n
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Utility to create ReiserFS filesystems. //config: Utility to create ReiserFS filesystems.
//config: Note: this applet needs a lot of testing and polishing. //config: Note: this applet needs a lot of testing and polishing.

View File

@ -10,14 +10,12 @@
//config:config MKDOSFS //config:config MKDOSFS
//config: bool "mkdosfs (7.2 kb)" //config: bool "mkdosfs (7.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Utility to create FAT32 filesystems. //config: Utility to create FAT32 filesystems.
//config: //config:
//config:config MKFS_VFAT //config:config MKFS_VFAT
//config: bool "mkfs.vfat (7.2 kb)" //config: bool "mkfs.vfat (7.2 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Alias to "mkdosfs". //config: Alias to "mkdosfs".

View File

@ -20,7 +20,6 @@
//config:config MOUNT //config:config MOUNT
//config: bool "mount (23 kb)" //config: bool "mount (23 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: All files and filesystems in Unix are arranged into one big directory //config: All files and filesystems in Unix are arranged into one big directory
//config: tree. The 'mount' utility is used to graft a filesystem onto a //config: tree. The 'mount' utility is used to graft a filesystem onto a

View File

@ -9,7 +9,6 @@
//config:config NSENTER //config:config NSENTER
//config: bool "nsenter (6.5 kb)" //config: bool "nsenter (6.5 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: Run program with namespaces of other processes. //config: Run program with namespaces of other processes.

View File

@ -11,7 +11,6 @@
//config:config PIVOT_ROOT //config:config PIVOT_ROOT
//config: bool "pivot_root (1.1 kb)" //config: bool "pivot_root (1.1 kb)"
//config: default y //config: default y
//config: select PLATFORM_LINUX
//config: help //config: help
//config: The pivot_root utility swaps the mount points for the root filesystem //config: The pivot_root utility swaps the mount points for the root filesystem
//config: with some other mounted filesystem. This allows you to do all sorts //config: with some other mounted filesystem. This allows you to do all sorts

Some files were not shown because too many files have changed in this diff Show More