diff options
author | Richard Braun <rbraun@sceen.net> | 2017-10-31 00:53:02 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-10-31 00:53:02 +0100 |
commit | 3aa27e426b61b92cdb0e5b5503dd12ece85b4d69 (patch) | |
tree | 545c6ce2ff6c0d6ec795cd87a7d0fd623504c28b /kern/Kconfig | |
parent | 3fc6079789f3a6c4b7fdb885bac7da2ffde11634 (diff) | |
parent | b5c668a0b8fdc6e9c3b60765b1a7f321916b49c8 (diff) |
Merge branch 'master' into arm_port_dev
Diffstat (limited to 'kern/Kconfig')
-rw-r--r-- | kern/Kconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kern/Kconfig b/kern/Kconfig index df0cbacb..7c718d4c 100644 --- a/kern/Kconfig +++ b/kern/Kconfig @@ -1,16 +1,16 @@ menu "General setup" -config MULTIPROCESSOR +config SMP bool "Multiprocessor support" default y ---help--- Enable support for machines with multiple processors. config MAX_CPUS - int "Maximum number of supported CPUs" if MULTIPROCESSOR - range 2 512 if MULTIPROCESSOR - default "1" if !MULTIPROCESSOR - default "128" if MULTIPROCESSOR + int "Maximum number of supported CPUs" if SMP + range 2 512 if SMP + default "1" if !SMP + default "128" if SMP ---help--- Maximum number of supported processors. |