All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all
@ 2012-03-31 17:47 Marek Vasut
  2012-03-31 17:47 ` [U-Boot] [PATCH 02/14] CMD: Remove CMD_AUTOSCRIPT, it's not used Marek Vasut
                   ` (13 more replies)
  0 siblings, 14 replies; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

$ git grep AT91_SPIMUX
include/config_cmd_all.h:#define CONFIG_CMD_AT91_SPIMUX /* AT91 MMC/SPI Mux Support     */

It isn't used anywhere it seems.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
---
 include/config_cmd_all.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/include/config_cmd_all.h b/include/config_cmd_all.h
index 2c6b829..55f4f7a 100644
--- a/include/config_cmd_all.h
+++ b/include/config_cmd_all.h
@@ -15,7 +15,6 @@
 
 #define CONFIG_CMD_AMBAPP	/* AMBA Plug & Play Bus print utility */
 #define CONFIG_CMD_ASKENV	/* ask for env variable		*/
-#define CONFIG_CMD_AT91_SPIMUX	/* AT91 MMC/SPI Mux Support     */
 #define CONFIG_CMD_BDI		/* bdinfo			*/
 #define CONFIG_CMD_BEDBUG	/* Include BedBug Debugger	*/
 #define CONFIG_CMD_BMP		/* BMP support			*/
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 02/14] CMD: Remove CMD_AUTOSCRIPT, it's not used
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 20:06   ` Anatolij Gustschin
  2012-03-31 17:47 ` [U-Boot] [PATCH 03/14] CMD: Drop CMD_CAN, " Marek Vasut
                   ` (12 subsequent siblings)
  13 siblings, 1 reply; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

$ git grep AUTOSCRIPT
include/configs/at91sam9m10g45ek.h:#undef CONFIG_CMD_AUTOSCRIPT
include/configs/gplugd.h:#define CONFIG_CMD_AUTOSCRIPT

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Cc: Prafulla Wadaskar <prafulla@marvell.com>
---
 include/configs/at91sam9m10g45ek.h |    1 -
 include/configs/gplugd.h           |    1 -
 2 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/include/configs/at91sam9m10g45ek.h b/include/configs/at91sam9m10g45ek.h
index 6a02188..159857d 100644
--- a/include/configs/at91sam9m10g45ek.h
+++ b/include/configs/at91sam9m10g45ek.h
@@ -107,7 +107,6 @@
 #undef CONFIG_CMD_FPGA
 #undef CONFIG_CMD_IMI
 #undef CONFIG_CMD_IMLS
-#undef CONFIG_CMD_AUTOSCRIPT
 #undef CONFIG_CMD_LOADS
 
 #define CONFIG_CMD_PING
diff --git a/include/configs/gplugd.h b/include/configs/gplugd.h
index 462cc7e..efff309 100644
--- a/include/configs/gplugd.h
+++ b/include/configs/gplugd.h
@@ -70,7 +70,6 @@
 #define CONFIG_SYS_NO_FLASH		/* Declare no flash (NOR/SPI) */
 #include <config_cmd_default.h>
 #define CONFIG_CMD_I2C
-#define CONFIG_CMD_AUTOSCRIPT
 #undef CONFIG_CMD_FPGA
 #define CONFIG_CMD_USB
 #define CONFIG_CMD_EXT2
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 03/14] CMD: Drop CMD_CAN, it's not used
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
  2012-03-31 17:47 ` [U-Boot] [PATCH 02/14] CMD: Remove CMD_AUTOSCRIPT, it's not used Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 17:47 ` [U-Boot] [PATCH 04/14] CMD: Drop CMD_DCR, " Marek Vasut
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

$ git grep CMD_CAN
include/configs/jadecpu.h:#define CONFIG_CMD_CAN

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Matthias Weisser <weisserm@arcor.de>
---
 include/configs/jadecpu.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/include/configs/jadecpu.h b/include/configs/jadecpu.h
index f72ee02..d644fea 100644
--- a/include/configs/jadecpu.h
+++ b/include/configs/jadecpu.h
@@ -130,7 +130,6 @@
 #undef CONFIG_CMD_XIMG
 
 #define CONFIG_CMD_BMP
-#define CONFIG_CMD_CAN
 #define CONFIG_CMD_DHCP
 #define CONFIG_CMD_ELF
 #define CONFIG_CMD_FAT
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 04/14] CMD: Drop CMD_DCR, it's not used
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
  2012-03-31 17:47 ` [U-Boot] [PATCH 02/14] CMD: Remove CMD_AUTOSCRIPT, it's not used Marek Vasut
  2012-03-31 17:47 ` [U-Boot] [PATCH 03/14] CMD: Drop CMD_CAN, " Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 20:08   ` Anatolij Gustschin
  2012-03-31 17:47 ` [U-Boot] [PATCH 05/14] CMD: Drop CONFIG_CMD_DFL, " Marek Vasut
                   ` (10 subsequent siblings)
  13 siblings, 1 reply; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

$ git grep CMD_DCR
include/configs/ep8260.h:#undef CONFIG_CMD_DCR

Signed-off-by: Marek Vasut <marex@denx.de>
---
 include/configs/ep8260.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/include/configs/ep8260.h b/include/configs/ep8260.h
index f19360d..221d3e0 100644
--- a/include/configs/ep8260.h
+++ b/include/configs/ep8260.h
@@ -325,7 +325,6 @@
 #define CONFIG_CMD_SDRAM
 #define CONFIG_CMD_SNTP
 
