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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
menuconfig XENOMAI
   depends on X86_TSC || !X86
   bool "Xenomai/cobalt"
   select IPIPE if HAVE_IPIPE_SUPPORT
   select IPIPE_WANT_APIREV_2 if IPIPE
   select DOVETAIL if HAVE_DOVETAIL
   select DOVETAIL_LEGACY_SYSCALL_RANGE if HAVE_DOVETAIL
   default y
   help
     Xenomai's Cobalt core is a real-time extension to the Linux
     kernel, which exhibits very short interrupt and scheduling
     latency, without affecting the regular kernel services.
 
     This option enables the set of extended kernel services
     required to run the real-time applications in user-space,
     over the Xenomai libraries.
 
     Please visit http://xenomai.org for more information.
 
if XENOMAI
source "arch/@SRCARCH@/xenomai/Kconfig"
endif
 
if MIGRATION
comment "WARNING! Page migration (CONFIG_MIGRATION) may increase"
comment "latency."
endif
 
if APM || CPU_FREQ || ACPI_PROCESSOR || INTEL_IDLE
comment "WARNING! At least one of APM, CPU frequency scaling, ACPI 'processor'"
comment "or CPU idle features is enabled. Any of these options may"
comment "cause troubles with Xenomai. You should disable them."
endif
 
config XENO_VERSION_MAJOR
       int
       default @VERSION_MAJOR@
 
config XENO_VERSION_MINOR
       int
       default @VERSION_MINOR@
 
config XENO_REVISION_LEVEL
       int
       default @REVISION_LEVEL@
 
config XENO_VERSION_STRING
       string
       default "@VERSION_STRING@"