Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/util-linux/Config.src

    r2725 r3232  
    1111    bool "acpid"
    1212    default y
    13     depends on PLATFORM_LINUX
     13    select PLATFORM_LINUX
    1414    help
    1515      acpid listens to ACPI events coming either in textual form from
     
    3434    bool "blkid"
    3535    default y
    36     depends on PLATFORM_LINUX
     36    select PLATFORM_LINUX
    3737    select VOLUMEID
    3838    help
     
    4141      With all submodules selected, it will add ~8k to busybox.
    4242
     43config FEATURE_BLKID_TYPE
     44    bool "Print filesystem type"
     45    default n
     46    depends on BLKID
     47    help
     48      Show TYPE="filesystem type"
     49
    4350config DMESG
    4451    bool "dmesg"
    4552    default y
    46     depends on PLATFORM_LINUX
     53    select PLATFORM_LINUX
    4754    help
    4855      dmesg is used to examine or control the kernel ring buffer. When the
     
    7885    bool "fbset"
    7986    default y
    80     depends on PLATFORM_LINUX
     87    select PLATFORM_LINUX
    8188    help
    8289      fbset is used to show or change the settings of a Linux frame buffer
     
    107114    bool "fdflush"
    108115    default y
    109     depends on PLATFORM_LINUX
     116    select PLATFORM_LINUX
    110117    help
    111118      fdflush is only needed when changing media on slightly-broken
     
    120127    bool "fdformat"
    121128    default y
    122     depends on PLATFORM_LINUX
     129    select PLATFORM_LINUX
    123130    help
    124131      fdformat is used to low-level format a floppy disk.
     
    127134    bool "fdisk"
    128135    default y
    129     depends on PLATFORM_LINUX
     136    select PLATFORM_LINUX
    130137    help
    131138      The fdisk utility is used to divide hard disks into one or more
     
    138145    default y
    139146    depends on FDISK
     147    depends on !LFS   # with LFS no special code is needed
    140148    help
    141149      Enable this option to support large disks > 4GB.
     
    203211    bool "findfs"
    204212    default y
    205     depends on PLATFORM_LINUX
     213    select PLATFORM_LINUX
    206214    select VOLUMEID
    207215    help
     
    219227    bool "freeramdisk"
    220228    default y
    221     depends on PLATFORM_LINUX
     229    select PLATFORM_LINUX
    222230    help
    223231      Linux allows you to create ramdisks. This utility allows you to
     
    242250    bool "mkfs_ext2"
    243251    default y
    244     depends on PLATFORM_LINUX
     252    select PLATFORM_LINUX
    245253    help
    246254      Utility to create EXT2 filesystems.
     
    249257    bool "mkfs_minix"
    250258    default y
    251     depends on PLATFORM_LINUX
     259    select PLATFORM_LINUX
    252260    help
    253261      The minix filesystem is a nice, small, compact, read-write filesystem
     
    267275    bool "mkfs_reiser"
    268276    default n
    269     depends on PLATFORM_LINUX
     277    select PLATFORM_LINUX
    270278    help
    271279      Utility to create ReiserFS filesystems.
     
    275283    bool "mkfs_vfat"
    276284    default y
    277     depends on PLATFORM_LINUX
     285    select PLATFORM_LINUX
    278286    help
    279287      Utility to create FAT32 filesystems.
     
    324332    bool "hwclock"
    325333    default y
    326     depends on PLATFORM_LINUX
     334    select PLATFORM_LINUX
    327335    help
    328336      The hwclock utility is used to read and set the hardware clock
     
    363371    bool "ipcs"
    364372    default y
    365     depends on PLATFORM_LINUX
     373    select PLATFORM_LINUX
    366374    help
    367375      The ipcs utility is used to provide information on the currently
     
    371379    bool "losetup"
    372380    default y
    373     depends on PLATFORM_LINUX
     381    select PLATFORM_LINUX
    374382    help
    375383      losetup is used to associate or detach a loop device with a regular
     
    380388    bool "lspci"
    381389    default y
    382     #depends on PLATFORM_LINUX
     390    #select PLATFORM_LINUX
    383391    help
    384392      lspci is a utility for displaying information about PCI buses in the
     
    390398    bool "lsusb"
    391399    default y
    392     #depends on PLATFORM_LINUX
     400    #select PLATFORM_LINUX
    393401    help
    394402      lsusb is a utility for displaying information about USB buses in the
     
    396404
    397405      This version uses sysfs (/sys/bus/usb/devices) only.
    398 
    399 config MDEV
    400     bool "mdev"
    401     default y
    402     depends on PLATFORM_LINUX
    403     help
    404       mdev is a mini-udev implementation for dynamically creating device
    405       nodes in the /dev directory.
    406 
    407       For more information, please see docs/mdev.txt
    408 
    409 config FEATURE_MDEV_CONF
    410     bool "Support /etc/mdev.conf"
    411     default y
    412     depends on MDEV
    413     help
    414       Add support for the mdev config file to control ownership and
    415       permissions of the device nodes.
    416 
    417       For more information, please see docs/mdev.txt
    418 
    419 config FEATURE_MDEV_RENAME
    420     bool "Support subdirs/symlinks"
    421     default y
    422     depends on FEATURE_MDEV_CONF
    423     help
    424       Add support for renaming devices and creating symlinks.
    425 
    426       For more information, please see docs/mdev.txt
    427 
    428 config FEATURE_MDEV_RENAME_REGEXP
    429     bool "Support regular expressions substitutions when renaming device"
    430     default y
    431     depends on FEATURE_MDEV_RENAME
    432     help
    433       Add support for regular expressions substitutions when renaming
    434       device.
    435 
    436 config FEATURE_MDEV_EXEC
    437     bool "Support command execution at device addition/removal"
    438     default y
    439     depends on FEATURE_MDEV_CONF
    440     help
    441       This adds support for an optional field to /etc/mdev.conf for
    442       executing commands when devices are created/removed.
    443 
    444       For more information, please see docs/mdev.txt
    445 
    446 config FEATURE_MDEV_LOAD_FIRMWARE
    447     bool "Support loading of firmwares"
    448     default y
    449     depends on MDEV
    450     help
    451       Some devices need to load firmware before they can be usable.
    452 
    453       These devices will request userspace look up the files in
    454       /lib/firmware/ and if it exists, send it to the kernel for
    455       loading into the hardware.
    456406
    457407config MKSWAP
     
    488438    bool "mount"
    489439    default y
    490     depends on PLATFORM_LINUX
     440    select PLATFORM_LINUX
    491441    help
    492442      All files and filesystems in Unix are arranged into one big directory
     
    536486
    537487config FEATURE_MOUNT_NFS
    538     bool "Support mounting NFS file systems"
    539     default y
     488    bool "Support mounting NFS file systems on Linux < 2.6.23"
     489    default n
    540490    depends on MOUNT
    541491    select FEATURE_HAVE_RPC
    542492    select FEATURE_SYSLOG
    543493    help
    544       Enable mounting of NFS file systems.
     494      Enable mounting of NFS file systems on Linux kernels prior
     495      to version 2.6.23. Note that in this case mounting of NFS
     496      over IPv6 will not be possible.
     497
     498      Note that this option links in RPC support from libc,
     499      which is rather large (~10 kbytes on uclibc).
    545500
    546501config FEATURE_MOUNT_CIFS
     
    571526    bool "pivot_root"
    572527    default y
    573     depends on PLATFORM_LINUX
     528    select PLATFORM_LINUX
    574529    help
    575530      The pivot_root utility swaps the mount points for the root filesystem
     
    599554    bool "readprofile"
    600555    default y
    601     #depends on PLATFORM_LINUX
     556    #select PLATFORM_LINUX
    602557    help
    603558      This allows you to parse /proc/profile for basic profiling.
     
    606561    bool "rtcwake"
    607562    default y
    608     depends on PLATFORM_LINUX
     563    select PLATFORM_LINUX
    609564    help
    610565      Enter a system sleep state until specified wakeup time.
     
    626581    bool "setarch"
    627582    default y
    628     depends on PLATFORM_LINUX
     583    select PLATFORM_LINUX
    629584    help
    630585      The linux32 utility is used to create a 32bit environment for the
     
    636591    bool "swaponoff"
    637592    default y
    638     depends on PLATFORM_LINUX
     593    select PLATFORM_LINUX
    639594    help
    640595      This option enables both the 'swapon' and the 'swapoff' utilities.
     
    655610    bool "switch_root"
    656611    default y
    657     depends on PLATFORM_LINUX
     612    select PLATFORM_LINUX
    658613    help
    659614      The switch_root utility is used from initramfs to select a new
     
    675630    bool "umount"
    676631    default y
    677     depends on PLATFORM_LINUX
     632    select PLATFORM_LINUX
    678633    help
    679634      When you want to remove a mounted filesystem from its current mount
     
    780735      TODO
    781736
     737config FEATURE_VOLUMEID_EXFAT
     738    bool "exFAT filesystem"
     739    default y
     740    depends on VOLUMEID
     741    help
     742      exFAT (extended FAT) is a proprietary file system designed especially
     743      for flash drives. It has many features from NTFS, but with less
     744      overhead. exFAT is used on most SDXC cards for consumer electronics.
     745
    782746config FEATURE_VOLUMEID_HFS
    783747    bool "hfs filesystem"
     
    808772      TODO
    809773
     774config FEATURE_VOLUMEID_NILFS
     775    bool "nilfs filesystem"
     776    default y
     777    depends on VOLUMEID
     778    help
     779      TODO
     780
    810781config FEATURE_VOLUMEID_NTFS
    811782    bool "ntfs filesystem"
     
    870841    help
    871842      TODO
     843
     844config FEATURE_VOLUMEID_SQUASHFS
     845    bool "SquashFS filesystem"
     846    default y
     847    depends on VOLUMEID && FEATURE_BLKID_TYPE
     848    help
     849      Squashfs is a compressed read-only filesystem for Linux. Squashfs is
     850      intended for general read-only filesystem use and in constrained block
     851      device/memory systems (e.g. embedded systems) where low overhead is
     852      needed.
    872853
    873854config FEATURE_VOLUMEID_SYSV
Note: See TracChangeset for help on using the changeset viewer.