-#undef CONFIG_CMD_DCR
 #undef CONFIG_CMD_XIMG
 
 /* Where do the internal registers live? */
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 05/14] CMD: Drop CONFIG_CMD_DFL, it's not used
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (2 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 04/14] CMD: Drop CMD_DCR, " Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 20:13   ` Anatolij Gustschin
  2012-04-02  0:12   ` Nobuhiro Iwamatsu
  2012-03-31 17:47 ` [U-Boot] [PATCH 06/14] CMD: Drop CONFIG_CMD_EMMC, " Marek Vasut
                   ` (9 subsequent siblings)
  13 siblings, 2 replies; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

$ git grep CMD_DFL
board/atc/ti113x.c:#define CMD_DFLT (PCI_COMMAND_IO|PCI_COMMAND_MEMORY| \
board/atc/ti113x.c:     pci_writew (s, PCI_COMMAND, CMD_DFLT);
board/cpc45/pd67290.c:#define CMD_DFLT (PCI_COMMAND_IO|PCI_COMMAND_MEMORY| \
board/cpc45/pd67290.c:  pci_writew (s, PCI_COMMAND, CMD_DFLT);
drivers/pcmcia/i82365.c:#define CMD_DFLT (PCI_COMMAND_IO|PCI_COMMAND_MEMORY| \
drivers/pcmcia/i82365.c:        pci_writew (s, PCI_COMMAND, CMD_DFLT);
include/configs/MBX.h:#define CONFIG_CMD_DFL
include/configs/MigoR.h:#define CONFIG_CMD_DFL
include/configs/digsy_mtc.h:#define CONFIG_CMD_DFL
include/configs/ms7722se.h:#define CONFIG_CMD_DFL
include/configs/ms7750se.h:#define CONFIG_CMD_DFL
include/configs/r2dplus.h:#define CONFIG_CMD_DFL
include/configs/sh7757lcr.h:#define CONFIG_CMD_DFL
include/configs/sh7785lcr.h:#define CONFIG_CMD_DFL

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Pfister_Werner at intercontrol.de
Cc: iwamatsu at nigauri.org
Cc: nobuhiro.iwamatsu.yj at renesas.com
Cc: vapier at gentoo.org
Cc: wd at denx.de
Cc: yoshihiro.shimoda.uh at renesas.com
---
 include/configs/MBX.h       |    1 -
 include/configs/MigoR.h     |    1 -
 include/configs/digsy_mtc.h |    1 -
 include/configs/ms7722se.h  |    1 -
 include/configs/ms7750se.h  |    1 -
 include/configs/r2dplus.h   |    1 -
 include/configs/sh7757lcr.h |    1 -
 include/configs/sh7785lcr.h |    1 -
 8 files changed, 0 insertions(+), 8 deletions(-)

diff --git a/include/configs/MBX.h b/include/configs/MBX.h
index cb5b023..79780bd 100644
--- a/include/configs/MBX.h
+++ b/include/configs/MBX.h
@@ -87,7 +87,6 @@
  * Command line configuration.
  */
 #define CONFIG_CMD_NET
-#define CONFIG_CMD_DFL
 #define CONFIG_CMD_SDRAM
 #define CONFIG_CMD_PCMCIA
 #define CONFIG_CMD_IDE
diff --git a/include/configs/MigoR.h b/include/configs/MigoR.h
index 619a800..84ba78f 100644
--- a/include/configs/MigoR.h
+++ b/include/configs/MigoR.h
@@ -38,7 +38,6 @@
 #define CONFIG_CMD_NET
 #define CONFIG_CMD_PING
 #define CONFIG_CMD_NFS
-#define CONFIG_CMD_DFL
 #define CONFIG_CMD_SDRAM
 #define CONFIG_CMD_SAVEENV
 
diff --git a/include/configs/digsy_mtc.h b/include/configs/digsy_mtc.h
index d517334..1f66023 100644
--- a/include/configs/digsy_mtc.h
+++ b/include/configs/digsy_mtc.h
@@ -119,7 +119,6 @@
 #ifdef CONFIG_VIDEO
 #define CONFIG_CMD_BMP
 #endif
-#define CONFIG_CMD_DFL
 #define CONFIG_CMD_CACHE
 #define CONFIG_CMD_DATE
 #define CONFIG_CMD_DHCP
diff --git a/include/configs/ms7722se.h b/include/configs/ms7722se.h
index 7cf641f..f110490 100644
--- a/include/configs/ms7722se.h
+++ b/include/configs/ms7722se.h
@@ -35,7 +35,6 @@
 #define CONFIG_CMD_NET
 #define CONFIG_CMD_NFS
 #define CONFIG_CMD_PING
-#define CONFIG_CMD_DFL
 #define CONFIG_CMD_SDRAM
 #define CONFIG_CMD_MEMORY
 #define CONFIG_CMD_SAVEENV
diff --git a/include/configs/ms7750se.h b/include/configs/ms7750se.h
index 03f52f3..52e15cc 100644
--- a/include/configs/ms7750se.h
+++ b/include/configs/ms7750se.h
@@ -38,7 +38,6 @@
  */
 /*#include <config_cmd_default.h>*/
 
-#define CONFIG_CMD_DFL
 #define CONFIG_CMD_FLASH
 #define CONFIG_CMD_SAVEENV
 
diff --git a/include/configs/r2dplus.h b/include/configs/r2dplus.h
index 0ce3fa8..9cdfc14 100644
--- a/include/configs/r2dplus.h
+++ b/include/configs/r2dplus.h
@@ -15,7 +15,6 @@
  */
 #include <config_cmd_default.h>
 
-#define CONFIG_CMD_DFL
 #define CONFIG_CMD_CACHE
 #define CONFIG_CMD_FLASH
 #define CONFIG_CMD_PCI
diff --git a/include/configs/sh7757lcr.h b/include/configs/sh7757lcr.h
index 73d2a87..708bff7 100644
--- a/include/configs/sh7757lcr.h
+++ b/include/configs/sh7757lcr.h
@@ -41,7 +41,6 @@
 #define CONFIG_CMD_MII
 #define CONFIG_CMD_PING
 #define CONFIG_CMD_NFS
-#define CONFIG_CMD_DFL
 #define CONFIG_CMD_SDRAM
 #define CONFIG_CMD_SF
 #define CONFIG_CMD_RUN
diff --git a/include/configs/sh7785lcr.h b/include/configs/sh7785lcr.h
index 1e71bcc..9c32bfc 100644
--- a/include/configs/sh7785lcr.h
+++ b/include/configs/sh7785lcr.h
@@ -37,7 +37,6 @@
 #define CONFIG_CMD_NET
 #define CONFIG_CMD_PING
 #define CONFIG_CMD_NFS
-#define CONFIG_CMD_DFL
 #define CONFIG_CMD_SDRAM
 #define CONFIG_CMD_RUN
 #define CONFIG_CMD_SAVEENV
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 06/14] CMD: Drop CONFIG_CMD_EMMC, it's not used
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (3 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 05/14] CMD: Drop CONFIG_CMD_DFL, " Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 17:47 ` [U-Boot] [PATCH 07/14] CMD: Fix typo KGBD -> KGDB on debris board Marek Vasut
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

$ git grep CMD_EMMC
include/configs/u8500_href.h:#define CONFIG_CMD_EMMC

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: dirk.behme at googlemail.com
Cc: helmut.raiger at hale.at
Cc: john.rigby at linaro.org
Cc: vapier at gentoo.org
---
 include/configs/u8500_href.h |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/include/configs/u8500_href.h b/include/configs/u8500_href.h
index 4747fbd..95028de 100644
--- a/include/configs/u8500_href.h
+++ b/include/configs/u8500_href.h
@@ -95,7 +95,6 @@
 #define CONFIG_CMD_MMC
 #define CONFIG_CMD_FAT
 #define CONFIG_CMD_EXT2
-#define CONFIG_CMD_EMMC
 #define CONFIG_CMD_SOURCE
 #define CONFIG_CMD_I2C
 
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 07/14] CMD: Fix typo KGBD -> KGDB on debris board
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (4 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 06/14] CMD: Drop CONFIG_CMD_EMMC, " Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 21:02   ` Anatolij Gustschin
  2012-03-31 17:47 ` [U-Boot] [PATCH 08/14] CMD: Remove CMD_LOG, it's unused Marek Vasut
                   ` (7 subsequent siblings)
  13 siblings, 1 reply; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: dogoil at etinsys.com
---
 include/configs/debris.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/configs/debris.h b/include/configs/debris.h
index 60c7c40..303630d 100644
--- a/include/configs/debris.h
+++ b/include/configs/debris.h
@@ -148,7 +148,7 @@
 #define CONFIG_CMD_ELF
 #define CONFIG_CMD_I2C
 #define CONFIG_CMD_JFFS2
