diff options
-rw-r--r-- | litmus/Kconfig | 13 | ||||
-rw-r--r-- | litmus/Makefile | 3 |
2 files changed, 15 insertions, 1 deletions
diff --git a/litmus/Kconfig b/litmus/Kconfig index 874794f64af1..cc49e1a7f9c7 100644 --- a/litmus/Kconfig +++ b/litmus/Kconfig | |||
@@ -1,5 +1,18 @@ | |||
1 | menu "LITMUS^RT" | 1 | menu "LITMUS^RT" |
2 | 2 | ||
3 | menu "Plugins" | ||
4 | |||
5 | config PLUGIN_CEDF | ||
6 | bool "Clustered-EDF" | ||
7 | default y | ||
8 | help | ||
9 | Include the Clustered EDF (C-EDF) plugin in the kernel. | ||
10 | This is appropriate for large platforms with shared caches. | ||
11 | On smaller platforms (e.g., ARM PB11MPCore), using C-EDF | ||
12 | makes little sense since there aren't any shared caches. | ||
13 | |||
14 | endmenu | ||
15 | |||
3 | menu "Real-Time Synchronization" | 16 | menu "Real-Time Synchronization" |
4 | 17 | ||
5 | config NP_SECTION | 18 | config NP_SECTION |
diff --git a/litmus/Makefile b/litmus/Makefile index 0cc33e8bee51..e581e87213c2 100644 --- a/litmus/Makefile +++ b/litmus/Makefile | |||
@@ -14,9 +14,10 @@ obj-y = sched_plugin.o litmus.o \ | |||
14 | ctrldev.o \ | 14 | ctrldev.o \ |
15 | sched_gsn_edf.o \ | 15 | sched_gsn_edf.o \ |
16 | sched_psn_edf.o \ | 16 | sched_psn_edf.o \ |
17 | sched_cedf.o \ | ||
18 | sched_pfair.o | 17 | sched_pfair.o |
19 | 18 | ||
19 | obj-$(CONFIG_PLUGIN_CEDF) += sched_cedf.o | ||
20 | |||
20 | obj-$(CONFIG_FEATHER_TRACE) += ft_event.o ftdev.o | 21 | obj-$(CONFIG_FEATHER_TRACE) += ft_event.o ftdev.o |
21 | obj-$(CONFIG_SCHED_TASK_TRACE) += sched_task_trace.o | 22 | obj-$(CONFIG_SCHED_TASK_TRACE) += sched_task_trace.o |
22 | obj-$(CONFIG_SCHED_DEBUG_TRACE) += sched_trace.o | 23 | obj-$(CONFIG_SCHED_DEBUG_TRACE) += sched_trace.o |