summaryrefslogtreecommitdiff
path: root/target/linux/config/Config.in.cpu
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-02-08 20:09:58 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-09 19:09:47 +0100
commitfbddcd227c26995d2933517b9dbb2d7dd3d5c9b6 (patch)
tree5ebc2dd46911e16b49dea7a569deb7879813fc40 /target/linux/config/Config.in.cpu
parent2456b5f30e399a30e9064dd7c42154386cff19c4 (diff)
add basic support for raspberry pi2
Introduce new board symbols for embedded systems, which use the similar board as basis. As for example raspberry pi and raspberry pi2. And some more updates: Update binutils to 2.25, set gcc 4.9.2 as default. Update glibc to 2.21, set as default. Update gdb to 7.8.2. Update kodi to latest release.
Diffstat (limited to 'target/linux/config/Config.in.cpu')
-rw-r--r--target/linux/config/Config.in.cpu46
1 files changed, 19 insertions, 27 deletions
diff --git a/target/linux/config/Config.in.cpu b/target/linux/config/Config.in.cpu
index 1f158a27c..fa4ead68d 100644
--- a/target/linux/config/Config.in.cpu
+++ b/target/linux/config/Config.in.cpu
@@ -1,21 +1,21 @@
config ADK_KERNEL_MTRR
- boolean
+ bool
default y if ADK_TARGET_CPU_WITH_MTRR
default n
# hyper threading
config ADK_KERNEL_PM_SLEEP_SMP
- boolean
+ bool
default y if ADK_TARGET_CPU_WITH_HT
default n
config ADK_KERNEL_X86_HT
- boolean
+ bool
default y if ADK_TARGET_CPU_WITH_HT
default n
config ADK_KERNEL_USE_GENERIC_SMP_HELPERS
- boolean
+ bool
default y if ADK_TARGET_CPU_WITH_HT
default n
@@ -23,32 +23,25 @@ menu "CPU frequency support"
depends on ADK_TARGET_WITH_CPU_FREQ
config ADK_KERNEL_CPU_FREQ
- boolean
- default n
+ bool
config ADK_KERNEL_CPU_FREQ_GOV_PERFORMANCE
- boolean
- default n
+ bool
config ADK_KERNEL_CPU_FREQ_GOV_POWERSAVE
- boolean
- default n
+ bool
config ADK_KERNEL_CPU_FREQ_GOV_USERSPACE
- boolean
- default n
+ bool
config ADK_KERNEL_CPU_FREQ_GOV_ONDEMAND
- boolean
- default n
+ bool
config ADK_KERNEL_CPU_FREQ_GOV_CONSERVATIVE
- boolean
- default n
+ bool
config ADK_KERNEL_ARM_IMX6_CPUFREQ
- prompt "CPU frequency support for Solidrun IMX6"
- boolean
+ bool "CPU frequency support for IMX6 boards"
select ADK_KERNEL_CPU_FREQ
select ADK_KERNEL_REGULATOR
select ADK_KERNEL_REGULATOR_FIXED_VOLTAGE
@@ -59,11 +52,10 @@ config ADK_KERNEL_ARM_IMX6_CPUFREQ
default n
config ADK_KERNEL_ARM_BCM2835_CPUFREQ
- prompt "CPU frequency support for raspberry-pi"
- boolean
+ bool "CPU frequency support for BCM2835 boards"
select ADK_KERNEL_CPU_FREQ
- depends on ADK_TARGET_SYSTEM_RASPBERRY_PI
- default y if ADK_TARGET_SYSTEM_RASPBERRY_PI
+ depends on ADK_TARGET_BOARD_BCM28XX
+ default y if ADK_TARGET_BOARD_BCM28XX
default n
choice
@@ -71,23 +63,23 @@ prompt "Governor"
depends on ADK_KERNEL_ARM_BCM2835_CPUFREQ || ADK_KERNEL_ARM_IMX6_CPUFREQ
config ADK_KERNEL_CPU_FREQ_DEFAULT_GOV_ONDEMAND
- boolean "ondemand"
+ bool "ondemand"
select ADK_KERNEL_CPU_FREQ_GOV_ONDEMAND
config ADK_KERNEL_CPU_FREQ_DEFAULT_GOV_PERFORMANCE
- boolean "performance"
+ bool "performance"
select ADK_KERNEL_CPU_FREQ_GOV_PERFORMANCE
config ADK_KERNEL_CPU_FREQ_DEFAULT_GOV_POWERSAVE
- boolean "powersave"
+ bool "powersave"
select ADK_KERNEL_CPU_FREQ_GOV_POWERSAVE
config ADK_KERNEL_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
- boolean "conservative"
+ bool "conservative"
select ADK_KERNEL_CPU_FREQ_GOV_CONSERVATIVE
config ADK_KERNEL_CPU_FREQ_DEFAULT_GOV_USERSPACE
- boolean "userspace"
+ bool "userspace"
select ADK_KERNEL_CPU_FREQ_GOV_USERSPACE
endchoice