-#define CONFIG_CMD_KGBD
+#define CONFIG_CMD_KGDB
 #define CONFIG_CMD_PCI
 #define CONFIG_CMD_PING
 #define CONFIG_CMD_SAVES
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 08/14] CMD: Remove CMD_LOG, it's unused
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (5 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 07/14] CMD: Fix typo KGBD -> KGDB on debris board Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 21:09   ` Anatolij Gustschin
  2012-03-31 17:47 ` [U-Boot] [PATCH 09/14] HWW1U1A: Fix CMD_SHA1 -> CMD_SHA1SUM Marek Vasut
                   ` (6 subsequent siblings)
  13 siblings, 1 reply; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

$ git grep CMD_LOG
include/configs/kilauea.h:#define CONFIG_CMD_LOG
include/configs/lwmon5.h:#define CONFIG_CMD_LOG
include/configs/makalu.h:#define CONFIG_CMD_LOG
include/configs/quad100hd.h:#undef CONFIG_CMD_LOG
include/configs/zeus.h:#define CONFIG_CMD_LOG

Signed-off-by: Marek Vasut <marex@denx.de>
---
 include/configs/kilauea.h   |    1 -
 include/configs/lwmon5.h    |    1 -
 include/configs/makalu.h    |    1 -
 include/configs/quad100hd.h |    1 -
 include/configs/zeus.h      |    1 -
 5 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/include/configs/kilauea.h b/include/configs/kilauea.h
index 621dbb8..d505a41 100644
--- a/include/configs/kilauea.h
+++ b/include/configs/kilauea.h
@@ -447,7 +447,6 @@
  */
 #define CONFIG_CMD_CHIP_CONFIG
 #define CONFIG_CMD_DATE
-#define CONFIG_CMD_LOG
 #define CONFIG_CMD_NAND
 #define CONFIG_CMD_PCI
 #define CONFIG_CMD_SNTP
diff --git a/include/configs/lwmon5.h b/include/configs/lwmon5.h
index a6f2864..68215fd 100644
--- a/include/configs/lwmon5.h
+++ b/include/configs/lwmon5.h
@@ -435,7 +435,6 @@
 #define CONFIG_CMD_FAT
 #define CONFIG_CMD_I2C
 #define CONFIG_CMD_IRQ
-#define CONFIG_CMD_LOG
 #define CONFIG_CMD_MII
 #define CONFIG_CMD_NET
 #define CONFIG_CMD_NFS
diff --git a/include/configs/makalu.h b/include/configs/makalu.h
index fcc789d..6c1b136 100644
--- a/include/configs/makalu.h
+++ b/include/configs/makalu.h
@@ -252,7 +252,6 @@
  */
 #define CONFIG_CMD_DATE
 #define CONFIG_CMD_DTT
-#define CONFIG_CMD_LOG
 #define CONFIG_CMD_PCI
 #define CONFIG_CMD_SNTP
 
diff --git a/include/configs/quad100hd.h b/include/configs/quad100hd.h
index dc5ec3a..5d0c385 100644
--- a/include/configs/quad100hd.h
+++ b/include/configs/quad100hd.h
@@ -69,7 +69,6 @@
 #define CONFIG_CMD_I2C
 #undef CONFIG_CMD_IRQ
 #define CONFIG_CMD_JFFS2
-#undef CONFIG_CMD_LOG
 #undef CONFIG_CMD_MII
 #define CONFIG_CMD_NAND
 #undef CONFIG_CMD_PING
diff --git a/include/configs/zeus.h b/include/configs/zeus.h
index 63279b0..2556e3b 100644
--- a/include/configs/zeus.h
+++ b/include/configs/zeus.h
@@ -78,7 +78,6 @@
 #define CONFIG_CMD_ELF
 #define CONFIG_CMD_I2C
 #define CONFIG_CMD_IRQ
-#define CONFIG_CMD_LOG
 #define CONFIG_CMD_MII
 #define CONFIG_CMD_NET
 #define CONFIG_CMD_NFS
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 09/14] HWW1U1A: Fix CMD_SHA1 -> CMD_SHA1SUM
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (6 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 08/14] CMD: Remove CMD_LOG, it's unused Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 21:03   ` Anatolij Gustschin
  2012-03-31 17:47 ` [U-Boot] [PATCH 10/14] CMD: Remove CMD_MEM and CMD_LOOPW, they're unused Marek Vasut
                   ` (5 subsequent siblings)
  13 siblings, 1 reply; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

Fix typo

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Kyle.D.Moffett at boeing.com
---
 include/configs/HWW1U1A.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/configs/HWW1U1A.h b/include/configs/HWW1U1A.h
index 01597b9..f08d78b 100644
--- a/include/configs/HWW1U1A.h
+++ b/include/configs/HWW1U1A.h
@@ -422,7 +422,7 @@ const char *hww1u1a_get_ps1(void);
 #define CONFIG_MD5
 #define CONFIG_SHA1
 #define CONFIG_CMD_MD5SUM
-#define CONFIG_CMD_SHA1
+#define CONFIG_CMD_SHA1SUM
 #define CONFIG_CMD_ASKENV
 #define CONFIG_CMD_SETEXPR
 
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 10/14] CMD: Remove CMD_MEM and CMD_LOOPW, they're unused
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (7 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 09/14] HWW1U1A: Fix CMD_SHA1 -> CMD_SHA1SUM Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 20:59   ` Anatolij Gustschin
  2012-03-31 17:47 ` [U-Boot] [PATCH 11/14] CMD: Fix typo CMD_FSL -> CMD_MFSL in readme Marek Vasut
                   ` (4 subsequent siblings)
  13 siblings, 1 reply; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marek Vasut <marex@denx.de>
---
 README |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/README b/README
index c98afa7..0ebe877 100644
--- a/README
+++ b/README
@@ -3379,10 +3379,6 @@ Low Level (hardware related) configuration options:
 		and crc32 is the correct crc32 which the
 		area should have.
 
-- CONFIG_LOOPW
-		Add the "loopw" memory command. This only takes effect if
-		the memory commands are activated globally (CONFIG_CMD_MEM).
-
 - CONFIG_MX_CYCLIC
 		Add the "mdc" and "mwc" memory commands. These are cyclic
 		"md/mw" commands.
@@ -3394,9 +3390,6 @@ Low Level (hardware related) configuration options:
 		=> mwc.l 100 12345678 10
 		This command will write 12345678 to address 100 all 10 ms.
 
-		This only takes effect if the memory commands are activated
-		globally (CONFIG_CMD_MEM).
-
 - CONFIG_SKIP_LOWLEVEL_INIT
 		[ARM, NDS32, MIPS only] If this variable is defined, then certain
 		low level initializations (like setting up the memory
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 11/14] CMD: Fix typo CMD_FSL -> CMD_MFSL in readme
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (8 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 10/14] CMD: Remove CMD_MEM and CMD_LOOPW, they're unused Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 21:11   ` Anatolij Gustschin
  2012-03-31 17:47 ` [U-Boot] [PATCH 12/14] CMD: Fix CONFIG_CMD_SAVEBP_WRITE_SIZE -> CONFIG_CMD_SPL_WRITE_SIZE Marek Vasut
                   ` (3 subsequent siblings)
  13 siblings, 1 reply; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: vapier at gentoo.org
---
 README |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/README b/README
index 0ebe877..bb310e9 100644
--- a/README
+++ b/README
@@ -808,7 +808,7 @@ The following options need to be configured:
 		CONFIG_CMD_TIME		* run command and report execution time
 		CONFIG_CMD_USB		* USB support
 		CONFIG_CMD_CDP		* Cisco Discover Protocol support
