12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # DO NOT EDIT. This file is generated from Config.src
- #
- # For a description of the syntax of this configuration file,
- # see scripts/kbuild/config-language.txt.
- #
- menu "klibc-utils"
- config MINIPS
- bool "minips (11 kb)"
- default n # for god's sake, just use "ps" name in your scripts
- help
- Alias to "ps".
- config NUKE
- bool "nuke"
- default y
- help
- Alias to "rm -rf".
- config RESUME
- bool "resume"
- default y
- help
- Resume from saved "suspend-to-disk" image
- config RUN_INIT
- bool "run-init"
- default y
- select PLATFORM_LINUX
- help
- The run-init utility is used from initramfs to select a new
- root device. Under initramfs, you have to use this instead of
- pivot_root.
- Booting with initramfs extracts a gzipped cpio archive into rootfs
- (which is a variant of ramfs/tmpfs). Because rootfs can't be moved
- or unmounted, pivot_root will not work from initramfs. Instead,
- run-init deletes everything out of rootfs (including itself),
- does a mount --move that overmounts rootfs with the new root, and
- then execs the specified init program.
- util-linux has a similar tool, switch-root.
- run-init differs by also having a "-d CAPS_TO_DROP" option.
- endmenu
|