aboutsummaryrefslogtreecommitdiffstats
path: root/arch/score/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--arch/score/Kconfig108
-rw-r--r--arch/score/Kconfig.debug29
2 files changed, 0 insertions, 137 deletions
diff --git a/arch/score/Kconfig b/arch/score/Kconfig
deleted file mode 100644
index d881f99c9ddd..000000000000
--- a/arch/score/Kconfig
+++ /dev/null
@@ -1,108 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0
-menu "Machine selection"
-
-config SCORE
- def_bool y
- select GENERIC_IRQ_SHOW
- select GENERIC_IOMAP
- select GENERIC_ATOMIC64
- select HAVE_MEMBLOCK
- select HAVE_MEMBLOCK_NODE_MAP
- select ARCH_DISCARD_MEMBLOCK
- select GENERIC_CPU_DEVICES
- select GENERIC_CLOCKEVENTS
- select HAVE_MOD_ARCH_SPECIFIC
- select VIRT_TO_BUS
- select MODULES_USE_ELF_REL
- select CLONE_BACKWARDS
- select CPU_NO_EFFICIENT_FFS
-
-choice
- prompt "System type"
- default MACH_SPCT6600
-
-config ARCH_SCORE7
- bool "SCORE7 processor"
- select SYS_SUPPORTS_32BIT_KERNEL
-
-config MACH_SPCT6600
- bool "SPCT6600 series based machines"
- select SYS_SUPPORTS_32BIT_KERNEL
-
-config SCORE_SIM
- bool "Score simulator"
- select SYS_SUPPORTS_32BIT_KERNEL
-endchoice
-
-endmenu
-
-config NO_DMA
- bool
- default y
-
-config RWSEM_GENERIC_SPINLOCK
- def_bool y
-
-config GENERIC_HWEIGHT
- def_bool y
-
-config GENERIC_CALIBRATE_DELAY
- def_bool y
-
-menu "Kernel type"
-
-config 32BIT
- def_bool y
-
-config ARCH_FLATMEM_ENABLE
- def_bool y
-
-source "mm/Kconfig"
-
-config MEMORY_START
- hex
- default 0xa0000000
-
-source "kernel/Kconfig.hz"
-source "kernel/Kconfig.preempt"
-
-endmenu
-
-config RWSEM_GENERIC_SPINLOCK
- def_bool y
-
-config LOCKDEP_SUPPORT
- def_bool y
-
-config STACKTRACE_SUPPORT
- def_bool y
-
-source "init/Kconfig"
-
-source "kernel/Kconfig.freezer"
-
-config MMU
- def_bool y
-
-menu "Executable file formats"
-
-source "fs/Kconfig.binfmt"
-
-endmenu
-
-source "net/Kconfig"
-
-source "drivers/Kconfig"
-
-source "fs/Kconfig"
-
-source "arch/score/Kconfig.debug"
-
-source "security/Kconfig"
-
-source "crypto/Kconfig"
-
-source "lib/Kconfig"
-
-config NO_IOMEM
- def_bool y
diff --git a/arch/score/Kconfig.debug b/arch/score/Kconfig.debug
deleted file mode 100644
index 041e51dcdafb..000000000000
--- a/arch/score/Kconfig.debug
+++ /dev/null
@@ -1,29 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0
-menu "Kernel hacking"
-
-config TRACE_IRQFLAGS_SUPPORT
- bool
- default y
-
-source "lib/Kconfig.debug"
-
-config CMDLINE
- string "Default kernel command string"
- default ""
- help
- On some platforms, there is currently no way for the boot loader to
- pass arguments to the kernel. For these platforms, you can supply
- some command-line options at build time by entering them here. In
- other cases you can specify kernel args so that you don't have
- to set them up in board prom initialization routines.
-
-config RUNTIME_DEBUG
- bool "Enable run-time debugging"
- depends on DEBUG_KERNEL
- help
- If you say Y here, some debugging macros will do run-time checking.
- If you say N here, those macros will mostly turn to no-ops. See
- include/asm-score/debug.h for debugging macros.
- If unsure, say N.
-
-endmenu