-		CONFIG_CMD_FSL		* Microblaze FSL support
+		CONFIG_CMD_MFSL		* Microblaze FSL support
 
 
 		EXAMPLE: If you want all functions except of network
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 12/14] CMD: Fix CONFIG_CMD_SAVEBP_WRITE_SIZE -> CONFIG_CMD_SPL_WRITE_SIZE
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (9 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 11/14] CMD: Fix typo CMD_FSL -> CMD_MFSL in readme Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 17:47 ` [U-Boot] [PATCH 13/14] CMD: CONFIG_CMD_SETECPR -> CONFIG_CMD_SETEXPR on omap3_logic Marek Vasut
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: scottwood at freescale.com
---
 arch/arm/cpu/armv7/omap-common/spl_nand.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/cpu/armv7/omap-common/spl_nand.c b/arch/arm/cpu/armv7/omap-common/spl_nand.c
index 1295e88..8cf55c9 100644
--- a/arch/arm/cpu/armv7/omap-common/spl_nand.c
+++ b/arch/arm/cpu/armv7/omap-common/spl_nand.c
@@ -54,7 +54,7 @@ void spl_nand_load_image(void)
 		 * load parameter image
 		 * load to temp position since nand_spl_load_image reads
 		 * a whole block which is typically larger than
-		 * CONFIG_CMD_SAVEBP_WRITE_SIZE therefore may overwrite
+		 * CONFIG_CMD_SPL_WRITE_SIZE therefore may overwrite
 		 * following sections like BSS
 		 */
 		nand_spl_load_image(CONFIG_CMD_SPL_NAND_OFS,
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 13/14] CMD: CONFIG_CMD_SETECPR -> CONFIG_CMD_SETEXPR on omap3_logic
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (10 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 12/14] CMD: Fix CONFIG_CMD_SAVEBP_WRITE_SIZE -> CONFIG_CMD_SPL_WRITE_SIZE Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 21:20   ` Anatolij Gustschin
  2012-03-31 17:47 ` [U-Boot] [PATCH 14/14] CMD: Fix CONFIG_CMD_STORAGE -> CONFIG_CMD_USB_STORAGE Marek Vasut
  2012-03-31 20:04 ` [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Anatolij Gustschin
  13 siblings, 1 reply; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marek Vasut <marex@denx.de>
---
 include/configs/omap3_logic.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/configs/omap3_logic.h b/include/configs/omap3_logic.h
index 01360f6..4ac17cc 100644
--- a/include/configs/omap3_logic.h
+++ b/include/configs/omap3_logic.h
@@ -122,7 +122,7 @@
 #define CONFIG_CMD_NET      /* bootp, tftpboot, rarpboot    */
 #define CONFIG_CMD_PING
 #define CONFIG_CMD_DHCP
-#define CONFIG_CMD_SETECPR	/* Evaluate expressions		*/
+#define CONFIG_CMD_SETEXPR	/* Evaluate expressions		*/
 
 #undef CONFIG_CMD_FLASH		/* flinfo, erase, protect	*/
 #undef CONFIG_CMD_FPGA		/* FPGA configuration Support	*/
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 14/14] CMD: Fix CONFIG_CMD_STORAGE -> CONFIG_CMD_USB_STORAGE
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (11 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 13/14] CMD: CONFIG_CMD_SETECPR -> CONFIG_CMD_SETEXPR on omap3_logic Marek Vasut
@ 2012-03-31 17:47 ` Marek Vasut
  2012-03-31 22:35   ` Anatolij Gustschin
  2012-03-31 20:04 ` [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Anatolij Gustschin
  13 siblings, 1 reply; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 17:47 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marek Vasut <marex@denx.de>
---
 include/configs/am3517_crane.h     |    2 +-
 include/configs/am3517_evm.h       |    2 +-
 include/configs/cam_enc_4xx.h      |    2 +-
 include/configs/da830evm.h         |    2 +-
 include/configs/davinci_dm365evm.h |    4 ++--
 include/configs/davinci_dvevm.h    |    2 +-
 include/configs/omap3_evm_common.h |    2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/include/configs/am3517_crane.h b/include/configs/am3517_crane.h
index b0dd2f0..bfa5676 100644
--- a/include/configs/am3517_crane.h
+++ b/include/configs/am3517_crane.h
@@ -111,7 +111,7 @@
 #define CONFIG_CMD_USB
 
 #define CONFIG_USB_STORAGE
-#define CONGIG_CMD_STORAGE
+#define CONFIG_CMD_USB_STORAGE
 #define CONFIG_CMD_FAT
 
 #ifdef CONFIG_USB_KEYBOARD
diff --git a/include/configs/am3517_evm.h b/include/configs/am3517_evm.h
index b5f75d1..00e85a9 100644
--- a/include/configs/am3517_evm.h
+++ b/include/configs/am3517_evm.h
@@ -110,7 +110,7 @@
 #define CONFIG_CMD_USB
 
 #define CONFIG_USB_STORAGE
-#define CONGIG_CMD_STORAGE
+#define CONGIG_CMD_USB_STORAGE
 #define CONFIG_CMD_FAT
 
 #ifdef CONFIG_USB_KEYBOARD
diff --git a/include/configs/cam_enc_4xx.h b/include/configs/cam_enc_4xx.h
index 99856eb..631d6d7 100644
--- a/include/configs/cam_enc_4xx.h
+++ b/include/configs/cam_enc_4xx.h
@@ -516,7 +516,7 @@
 
 #define CONFIG_CMD_USB         /* include support for usb cmd */
 #define CONFIG_USB_STORAGE     /* MSC class support */
-#define CONFIG_CMD_STORAGE     /* inclue support for usb-storage cmd */
+#define CONFIG_CMD_USB_STORAGE     /* inclue support for usb-storage cmd */
 #define CONFIG_CMD_FAT         /* inclue support for FAT/storage */
 #define CONFIG_DOS_PARTITION   /* inclue support for FAT/storage */
 
diff --git a/include/configs/da830evm.h b/include/configs/da830evm.h
index 4532e4f..0b45c12 100644
--- a/include/configs/da830evm.h
+++ b/include/configs/da830evm.h
@@ -248,7 +248,7 @@
 #define CONFIG_CMD_USB		/* include support for usb cmd */
 
 #define CONFIG_USB_STORAGE	/* MSC class support */
-#define CONFIG_CMD_STORAGE	/* inclue support for usb-storage cmd */
+#define CONFIG_CMD_USB_STORAGE	/* inclue support for usb-storage cmd */
 #define CONFIG_CMD_FAT		/* inclue support for FAT/storage */
 #define CONFIG_DOS_PARTITION	/* inclue support for FAT/storage */
 
diff --git a/include/configs/davinci_dm365evm.h b/include/configs/davinci_dm365evm.h
index a75bce6..38bd4cb 100644
--- a/include/configs/davinci_dm365evm.h
+++ b/include/configs/davinci_dm365evm.h
@@ -99,7 +99,7 @@
 
 #ifdef CONFIG_USB_DAVINCI
 #define CONFIG_CMD_USB         /* include support for usb      */
-#define CONFIG_CMD_STORAGE     /* include support for usb      */
+#define CONFIG_CMD_USB_STORAGE     /* include support for usb      */
 #define CONFIG_CMD_FAT         /* include support for FAT/storage*/
 #define CONFIG_DOS_PARTITION   /* include support for FAT/storage*/
 #endif
@@ -107,7 +107,7 @@
 #ifdef CONFIG_MUSB_HCD         /* include support for usb host */
 #define CONFIG_CMD_USB         /* include support for usb cmd */
 #define CONFIG_USB_STORAGE     /* MSC class support */
-#define CONFIG_CMD_STORAGE     /* inclue support for usb-storage cmd */
+#define CONFIG_CMD_USB_STORAGE     /* inclue support for usb-storage cmd */
 #define CONFIG_CMD_FAT         /* inclue support for FAT/storage */
 #define CONFIG_DOS_PARTITION   /* inclue support for FAT/storage */
 
diff --git a/include/configs/davinci_dvevm.h b/include/configs/davinci_dvevm.h
index 310d577..3976149 100644
--- a/include/configs/davinci_dvevm.h
+++ b/include/configs/davinci_dvevm.h
@@ -222,7 +222,7 @@
 #define CONFIG_CMD_USB
 #ifdef CONFIG_MUSB_HCD
 #define CONFIG_USB_STORAGE
-#define CONFIG_CMD_STORAGE
+#define CONFIG_CMD_USB_STORAGE
 #define CONFIG_CMD_FAT
 #define CONFIG_DOS_PARTITION
 #endif
diff --git a/include/configs/omap3_evm_common.h b/include/configs/omap3_evm_common.h
index 4910dda..4dfa44b 100644
--- a/include/configs/omap3_evm_common.h
+++ b/include/configs/omap3_evm_common.h
@@ -168,7 +168,7 @@
 #define CONFIG_CMD_USB
 
 #define CONFIG_USB_STORAGE
-#define CONGIG_CMD_STORAGE
+#define CONGIG_CMD_USB_STORAGE
 #define CONFIG_CMD_FAT
 
 #ifdef CONFIG_USB_KEYBOARD
-- 
1.7.9.1

^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all
  2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
                   ` (12 preceding siblings ...)
  2012-03-31 17:47 ` [U-Boot] [PATCH 14/14] CMD: Fix CONFIG_CMD_STORAGE -> CONFIG_CMD_USB_STORAGE Marek Vasut
@ 2012-03-31 20:04 ` Anatolij Gustschin
  13 siblings, 0 replies; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 20:04 UTC (permalink / raw)
  To: u-boot

