diff options
Diffstat (limited to 'arch/sh/Kconfig')
-rw-r--r-- | arch/sh/Kconfig | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index cb992c3d6b71..5131d50f851a 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
@@ -48,6 +48,9 @@ config GENERIC_HWEIGHT | |||
48 | config GENERIC_HARDIRQS | 48 | config GENERIC_HARDIRQS |
49 | def_bool y | 49 | def_bool y |
50 | 50 | ||
51 | config GENERIC_HARDIRQS_NO__DO_IRQ | ||
52 | def_bool y | ||
53 | |||
51 | config GENERIC_IRQ_PROBE | 54 | config GENERIC_IRQ_PROBE |
52 | def_bool y | 55 | def_bool y |
53 | 56 | ||
@@ -63,6 +66,10 @@ config GENERIC_TIME | |||
63 | config GENERIC_CLOCKEVENTS | 66 | config GENERIC_CLOCKEVENTS |
64 | def_bool n | 67 | def_bool n |
65 | 68 | ||
69 | config GENERIC_LOCKBREAK | ||
70 | def_bool y | ||
71 | depends on SMP && PREEMPT | ||
72 | |||
66 | config SYS_SUPPORTS_PM | 73 | config SYS_SUPPORTS_PM |
67 | bool | 74 | bool |
68 | 75 | ||
@@ -94,9 +101,6 @@ config ARCH_HAS_ILOG2_U64 | |||
94 | config ARCH_NO_VIRT_TO_BUS | 101 | config ARCH_NO_VIRT_TO_BUS |
95 | def_bool y | 102 | def_bool y |
96 | 103 | ||
97 | config ARCH_SUPPORTS_AOUT | ||
98 | def_bool y | ||
99 | |||
100 | config IO_TRAPPED | 104 | config IO_TRAPPED |
101 | bool | 105 | bool |
102 | 106 | ||
@@ -483,6 +487,23 @@ config CRASH_DUMP | |||
483 | 487 | ||
484 | For more details see Documentation/kdump/kdump.txt | 488 | For more details see Documentation/kdump/kdump.txt |
485 | 489 | ||
490 | config SECCOMP | ||
491 | bool "Enable seccomp to safely compute untrusted bytecode" | ||
492 | depends on PROC_FS | ||
493 | default y | ||
494 | help | ||
495 | This kernel feature is useful for number crunching applications | ||
496 | that may need to compute untrusted bytecode during their | ||
497 | execution. By using pipes or other transports made available to | ||
498 | the process as file descriptors supporting the read/write | ||
499 | syscalls, it's possible to isolate those applications in | ||
500 | their own address space using seccomp. Once seccomp is | ||
501 | enabled via prctl, it cannot be disabled and the task is only | ||
502 | allowed to execute a few safe syscalls defined by each seccomp | ||
503 | mode. | ||
504 | |||
505 | If unsure, say N. | ||
506 | |||
486 | config SMP | 507 | config SMP |
487 | bool "Symmetric multi-processing support" | 508 | bool "Symmetric multi-processing support" |
488 | depends on SYS_SUPPORTS_SMP | 509 | depends on SYS_SUPPORTS_SMP |