diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-05-14 04:29:12 -0400 |
---|---|---|
committer | Paul Mundt <lethal@hera.kernel.org> | 2007-06-07 22:43:38 -0400 |
commit | f3d2229852697062d530f19742f0ab792b92873d (patch) | |
tree | fe7f1a56d87b5bea39a60f46b04308a7eab4e98c /arch/sh/boards | |
parent | 882c12c4e1a95e55227f06dbb99eca90f237c018 (diff) |
sh: Rework CPU/board dependencies.
This was a big mess, rework the logic a bit so that we constrain
to a particular subtype and figure out the board support based
on that. This makes building subtype specific kernels supporting
multiple boards possible again.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards')
-rw-r--r-- | arch/sh/boards/renesas/r7780rp/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/boards/renesas/r7780rp/Kconfig b/arch/sh/boards/renesas/r7780rp/Kconfig index 9fb11641fe13..fc8f28e04ba3 100644 --- a/arch/sh/boards/renesas/r7780rp/Kconfig +++ b/arch/sh/boards/renesas/r7780rp/Kconfig | |||
@@ -6,18 +6,18 @@ choice | |||
6 | 6 | ||
7 | config SH_R7780RP | 7 | config SH_R7780RP |
8 | bool "R7780RP-1 board support" | 8 | bool "R7780RP-1 board support" |
9 | select CPU_SUBTYPE_SH7780 | 9 | depends on CPU_SUBTYPE_SH7780 |
10 | 10 | ||
11 | config SH_R7780MP | 11 | config SH_R7780MP |
12 | bool "R7780MP board support" | 12 | bool "R7780MP board support" |
13 | select CPU_SUBTYPE_SH7780 | 13 | depends on CPU_SUBTYPE_SH7780 |
14 | help | 14 | help |
15 | Selecting this option will enable support for the mass-production | 15 | Selecting this option will enable support for the mass-production |
16 | version of the R7780RP. If in doubt, say Y. | 16 | version of the R7780RP. If in doubt, say Y. |
17 | 17 | ||
18 | config SH_R7785RP | 18 | config SH_R7785RP |
19 | bool "R7785RP board support" | 19 | bool "R7785RP board support" |
20 | select CPU_SUBTYPE_SH7785 | 20 | depends on CPU_SUBTYPE_SH7785 |
21 | 21 | ||
22 | endchoice | 22 | endchoice |
23 | 23 | ||