Acked-by: Anatolij Gustschin <agust@denx.de>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 02/14] CMD: Remove CMD_AUTOSCRIPT, it's not used
  2012-03-31 17:47 ` [U-Boot] [PATCH 02/14] CMD: Remove CMD_AUTOSCRIPT, it's not used Marek Vasut
@ 2012-03-31 20:06   ` Anatolij Gustschin
  0 siblings, 0 replies; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 20:06 UTC (permalink / raw)
  To: u-boot

Acked-by: Anatolij Gustschin <agust@denx.de>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 04/14] CMD: Drop CMD_DCR, it's not used
  2012-03-31 17:47 ` [U-Boot] [PATCH 04/14] CMD: Drop CMD_DCR, " Marek Vasut
@ 2012-03-31 20:08   ` Anatolij Gustschin
  2012-03-31 20:13     ` Marek Vasut
  0 siblings, 1 reply; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 20:08 UTC (permalink / raw)
  To: u-boot

Acked-by: Anatolij Gustschin <agust@denx.de>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 04/14] CMD: Drop CMD_DCR, it's not used
  2012-03-31 20:08   ` Anatolij Gustschin
@ 2012-03-31 20:13     ` Marek Vasut
  0 siblings, 0 replies; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 20:13 UTC (permalink / raw)
  To: u-boot

Dear Anatolij Gustschin,

> Acked-by: Anatolij Gustschin <agust@denx.de>

Please make dead sure the patches are correct before you give me any ack, I'd 
really love a thorough review. I need to work on my patch submission, I have 
this feeling I produce crap patches for a while now.

Best regards,
Marek Vasut

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 05/14] CMD: Drop CONFIG_CMD_DFL, it's not used
  2012-03-31 17:47 ` [U-Boot] [PATCH 05/14] CMD: Drop CONFIG_CMD_DFL, " Marek Vasut
@ 2012-03-31 20:13   ` Anatolij Gustschin
  2012-04-02  0:12   ` Nobuhiro Iwamatsu
  1 sibling, 0 replies; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 20:13 UTC (permalink / raw)
  To: u-boot

Acked-by: Anatolij Gustschin <agust@denx.de>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 10/14] CMD: Remove CMD_MEM and CMD_LOOPW, they're unused
  2012-03-31 17:47 ` [U-Boot] [PATCH 10/14] CMD: Remove CMD_MEM and CMD_LOOPW, they're unused Marek Vasut
@ 2012-03-31 20:59   ` Anatolij Gustschin
  2012-03-31 21:29     ` Marek Vasut
  0 siblings, 1 reply; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 20:59 UTC (permalink / raw)
  To: u-boot

Hi Marek,

On Sat, 31 Mar 2012 19:47:15 +0200
Marek Vasut <marex@denx.de> wrote:

> Signed-off-by: Marek Vasut <marex@denx.de>
> ---
>  README |    7 -------
>  1 files changed, 0 insertions(+), 7 deletions(-)
> 
> diff --git a/README b/README
> index c98afa7..0ebe877 100644
> --- a/README
> +++ b/README
> @@ -3379,10 +3379,6 @@ Low Level (hardware related) configuration options:
>  		and crc32 is the correct crc32 which the
>  		area should have.
>  
> -- CONFIG_LOOPW
> -		Add the "loopw" memory command. This only takes effect if
> -		the memory commands are activated globally (CONFIG_CMD_MEM).

Please, no. CONFIG_LOOPW is used if CONFIG_CMD_MEMORY is defined. This
text should be fixed instead: s/CONFIG_CMD_MEM/CONFIG_CMD_MEMORY/

Also it probably makes sense to change CONFIG_LOOPW to CONFIG_CMD_LOOPW
since this configures an U-Boot command.

Same for CONFIG_MX_CYCLIC.

...
> @@ -3394,9 +3390,6 @@ Low Level (hardware related) configuration options:
>  		=> mwc.l 100 12345678 10
>  		This command will write 12345678 to address 100 all 10 ms.
>  
> -		This only takes effect if the memory commands are activated
> -		globally (CONFIG_CMD_MEM).
> -

Same applies here.

Thanks,
Anatolij

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 07/14] CMD: Fix typo KGBD -> KGDB on debris board
  2012-03-31 17:47 ` [U-Boot] [PATCH 07/14] CMD: Fix typo KGBD -> KGDB on debris board Marek Vasut
@ 2012-03-31 21:02   ` Anatolij Gustschin
  2012-03-31 21:28     ` Marek Vasut
  0 siblings, 1 reply; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 21:02 UTC (permalink / raw)
  To: u-boot

On Sat, 31 Mar 2012 19:47:12 +0200
Marek Vasut <marex@denx.de> wrote:

> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: dogoil at etinsys.com
> ---
>  include/configs/debris.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

This will increase the U-Boot image size for this board, but hopefully
it is tolerable, so

Acked-by: Anatolij Gustschin <agust@denx.de>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 09/14] HWW1U1A: Fix CMD_SHA1 -> CMD_SHA1SUM
  2012-03-31 17:47 ` [U-Boot] [PATCH 09/14] HWW1U1A: Fix CMD_SHA1 -> CMD_SHA1SUM Marek Vasut
@ 2012-03-31 21:03   ` Anatolij Gustschin
  0 siblings, 0 replies; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 21:03 UTC (permalink / raw)
  To: u-boot

