| 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_accelerometer |
| 21 | bool "Install udev acceleroometer callout" |
| 22 | default y |
| 23 | help |
| 24 | accelerometer - udev callout to export device orientation |
| 25 | through property |
| 26 | |
| 27 | config UDEV_EXTRA_ata_id |
| 28 | bool "Install udev ata_id callout" |
| 29 | default y |
| 30 | help |
| 31 | ata_id - udev callout to read product/serial number |
| 32 | from ATA drives |
| 33 | |
| 34 | config UDEV_EXTRA_cdrom_id |
| 35 | bool "Install udev cdrom_id callout" |
| 36 | default y |
| 37 | help |
| 38 | cdrom_id - udev callout to determine the capabilities |
| 39 | of optical drives and media |
| 40 | |
| 41 | config UDEV_EXTRA_collect |
| 42 | bool "Install udev collect" |
| 43 | default n |
| 44 | help |
| 45 | Adds ID to the list governed by <checkpoint> |
| 46 | |
| 47 | config UDEV_EXTRA_edd_id |
| 48 | bool "Install udev edd_id callout" |
| 49 | default n |
| 50 | help |
| 51 | edd_id - udev callout to identify BIOS disk drives |
| 52 | via EDD |
| 53 | |
| 54 | config UDEV_EXTRA_firmware |
| 55 | bool "Install firmware support" |
| 56 | default n |
| 57 | help |
| 58 | udev firmware loader |
| 59 | via EDD |
| 60 | |
| 61 | config UDEV_EXTRA_floppy |
| 62 | bool "Install create_floppy_devices callout" |
| 63 | default n |
| 64 | help |
| 65 | create_floppy_devices - udev callout to create all |
| 66 | possible floppy device based on the CMOS type |
| 67 | |
| 68 | config UDEV_EXTRA_input_id |
| 69 | bool "Install input_id callout" |
| 70 | default y |
| 71 | help |
| 72 | input_id - udev callout to classify input devices |
| 73 | |
| 74 | config UDEV_EXTRA_mtd_probe |
| 75 | bool "Install mtd_probe callout" |
| 76 | default y |
| 77 | help |
| 78 | mtd_probe - udev callout to probe mtd devices |
| 79 | |
| 80 | config UDEV_EXTRA_path_id |
| 81 | bool "Install udev path_id callout" |
| 82 | default y |
| 83 | help |
| 84 | path_id - udev callout to create a device path based |
| 85 | unique name for a device to implement the Linux |
| 86 | Persistent Device Naming scheme |
| 87 | |
| 88 | config UDEV_EXTRA_qemu |
| 89 | bool "Install qemu specific rules" |
| 90 | default y |
| 91 | help |
| 92 | Install rules for autosuspension of QEMU emulated |
| 93 | USB HID devices |
| 94 | |
| 95 | config UDEV_EXTRA_rule_generator |
| 96 | bool "Install udev rule_generator" |
| 97 | default y |
| 98 | help |
| 99 | |
| 100 | config UDEV_EXTRA_scsi_id |
| 101 | bool "Install udev scsi_id callout" |
| 102 | default y |
| 103 | help |
| 104 | scsi_id - retrieve and generate a unique SCSI identifier |
| 105 | |
| 106 | config UDEV_EXTRA_usb_id |
| 107 | bool "Install udev usb_id callout" |
| 108 | default y |
| 109 | help |
| 110 | usb_id - can find the unique id of USB devices |
| 111 | |
| 112 | config UDEV_EXTRA_v4l_id |
| 113 | bool "Install udev v4l_id callout" |
| 114 | default y |
| 115 | help |
| 116 | v4l_id - udev callout to identify Video4Linux devices |
| 117 | |
| 118 | endmenu |
| 119 | |