From 6c1751efca6eb7e1e6c64535607ca9c45a8657e1 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Thu, 28 May 2015 13:52:44 +0200 Subject: imx6: novena: Reinstate missing CONFIG_FAT_WRITE Commit a380ce6e9698257c4e8be4c0711b09c90a8febff removed CONFIG_FAT_WRITE from novena.h , so Novena lost ability to write FAT partitions. Add this functionality back. Signed-off-by: Marek Vasut Cc: Peter Robinson Cc: Stefano Babic --- include/configs/novena.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/configs') diff --git a/include/configs/novena.h b/include/configs/novena.h index 1dc9d83c2c..d9b7250cad 100644 --- a/include/configs/novena.h +++ b/include/configs/novena.h @@ -24,6 +24,7 @@ #define CONFIG_CMD_DHCP #define CONFIG_CMD_EEPROM #define CONFIG_CMD_I2C +#define CONFIG_FAT_WRITE #define CONFIG_CMD_FUSE #define CONFIG_CMD_MII #define CONFIG_CMD_PCI -- cgit v1.2.1 From fbd18aa610df896ccebbebb3fb88b19dddd7c413 Mon Sep 17 00:00:00 2001 From: Soeren Moch Date: Fri, 29 May 2015 20:32:41 +0200 Subject: tbs2910: add thermal support Signed-off-by: Soeren Moch --- include/configs/tbs2910.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/configs') diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h index e1c993783b..eec024157f 100644 --- a/include/configs/tbs2910.h +++ b/include/configs/tbs2910.h @@ -21,6 +21,8 @@ #define CONFIG_SYS_PROMPT "Matrix U-Boot> " #define CONFIG_SYS_HZ 1000 +#define CONFIG_IMX6_THERMAL + /* Physical Memory Map */ #define CONFIG_NR_DRAM_BANKS 1 #define CONFIG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR -- cgit v1.2.1 From b31fb4b97b4d9c9fcf5a50c39d5d2c277f7008c9 Mon Sep 17 00:00:00 2001 From: Soeren Moch Date: Fri, 29 May 2015 20:32:42 +0200 Subject: tbs2910: add PRE_CONSOLE_BUFFER support Add PRE_CONSOLE_BUFFER support to display early boot messages over HDMI. Signed-off-by: Soeren Moch --- include/configs/tbs2910.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/configs') diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h index eec024157f..42e5821807 100644 --- a/include/configs/tbs2910.h +++ b/include/configs/tbs2910.h @@ -51,6 +51,10 @@ #define CONFIG_CONSOLE_MUX #define CONFIG_CONS_INDEX 1 +#define CONFIG_PRE_CONSOLE_BUFFER +#define CONFIG_PRE_CON_BUF_SZ 4096 +#define CONFIG_PRE_CON_BUF_ADDR 0x7C000000 + /* *** Command definition *** */ #define CONFIG_CMD_BMODE #define CONFIG_CMD_MEMTEST -- cgit v1.2.1 From 66cacc9d5d550e022da9f2d69cadda671fc0512b Mon Sep 17 00:00:00 2001 From: Markus Niebel Date: Thu, 4 Jun 2015 17:25:30 +0200 Subject: arm: imx6: tqma6: add kconfig to board header this is needed later to have Kconfig generated stuff as define. Signed-off-by: Markus Niebel --- include/configs/tqma6.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/configs') diff --git a/include/configs/tqma6.h b/include/configs/tqma6.h index 00294f6d52..aa19f1163f 100644 --- a/include/configs/tqma6.h +++ b/include/configs/tqma6.h @@ -9,6 +9,7 @@ #ifndef __CONFIG_H #define __CONFIG_H +#include /* SPL */ /* #if defined(CONFIG_SPL_BUILD) */ -- cgit v1.2.1 From 959da4ecd024c52be939b74241f93d02166013b8 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Tue, 16 Jun 2015 10:20:01 +0100 Subject: Drop duplicate CONFIG_SYS_NO_FLASH from mx6_common It's defind earlier in the file Signed-off-by: Peter Robinson --- include/configs/mx6_common.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include/configs') diff --git a/include/configs/mx6_common.h b/include/configs/mx6_common.h index 50370e1366..b37477a02b 100644 --- a/include/configs/mx6_common.h +++ b/include/configs/mx6_common.h @@ -87,7 +87,6 @@ #define CONFIG_CMD_FAT /* Miscellaneous configurable options */ -#define CONFIG_SYS_NO_FLASH #undef CONFIG_CMD_IMLS #define CONFIG_SYS_LONGHELP #define CONFIG_SYS_HUSH_PARSER -- cgit v1.2.1 From 691d55607108eae10d5022ea6482401a9cc7ec94 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Tue, 16 Jun 2015 10:20:02 +0100 Subject: mx6cuboxi: drop options that are duplicated in mx6_common These options were merged into mx6_common and were seemingly missed in mx6cuboxi so drop the duplicates Signed-off-by: Peter Robinson --- include/configs/mx6cuboxi.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'include/configs') diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h index 3f99512bce..3d5bba75d3 100644 --- a/include/configs/mx6cuboxi.h +++ b/include/configs/mx6cuboxi.h @@ -186,14 +186,6 @@ "fi; " \ "else run netboot; fi" -/* Miscellaneous configurable options */ -#define CONFIG_SYS_LONGHELP -#define CONFIG_SYS_HUSH_PARSER -#define CONFIG_AUTO_COMPLETE -#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE - -#define CONFIG_CMDLINE_EDITING - /* Physical Memory Map */ #define CONFIG_NR_DRAM_BANKS 1 #define CONFIG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR -- cgit v1.2.1 From aa5a0d98943e1b32109fd1fb325007c6cdcedc50 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Mon, 8 Jun 2015 12:40:41 +0530 Subject: colibri_vf: Increase console IO buffer size to 1024 Increase console IO buffer size to 1024 from the previous value of 256. The previous value was too short for editing environment variables like ubiboot from the console. Signed-off-by: Sanchayan Maity --- include/configs/colibri_vf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/configs') diff --git a/include/configs/colibri_vf.h b/include/configs/colibri_vf.h index f26aad4d8b..d01c69307f 100644 --- a/include/configs/colibri_vf.h +++ b/include/configs/colibri_vf.h @@ -181,7 +181,7 @@ #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " #define CONFIG_SYS_PROMPT "Colibri VFxx # " #undef CONFIG_AUTO_COMPLETE -#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ +#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ #define CONFIG_SYS_PBSIZE \ (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ -- cgit v1.2.1