Acked-by: Anatolij Gustschin <agust@denx.de>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 08/14] CMD: Remove CMD_LOG, it's unused
  2012-03-31 17:47 ` [U-Boot] [PATCH 08/14] CMD: Remove CMD_LOG, it's unused Marek Vasut
@ 2012-03-31 21:09   ` Anatolij Gustschin
  0 siblings, 0 replies; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 21:09 UTC (permalink / raw)
  To: u-boot

Acked-by: Anatolij Gustschin <agust@denx.de>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 11/14] CMD: Fix typo CMD_FSL -> CMD_MFSL in readme
  2012-03-31 17:47 ` [U-Boot] [PATCH 11/14] CMD: Fix typo CMD_FSL -> CMD_MFSL in readme Marek Vasut
@ 2012-03-31 21:11   ` Anatolij Gustschin
  0 siblings, 0 replies; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 21:11 UTC (permalink / raw)
  To: u-boot

Acked-by: Anatolij Gustschin <agust@denx.de>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 13/14] CMD: CONFIG_CMD_SETECPR -> CONFIG_CMD_SETEXPR on omap3_logic
  2012-03-31 17:47 ` [U-Boot] [PATCH 13/14] CMD: CONFIG_CMD_SETECPR -> CONFIG_CMD_SETEXPR on omap3_logic Marek Vasut
@ 2012-03-31 21:20   ` Anatolij Gustschin
  0 siblings, 0 replies; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 21:20 UTC (permalink / raw)
  To: u-boot

Acked-by: Anatolij Gustschin <agust@denx.de>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 07/14] CMD: Fix typo KGBD -> KGDB on debris board
  2012-03-31 21:02   ` Anatolij Gustschin
@ 2012-03-31 21:28     ` Marek Vasut
  0 siblings, 0 replies; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 21:28 UTC (permalink / raw)
  To: u-boot

Dear Anatolij Gustschin,

> On Sat, 31 Mar 2012 19:47:12 +0200
> 
> Marek Vasut <marex@denx.de> wrote:
> > Signed-off-by: Marek Vasut <marex@denx.de>
> > Cc: dogoil at etinsys.com
> > ---
> > 
> >  include/configs/debris.h |    2 +-
> >  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> This will increase the U-Boot image size for this board, but hopefully
> it is tolerable, so

Well ... that's to be expected, author is CCed, I hope he can comment.

> 
> Acked-by: Anatolij Gustschin <agust@denx.de>

Best regards,
Marek Vasut

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 10/14] CMD: Remove CMD_MEM and CMD_LOOPW, they're unused
  2012-03-31 20:59   ` Anatolij Gustschin
@ 2012-03-31 21:29     ` Marek Vasut
  0 siblings, 0 replies; 29+ messages in thread
From: Marek Vasut @ 2012-03-31 21:29 UTC (permalink / raw)
  To: u-boot

Dear Anatolij Gustschin,

> Hi Marek,
> 
> On Sat, 31 Mar 2012 19:47:15 +0200
> 
> Marek Vasut <marex@denx.de> wrote:
> > Signed-off-by: Marek Vasut <marex@denx.de>
> > ---
> > 
> >  README |    7 -------
> >  1 files changed, 0 insertions(+), 7 deletions(-)
> > 
> > diff --git a/README b/README
> > index c98afa7..0ebe877 100644
> > --- a/README
> > +++ b/README
> > 
> > @@ -3379,10 +3379,6 @@ Low Level (hardware related) configuration options:
> >  		and crc32 is the correct crc32 which the
> >  		area should have.
> > 
> > -- CONFIG_LOOPW
> > -		Add the "loopw" memory command. This only takes effect if
> > -		the memory commands are activated globally (CONFIG_CMD_MEM).
> 
> Please, no. CONFIG_LOOPW is used if CONFIG_CMD_MEMORY is defined. This
> text should be fixed instead: s/CONFIG_CMD_MEM/CONFIG_CMD_MEMORY/

DAMN, it's not CONFIG_CMD ... scrap this patch, good catch!
> 
> Also it probably makes sense to change CONFIG_LOOPW to CONFIG_CMD_LOOPW
> since this configures an U-Boot command.

Agreed!
> 
> Same for CONFIG_MX_CYCLIC.

Yes.
> 
> ...
> 
> > @@ -3394,9 +3390,6 @@ Low Level (hardware related) configuration options:
> >  		=> mwc.l 100 12345678 10
> >  		This command will write 12345678 to address 100 all 10 ms.
> > 
> > -		This only takes effect if the memory commands are activated
> > -		globally (CONFIG_CMD_MEM).
> > -
> 
> Same applies here.
> 
> Thanks,
> Anatolij

Best regards,
Marek Vasut

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 14/14] CMD: Fix CONFIG_CMD_STORAGE -> CONFIG_CMD_USB_STORAGE
  2012-03-31 17:47 ` [U-Boot] [PATCH 14/14] CMD: Fix CONFIG_CMD_STORAGE -> CONFIG_CMD_USB_STORAGE Marek Vasut
@ 2012-03-31 22:35   ` Anatolij Gustschin
  0 siblings, 0 replies; 29+ messages in thread
From: Anatolij Gustschin @ 2012-03-31 22:35 UTC (permalink / raw)
  To: u-boot

Hi Marek,

On Sat, 31 Mar 2012 19:47:19 +0200
Marek Vasut <marex@denx.de> wrote:

> Signed-off-by: Marek Vasut <marex@denx.de>
> ---
>  include/configs/am3517_crane.h     |    2 +-
>  include/configs/am3517_evm.h       |    2 +-
>  include/configs/cam_enc_4xx.h      |    2 +-
>  include/configs/da830evm.h         |    2 +-
>  include/configs/davinci_dm365evm.h |    4 ++--
>  include/configs/davinci_dvevm.h    |    2 +-
>  include/configs/omap3_evm_common.h |    2 +-
>  7 files changed, 8 insertions(+), 8 deletions(-)
> 
> diff --git a/include/configs/am3517_crane.h b/include/configs/am3517_crane.h
> index b0dd2f0..bfa5676 100644
> --- a/include/configs/am3517_crane.h
> +++ b/include/configs/am3517_crane.h
> @@ -111,7 +111,7 @@
>  #define CONFIG_CMD_USB
>  
>  #define CONFIG_USB_STORAGE
> -#define CONGIG_CMD_STORAGE
> +#define CONFIG_CMD_USB_STORAGE

we have CONFIG_CMD_USB and CONFIG_USB_STORAGE, but no CONFIG_CMD_USB_STORAGE.

So the fix would be just to remove CONGIG_CMD_STORAGE.

>  #define CONFIG_CMD_FAT
>  
>  #ifdef CONFIG_USB_KEYBOARD
> diff --git a/include/configs/am3517_evm.h b/include/configs/am3517_evm.h
> index b5f75d1..00e85a9 100644
> --- a/include/configs/am3517_evm.h
> +++ b/include/configs/am3517_evm.h
> @@ -110,7 +110,7 @@
>  #define CONFIG_CMD_USB
>  
>  #define CONFIG_USB_STORAGE
> -#define CONGIG_CMD_STORAGE
> +#define CONGIG_CMD_USB_STORAGE

Same here.

