diff options
Diffstat (limited to 'arch/sh/Kconfig')
-rw-r--r-- | arch/sh/Kconfig | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index c4a955d25451..2f5352c06a0e 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
@@ -219,6 +219,8 @@ config CPU_SHX3 | |||
219 | config ARCH_SHMOBILE | 219 | config ARCH_SHMOBILE |
220 | bool | 220 | bool |
221 | select ARCH_SUSPEND_POSSIBLE | 221 | select ARCH_SUSPEND_POSSIBLE |
222 | select PM | ||
223 | select PM_RUNTIME | ||
222 | 224 | ||
223 | if SUPERH32 | 225 | if SUPERH32 |
224 | 226 | ||
@@ -396,6 +398,13 @@ config CPU_SUBTYPE_SH7724 | |||
396 | help | 398 | help |
397 | Select SH7724 if you have an SH-MobileR2R CPU. | 399 | Select SH7724 if you have an SH-MobileR2R CPU. |
398 | 400 | ||
401 | config CPU_SUBTYPE_SH7757 | ||
402 | bool "Support SH7757 processor" | ||
403 | select CPU_SH4A | ||
404 | select CPU_SHX2 | ||
405 | help | ||
406 | Select SH7757 if you have a SH4A SH7757 CPU. | ||
407 | |||
399 | config CPU_SUBTYPE_SH7763 | 408 | config CPU_SUBTYPE_SH7763 |
400 | bool "Support SH7763 processor" | 409 | bool "Support SH7763 processor" |
401 | select CPU_SH4A | 410 | select CPU_SH4A |
@@ -758,12 +767,31 @@ config UBC_WAKEUP | |||
758 | 767 | ||
759 | If unsure, say N. | 768 | If unsure, say N. |
760 | 769 | ||
761 | config CMDLINE_BOOL | 770 | choice |
762 | bool "Default bootloader kernel arguments" | 771 | prompt "Kernel command line" |
772 | optional | ||
773 | default CMDLINE_OVERWRITE | ||
774 | help | ||
775 | Setting this option allows the kernel command line arguments | ||
776 | to be set. | ||
777 | |||
778 | config CMDLINE_OVERWRITE | ||
779 | bool "Overwrite bootloader kernel arguments" | ||
780 | help | ||
781 | Given string will overwrite any arguments passed in by | ||
782 | a bootloader. | ||
783 | |||
784 | config CMDLINE_EXTEND | ||
785 | bool "Extend bootloader kernel arguments" | ||
786 | help | ||
787 | Given string will be concatenated with arguments passed in | ||
788 | by a bootloader. | ||
789 | |||
790 | endchoice | ||
763 | 791 | ||
764 | config CMDLINE | 792 | config CMDLINE |
765 | string "Initial kernel command string" | 793 | string "Kernel command line arguments string" |
766 | depends on CMDLINE_BOOL | 794 | depends on CMDLINE_OVERWRITE || CMDLINE_EXTEND |
767 | default "console=ttySC1,115200" | 795 | default "console=ttySC1,115200" |
768 | 796 | ||
769 | endmenu | 797 | endmenu |