diff options
Diffstat (limited to 'target')
-rw-r--r-- | target/config/Config.in.runtime | 1 | ||||
-rw-r--r-- | target/linux/patches/3.18.5/regmap-bool.patch | 27 |
2 files changed, 27 insertions, 1 deletions
diff --git a/target/config/Config.in.runtime b/target/config/Config.in.runtime index f69e561d4..009ea1eb0 100644 --- a/target/config/Config.in.runtime +++ b/target/config/Config.in.runtime @@ -141,7 +141,6 @@ config ADK_RUNTIME_CONSOLE_SERIAL_SPEED prompt "serial console speed" string default "9600" if ADK_TARGET_SYSTEM_FON_FON2100 - default "9600" if ADK_TARGET_SYSTEM_RASPBERRY_PI default "38400" if ADK_TARGET_SYSTEM_PCENGINES_WRAP default "115200" diff --git a/target/linux/patches/3.18.5/regmap-bool.patch b/target/linux/patches/3.18.5/regmap-bool.patch new file mode 100644 index 000000000..5c0ff5e2c --- /dev/null +++ b/target/linux/patches/3.18.5/regmap-bool.patch @@ -0,0 +1,27 @@ +diff -Nur linux-3.18.5.orig/drivers/base/regmap/Kconfig linux-3.18.5/drivers/base/regmap/Kconfig +--- linux-3.18.5.orig/drivers/base/regmap/Kconfig 2015-01-30 02:41:03.000000000 +0100 ++++ linux-3.18.5/drivers/base/regmap/Kconfig 2015-02-02 11:53:27.854106073 +0100 +@@ -10,19 +10,19 @@ + bool + + config REGMAP_I2C +- tristate ++ bool + depends on I2C + + config REGMAP_SPI +- tristate ++ bool + depends on SPI + + config REGMAP_SPMI +- tristate ++ bool + depends on SPMI + + config REGMAP_MMIO +- tristate ++ bool + + config REGMAP_IRQ + bool |