>  #define CONFIG_CMD_FAT
>  
>  #ifdef CONFIG_USB_KEYBOARD
> diff --git a/include/configs/cam_enc_4xx.h b/include/configs/cam_enc_4xx.h
> index 99856eb..631d6d7 100644
> --- a/include/configs/cam_enc_4xx.h
> +++ b/include/configs/cam_enc_4xx.h
> @@ -516,7 +516,7 @@
>  
>  #define CONFIG_CMD_USB         /* include support for usb cmd */
>  #define CONFIG_USB_STORAGE     /* MSC class support */
> -#define CONFIG_CMD_STORAGE     /* inclue support for usb-storage cmd */
> +#define CONFIG_CMD_USB_STORAGE     /* inclue support for usb-storage cmd */
>  #define CONFIG_CMD_FAT         /* inclue support for FAT/storage */
>  #define CONFIG_DOS_PARTITION   /* inclue support for FAT/storage */

only CONFIG_CMD_STORAGE should be removed.

Btw., I see some typos here: "inclue".

> diff --git a/include/configs/da830evm.h b/include/configs/da830evm.h
> index 4532e4f..0b45c12 100644
> --- a/include/configs/da830evm.h
> +++ b/include/configs/da830evm.h
> @@ -248,7 +248,7 @@
>  #define CONFIG_CMD_USB		/* include support for usb cmd */
>  
>  #define CONFIG_USB_STORAGE	/* MSC class support */
> -#define CONFIG_CMD_STORAGE	/* inclue support for usb-storage cmd */
> +#define CONFIG_CMD_USB_STORAGE	/* inclue support for usb-storage cmd */
>  #define CONFIG_CMD_FAT		/* inclue support for FAT/storage */
>  #define CONFIG_DOS_PARTITION	/* inclue support for FAT/storage */

Same here.

> diff --git a/include/configs/davinci_dm365evm.h b/include/configs/davinci_dm365evm.h
> index a75bce6..38bd4cb 100644
> --- a/include/configs/davinci_dm365evm.h
> +++ b/include/configs/davinci_dm365evm.h
> @@ -99,7 +99,7 @@
>  
>  #ifdef CONFIG_USB_DAVINCI
>  #define CONFIG_CMD_USB         /* include support for usb      */
> -#define CONFIG_CMD_STORAGE     /* include support for usb      */
> +#define CONFIG_CMD_USB_STORAGE     /* include support for usb      */
>  #define CONFIG_CMD_FAT         /* include support for FAT/storage*/
>  #define CONFIG_DOS_PARTITION   /* include support for FAT/storage*/

Here CONFIG_CMD_STORAGE should be replaced with CONFIG_USB_STORAGE.

>  #endif
> @@ -107,7 +107,7 @@
>  #ifdef CONFIG_MUSB_HCD         /* include support for usb host */
>  #define CONFIG_CMD_USB         /* include support for usb cmd */
>  #define CONFIG_USB_STORAGE     /* MSC class support */
> -#define CONFIG_CMD_STORAGE     /* inclue support for usb-storage cmd */
> +#define CONFIG_CMD_USB_STORAGE     /* inclue support for usb-storage cmd */
>  #define CONFIG_CMD_FAT         /* inclue support for FAT/storage */
>  #define CONFIG_DOS_PARTITION   /* inclue support for FAT/storage */

CONFIG_CMD_STORAGE should be replaced with CONFIG_USB_STORAGE.
Also typos here.

> diff --git a/include/configs/davinci_dvevm.h b/include/configs/davinci_dvevm.h
> index 310d577..3976149 100644
> --- a/include/configs/davinci_dvevm.h
> +++ b/include/configs/davinci_dvevm.h
> @@ -222,7 +222,7 @@
>  #define CONFIG_CMD_USB
>  #ifdef CONFIG_MUSB_HCD
>  #define CONFIG_USB_STORAGE
> -#define CONFIG_CMD_STORAGE
> +#define CONFIG_CMD_USB_STORAGE

Only drop CONFIG_CMD_STORAGE.

> diff --git a/include/configs/omap3_evm_common.h b/include/configs/omap3_evm_common.h
> index 4910dda..4dfa44b 100644
> --- a/include/configs/omap3_evm_common.h
> +++ b/include/configs/omap3_evm_common.h
> @@ -168,7 +168,7 @@
>  #define CONFIG_CMD_USB
>  
>  #define CONFIG_USB_STORAGE
> -#define CONGIG_CMD_STORAGE
> +#define CONGIG_CMD_USB_STORAGE

Ditto.

This cleanup patch should also fix "include/configs/bfin_adi_common.h".
s/CONFIG_CMD_USB_STORAGE/CONFIG_USB_STORAGE/

Thanks,
Anatolij

^ permalink raw reply	[flat|nested] 29+ messages in thread

* [U-Boot] [PATCH 05/14] CMD: Drop CONFIG_CMD_DFL, it's not used
  2012-03-31 17:47 ` [U-Boot] [PATCH 05/14] CMD: Drop CONFIG_CMD_DFL, " Marek Vasut
  2012-03-31 20:13   ` Anatolij Gustschin
