hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
menu "Drivers"
 
config XENO_OPT_RTDM_COMPAT_DEVNODE
   bool "Enable legacy pathnames for named RTDM devices"
   default y
   help
   This compatibility option allows applications to open named
   RTDM devices using the legacy naming scheme, i.e.
 
   fd = open("devname", ...);
      or
   fd = open("/dev/devname", ...);
 
   When such a request is received by RTDM, a warning message is
   issued to the kernel log whenever XENO_OPT_DEBUG_LEGACY is
   also enabled in the kernel configuration.
 
   Applications should open named devices via their actual device
   nodes instead, i.e.
 
   fd = open("/dev/rtdm/devname", ...);
 
source "drivers/xenomai/autotune/Kconfig"
source "drivers/xenomai/serial/Kconfig"
source "drivers/xenomai/testing/Kconfig"
source "drivers/xenomai/can/Kconfig"
source "drivers/xenomai/net/Kconfig"
source "drivers/xenomai/analogy/Kconfig"
source "drivers/xenomai/ipc/Kconfig"
source "drivers/xenomai/udd/Kconfig"
source "drivers/xenomai/gpio/Kconfig"
source "drivers/xenomai/gpiopwm/Kconfig"
source "drivers/xenomai/spi/Kconfig"
 
endmenu