Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see docs/Kconfig-language.txt.
  5. #
  6. menu "klibc-utils"
  7. config BUSYBOX_MINIPS
  8. bool "minips (11 kb)"
  9. default n # for god's sake, just use "ps" name in your scripts
  10. help
  11. Alias to "ps".
  12. config BUSYBOX_NUKE
  13. bool "nuke (2.9 kb)"
  14. default n # off by default: too "accidentally destructive"
  15. help
  16. Alias to "rm -rf".
  17. config BUSYBOX_RESUME
  18. bool "resume (3.2 kb)"
  19. default y
  20. help
  21. Resume from saved "suspend-to-disk" image
  22. config BUSYBOX_RUN_INIT
  23. bool "run-init (7.7 kb)"
  24. default y
  25. help
  26. The run-init utility is used from initramfs to select a new
  27. root device. Under initramfs, you have to use this instead of
  28. pivot_root.
  29. Booting with initramfs extracts a gzipped cpio archive into rootfs
  30. (which is a variant of ramfs/tmpfs). Because rootfs can't be moved
  31. or unmounted, pivot_root will not work from initramfs. Instead,
  32. run-init deletes everything out of rootfs (including itself),
  33. does a mount --move that overmounts rootfs with the new root, and
  34. then execs the specified init program.
  35. util-linux has a similar tool, switch-root.
  36. run-init differs by also having a "-d CAPS_TO_DROP" option.
  37. endmenu