diff options
Diffstat (limited to 'arch/m68knommu')
-rw-r--r-- | arch/m68knommu/Kconfig | 8 | ||||
-rw-r--r-- | arch/m68knommu/kernel/setup.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/arch/m68knommu/Kconfig b/arch/m68knommu/Kconfig index 6abbbb8aac5e..548a7b321633 100644 --- a/arch/m68knommu/Kconfig +++ b/arch/m68knommu/Kconfig | |||
@@ -64,6 +64,9 @@ config TIME_LOW_RES | |||
64 | config NO_IOPORT | 64 | config NO_IOPORT |
65 | def_bool y | 65 | def_bool y |
66 | 66 | ||
67 | config ARCH_SUPPORTS_AOUT | ||
68 | def_bool y | ||
69 | |||
67 | source "init/Kconfig" | 70 | source "init/Kconfig" |
68 | 71 | ||
69 | menu "Processor type and features" | 72 | menu "Processor type and features" |
@@ -522,6 +525,11 @@ config 4KSTACKS | |||
522 | running more threads on a system and also reduces the pressure | 525 | running more threads on a system and also reduces the pressure |
523 | on the VM subsystem for higher order allocations. | 526 | on the VM subsystem for higher order allocations. |
524 | 527 | ||
528 | config HZ | ||
529 | int | ||
530 | default 1000 if CLEOPATRA | ||
531 | default 100 | ||
532 | |||
525 | comment "RAM configuration" | 533 | comment "RAM configuration" |
526 | 534 | ||
527 | config RAMBASE | 535 | config RAMBASE |
diff --git a/arch/m68knommu/kernel/setup.c b/arch/m68knommu/kernel/setup.c index 156c6c662c7e..d6f0200316fe 100644 --- a/arch/m68knommu/kernel/setup.c +++ b/arch/m68knommu/kernel/setup.c | |||
@@ -260,7 +260,7 @@ static void c_stop(struct seq_file *m, void *v) | |||
260 | { | 260 | { |
261 | } | 261 | } |
262 | 262 | ||
263 | struct seq_operations cpuinfo_op = { | 263 | const struct seq_operations cpuinfo_op = { |
264 | .start = c_start, | 264 | .start = c_start, |
265 | .next = c_next, | 265 | .next = c_next, |
266 | .stop = c_stop, | 266 | .stop = c_stop, |