@ 2012-04-02  0:12   ` Nobuhiro Iwamatsu
  1 sibling, 0 replies; 29+ messages in thread
From: Nobuhiro Iwamatsu @ 2012-04-02  0:12 UTC (permalink / raw)
  To: u-boot

Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>

2012/4/1 Marek Vasut <marex@denx.de>:
> $ git grep CMD_DFL
> board/atc/ti113x.c:#define CMD_DFLT (PCI_COMMAND_IO|PCI_COMMAND_MEMORY| \
> board/atc/ti113x.c: ? ? pci_writew (s, PCI_COMMAND, CMD_DFLT);
> board/cpc45/pd67290.c:#define CMD_DFLT (PCI_COMMAND_IO|PCI_COMMAND_MEMORY| \
> board/cpc45/pd67290.c: ?pci_writew (s, PCI_COMMAND, CMD_DFLT);
> drivers/pcmcia/i82365.c:#define CMD_DFLT (PCI_COMMAND_IO|PCI_COMMAND_MEMORY| \
> drivers/pcmcia/i82365.c: ? ? ? ?pci_writew (s, PCI_COMMAND, CMD_DFLT);
> include/configs/MBX.h:#define CONFIG_CMD_DFL
> include/configs/MigoR.h:#define CONFIG_CMD_DFL
> include/configs/digsy_mtc.h:#define CONFIG_CMD_DFL
> include/configs/ms7722se.h:#define CONFIG_CMD_DFL
> include/configs/ms7750se.h:#define CONFIG_CMD_DFL
> include/configs/r2dplus.h:#define CONFIG_CMD_DFL
> include/configs/sh7757lcr.h:#define CONFIG_CMD_DFL
> include/configs/sh7785lcr.h:#define CONFIG_CMD_DFL
>
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Pfister_Werner at intercontrol.de
> Cc: iwamatsu at nigauri.org
> Cc: nobuhiro.iwamatsu.yj at renesas.com
> Cc: vapier at gentoo.org
> Cc: wd at denx.de
> Cc: yoshihiro.shimoda.uh at renesas.com
> ---
> ?include/configs/MBX.h ? ? ? | ? ?1 -
> ?include/configs/MigoR.h ? ? | ? ?1 -
> ?include/configs/digsy_mtc.h | ? ?1 -
> ?include/configs/ms7722se.h ?| ? ?1 -
> ?include/configs/ms7750se.h ?| ? ?1 -
> ?include/configs/r2dplus.h ? | ? ?1 -
> ?include/configs/sh7757lcr.h | ? ?1 -
> ?include/configs/sh7785lcr.h | ? ?1 -
> ?8 files changed, 0 insertions(+), 8 deletions(-)
>
> diff --git a/include/configs/MBX.h b/include/configs/MBX.h
> index cb5b023..79780bd 100644
> --- a/include/configs/MBX.h
> +++ b/include/configs/MBX.h
> @@ -87,7 +87,6 @@
> ?* Command line configuration.
> ?*/
> ?#define CONFIG_CMD_NET
> -#define CONFIG_CMD_DFL
> ?#define CONFIG_CMD_SDRAM
> ?#define CONFIG_CMD_PCMCIA
> ?#define CONFIG_CMD_IDE
> diff --git a/include/configs/MigoR.h b/include/configs/MigoR.h
> index 619a800..84ba78f 100644
> --- a/include/configs/MigoR.h
> +++ b/include/configs/MigoR.h
> @@ -38,7 +38,6 @@
> ?#define CONFIG_CMD_NET
> ?#define CONFIG_CMD_PING
> ?#define CONFIG_CMD_NFS
> -#define CONFIG_CMD_DFL
> ?#define CONFIG_CMD_SDRAM
> ?#define CONFIG_CMD_SAVEENV
>
> diff --git a/include/configs/digsy_mtc.h b/include/configs/digsy_mtc.h
> index d517334..1f66023 100644
> --- a/include/configs/digsy_mtc.h
> +++ b/include/configs/digsy_mtc.h
> @@ -119,7 +119,6 @@
> ?#ifdef CONFIG_VIDEO
> ?#define CONFIG_CMD_BMP
> ?#endif
> -#define CONFIG_CMD_DFL
> ?#define CONFIG_CMD_CACHE
> ?#define CONFIG_CMD_DATE
> ?#define CONFIG_CMD_DHCP
> diff --git a/include/configs/ms7722se.h b/include/configs/ms7722se.h
> index 7cf641f..f110490 100644
> --- a/include/configs/ms7722se.h
> +++ b/include/configs/ms7722se.h
> @@ -35,7 +35,6 @@
> ?#define CONFIG_CMD_NET
> ?#define CONFIG_CMD_NFS
> ?#define CONFIG_CMD_PING
> -#define CONFIG_CMD_DFL
> ?#define CONFIG_CMD_SDRAM
> ?#define CONFIG_CMD_MEMORY
> ?#define CONFIG_CMD_SAVEENV
> diff --git a/include/configs/ms7750se.h b/include/configs/ms7750se.h
> index 03f52f3..52e15cc 100644
> --- a/include/configs/ms7750se.h
> +++ b/include/configs/ms7750se.h
> @@ -38,7 +38,6 @@
> ?*/
> ?/*#include <config_cmd_default.h>*/
>
> -#define CONFIG_CMD_DFL
> ?#define CONFIG_CMD_FLASH
> ?#define CONFIG_CMD_SAVEENV
>
> diff --git a/include/configs/r2dplus.h b/include/configs/r2dplus.h
> index 0ce3fa8..9cdfc14 100644
> --- a/include/configs/r2dplus.h
> +++ b/include/configs/r2dplus.h
> @@ -15,7 +15,6 @@
> ?*/
> ?#include <config_cmd_default.h>
>
> -#define CONFIG_CMD_DFL
> ?#define CONFIG_CMD_CACHE
> ?#define CONFIG_CMD_FLASH
> ?#define CONFIG_CMD_PCI
> diff --git a/include/configs/sh7757lcr.h b/include/configs/sh7757lcr.h
> index 73d2a87..708bff7 100644
> --- a/include/configs/sh7757lcr.h
> +++ b/include/configs/sh7757lcr.h
> @@ -41,7 +41,6 @@
> ?#define CONFIG_CMD_MII
> ?#define CONFIG_CMD_PING
> ?#define CONFIG_CMD_NFS
> -#define CONFIG_CMD_DFL
> ?#define CONFIG_CMD_SDRAM
> ?#define CONFIG_CMD_SF
> ?#define CONFIG_CMD_RUN
> diff --git a/include/configs/sh7785lcr.h b/include/configs/sh7785lcr.h
> index 1e71bcc..9c32bfc 100644
> --- a/include/configs/sh7785lcr.h
> +++ b/include/configs/sh7785lcr.h
> @@ -37,7 +37,6 @@
> ?#define CONFIG_CMD_NET
> ?#define CONFIG_CMD_PING
> ?#define CONFIG_CMD_NFS
> -#define CONFIG_CMD_DFL
> ?#define CONFIG_CMD_SDRAM
> ?#define CONFIG_CMD_RUN
> ?#define CONFIG_CMD_SAVEENV
> --
> 1.7.9.1
>



-- 
Nobuhiro Iwamatsu
?? iwamatsu at {nigauri.org / debian.org}
?? GPG ID: 40AD1FA6

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2012-04-02  0:12 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-31 17:47 [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 02/14] CMD: Remove CMD_AUTOSCRIPT, it's not used Marek Vasut
2012-03-31 20:06   ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 03/14] CMD: Drop CMD_CAN, " Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 04/14] CMD: Drop CMD_DCR, " Marek Vasut
2012-03-31 20:08   ` Anatolij Gustschin
2012-03-31 20:13     ` Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 05/14] CMD: Drop CONFIG_CMD_DFL, " Marek Vasut
2012-03-31 20:13   ` Anatolij Gustschin
2012-04-02  0:12   ` Nobuhiro Iwamatsu
2012-03-31 17:47 ` [U-Boot] [PATCH 06/14] CMD: Drop CONFIG_CMD_EMMC, " Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 07/14] CMD: Fix typo KGBD -> KGDB on debris board Marek Vasut
2012-03-31 21:02   ` Anatolij Gustschin
2012-03-31 21:28     ` Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 08/14] CMD: Remove CMD_LOG, it's unused Marek Vasut
2012-03-31 21:09   ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 09/14] HWW1U1A: Fix CMD_SHA1 -> CMD_SHA1SUM Marek Vasut
2012-03-31 21:03   ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 10/14] CMD: Remove CMD_MEM and CMD_LOOPW, they're unused Marek Vasut
2012-03-31 20:59   ` Anatolij Gustschin
2012-03-31 21:29     ` Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 11/14] CMD: Fix typo CMD_FSL -> CMD_MFSL in readme Marek Vasut
2012-03-31 21:11   ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 12/14] CMD: Fix CONFIG_CMD_SAVEBP_WRITE_SIZE -> CONFIG_CMD_SPL_WRITE_SIZE Marek Vasut
2012-03-31 17:47 ` [U-Boot] [PATCH 13/14] CMD: CONFIG_CMD_SETECPR -> CONFIG_CMD_SETEXPR on omap3_logic Marek Vasut
2012-03-31 21:20   ` Anatolij Gustschin
2012-03-31 17:47 ` [U-Boot] [PATCH 14/14] CMD: Fix CONFIG_CMD_STORAGE -> CONFIG_CMD_USB_STORAGE Marek Vasut
2012-03-31 22:35   ` Anatolij Gustschin
2012-03-31 20:04 ` [U-Boot] [PATCH 01/14] AT91: Drop AT91_SPIMUX command from cmd_all Anatolij Gustschin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.