| 1 | # udev package config |
| 2 | |
| 3 | menu "Configuration" |
| 4 | depends on PACKAGE_udev |
| 5 | |
| 6 | config UDEV_DISABLE_LOGGING |
| 7 | bool "Disable udev logging to syslog" |
| 8 | default n |
| 9 | help |
| 10 | Disable logging of udev messages to the syslog. If |
| 11 | unsure, choose the default N. |
| 12 | |
| 13 | config UDEV_ENABLE_DEBUG |
| 14 | bool "Enable debug build of the udev package" |
| 15 | default n |
| 16 | help |
| 17 | Compile in udev debug messages. If unsure, choose |
| 18 | the default N. |
| 19 | |
| 20 | config UDEV_EXTRA_ata_id |
| 21 | bool "Install udev ata_id callout" |
| 22 | default y |
| 23 | help |
| 24 | ata_id - udev callout to read product/serial number |
| 25 | from ATA drives |
| 26 | |
| 27 | config UDEV_EXTRA_cdrom_id |
| 28 | bool "Install udev cdrom_id callout" |
| 29 | default y |
| 30 | help |
| 31 | cdrom_id - udev callout to determine the capabilities |
| 32 | of optical drives and media |
| 33 | |
| 34 | config UDEV_EXTRA_collect |
| 35 | bool "Install udev collect" |
| 36 | default n |
| 37 | help |
| 38 | Adds ID to the list governed by <checkpoint> |
| 39 | |
| 40 | config UDEV_EXTRA_edd_id |
| 41 | bool "Install udev edd_id callout" |
| 42 | default n |
| 43 | help |
| 44 | edd_id - udev callout to identify BIOS disk drives |
| 45 | via EDD |
| 46 | |
| 47 | config UDEV_EXTRA_firmware |
| 48 | bool "Install firmware support" |
| 49 | default n |
| 50 | help |
| 51 | udev firmware loader |
| 52 | via EDD |
| 53 | |
| 54 | config UDEV_EXTRA_floppy |
| 55 | bool "Install create_floppy_devices callout" |
| 56 | default n |
| 57 | help |
| 58 | create_floppy_devices - udev callout to create all |
| 59 | possible floppy device based on the CMOS type |
| 60 | |
| 61 | config UDEV_EXTRA_fstab_import |
| 62 | bool "Install fstab import" |
| 63 | default y |
| 64 | help |
| 65 | find matching entry in fstab and export it |
| 66 | |
| 67 | config UDEV_EXTRA_path_id |
| 68 | bool "Install udev path_id callout" |
| 69 | default y |
| 70 | help |
| 71 | path_id - udev callout to create a device path based |
| 72 | unique name for a device to implement the Linux |
| 73 | Persistent Device Naming scheme |
| 74 | |
| 75 | config UDEV_EXTRA_rule_generator |
| 76 | bool "Install udev rule_generator" |
| 77 | default y |
| 78 | help |
| 79 | |
| 80 | config UDEV_EXTRA_scsi_id |
| 81 | bool "Install udev scsi_id callout" |
| 82 | default y |
| 83 | help |
| 84 | scsi_id - retrieve and generate a unique SCSI identifier |
| 85 | |
| 86 | config UDEV_EXTRA_usb_id |
| 87 | bool "Install udev usb_id callout" |
| 88 | default y |
| 89 | help |
| 90 | usb_id - can find the unique id of USB devices |
| 91 | |
| 92 | endmenu |
| 93 | |