public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [RFC PATCH 01/13] Use 'U-Boot' instead of 'U-boot' in CONFIG_BOOTP_VCI_STRING
@ 2015-03-01 16:33 Simon Glass
  2015-03-01 16:33 ` [U-Boot] [RFC PATCH 02/13] net: Fix eth_get_dev_by_name() warning Simon Glass
                   ` (12 more replies)
  0 siblings, 13 replies; 34+ messages in thread
From: Simon Glass @ 2015-03-01 16:33 UTC (permalink / raw)
  To: u-boot

This string seems wrong - U-Boot is normally written with a capital B.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 include/config_distro_defaults.h    | 4 ++--
 include/configs/ls2085a_common.h    | 2 +-
 include/configs/vexpress_aemv8a.h   | 2 +-
 include/configs/vexpress_ca15_tc2.h | 2 +-
 include/configs/vexpress_ca5x2.h    | 2 +-
 include/configs/vexpress_ca9x4.h    | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/include/config_distro_defaults.h b/include/config_distro_defaults.h
index 1ecc0bb..faf564f 100644
--- a/include/config_distro_defaults.h
+++ b/include/config_distro_defaults.h
@@ -23,9 +23,9 @@
 #if defined(__arm__)
 #define CONFIG_BOOTP_PXE_CLIENTARCH     0x100
 #if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__)
-#define CONFIG_BOOTP_VCI_STRING         "U-boot.armv7"
+#define CONFIG_BOOTP_VCI_STRING         "U-Boot.armv7"
 #else
-#define CONFIG_BOOTP_VCI_STRING         "U-boot.arm"
+#define CONFIG_BOOTP_VCI_STRING         "U-Boot.arm"
 #endif
 #endif
 
diff --git a/include/configs/ls2085a_common.h b/include/configs/ls2085a_common.h
index 6fe032c..69de475 100644
--- a/include/configs/ls2085a_common.h
+++ b/include/configs/ls2085a_common.h
@@ -27,7 +27,7 @@
 #define CONFIG_BOARD_EARLY_INIT_F	1
 
 #define CONFIG_IDENT_STRING		" LS2085A-EMU"
-#define CONFIG_BOOTP_VCI_STRING		"U-boot.LS2085A-EMU"
+#define CONFIG_BOOTP_VCI_STRING		"U-Boot.LS2085A-EMU"
 
 /* Flat Device Tree Definitions */
 #define CONFIG_OF_LIBFDT
diff --git a/include/configs/vexpress_aemv8a.h b/include/configs/vexpress_aemv8a.h
index 7fb28a5..d4ba4e9 100644
--- a/include/configs/vexpress_aemv8a.h
+++ b/include/configs/vexpress_aemv8a.h
@@ -38,7 +38,7 @@
 #define CONFIG_SYS_ICACHE_OFF
 
 #define CONFIG_IDENT_STRING		" vexpress_aemv8a"
-#define CONFIG_BOOTP_VCI_STRING		"U-boot.armv8.vexpress_aemv8a"
+#define CONFIG_BOOTP_VCI_STRING		"U-Boot.armv8.vexpress_aemv8a"
 
 /* Link Definitions */
 #ifdef CONFIG_TARGET_VEXPRESS64_BASE_FVP
diff --git a/include/configs/vexpress_ca15_tc2.h b/include/configs/vexpress_ca15_tc2.h
index b43afa2..3c9777f 100644
--- a/include/configs/vexpress_ca15_tc2.h
+++ b/include/configs/vexpress_ca15_tc2.h
@@ -13,7 +13,7 @@
 
 #define CONFIG_VEXPRESS_EXTENDED_MEMORY_MAP
 #include "vexpress_common.h"
-#define CONFIG_BOOTP_VCI_STRING     "U-boot.armv7.vexpress_ca15x2_tc2"
+#define CONFIG_BOOTP_VCI_STRING     "U-Boot.armv7.vexpress_ca15x2_tc2"
 
 #define CONFIG_SYSFLAGS_ADDR	0x1c010030
 #define CONFIG_SMP_PEN_ADDR	CONFIG_SYSFLAGS_ADDR
diff --git a/include/configs/vexpress_ca5x2.h b/include/configs/vexpress_ca5x2.h
index 7719d59..6c160a5 100644
--- a/include/configs/vexpress_ca5x2.h
+++ b/include/configs/vexpress_ca5x2.h
@@ -13,6 +13,6 @@
 
 #define CONFIG_VEXPRESS_EXTENDED_MEMORY_MAP
 #include "vexpress_common.h"
-#define CONFIG_BOOTP_VCI_STRING     "U-boot.armv7.vexpress_ca5x2"
+#define CONFIG_BOOTP_VCI_STRING     "U-Boot.armv7.vexpress_ca5x2"
 
 #endif /* __VEXPRESS_CA5X2_h */
diff --git a/include/configs/vexpress_ca9x4.h b/include/configs/vexpress_ca9x4.h
index 38ac4ed..564521e 100644
--- a/include/configs/vexpress_ca9x4.h
+++ b/include/configs/vexpress_ca9x4.h
@@ -13,6 +13,6 @@
 
 #define CONFIG_VEXPRESS_ORIGINAL_MEMORY_MAP
 #include "vexpress_common.h"
-#define CONFIG_BOOTP_VCI_STRING     "U-boot.armv7.vexpress_ca9x4"
+#define CONFIG_BOOTP_VCI_STRING     "U-Boot.armv7.vexpress_ca9x4"
 
 #endif /* VEXPRESS_CA9X4_H */
-- 
2.2.0.rc0.207.ga3a616c

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

end of thread, other threads:[~2015-03-04  8:54 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-01 16:33 [U-Boot] [RFC PATCH 01/13] Use 'U-Boot' instead of 'U-boot' in CONFIG_BOOTP_VCI_STRING Simon Glass
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 02/13] net: Fix eth_get_dev_by_name() warning Simon Glass
2015-03-01 17:02   ` Joe Hershberger
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 03/13] sunxi: Replace the pcDuino3 config with FDT version Simon Glass
2015-03-03  8:34   ` Ian Campbell
2015-03-03 13:29     ` Hans de Goede
2015-03-03 14:01       ` Simon Glass
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 04/13] Kconfig: Move CONFIG_DESIGNWARE_ETH to Kconfig Simon Glass
2015-03-01 17:08   ` Joe Hershberger
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 05/13] dts: sunxi: Bring in Ethernet device tree bindings Simon Glass
2015-03-03  8:36   ` Ian Campbell
2015-03-03 23:40     ` Simon Glass
2015-03-04  8:53       ` Ian Campbell
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 06/13] dm: core: Support allocating driver-private data for DMA Simon Glass
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 07/13] dm: net: Use existing Ethernet init for driver model Simon Glass
2015-03-01 17:14   ` Joe Hershberger
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 08/13] Avoid calling print_eths() with " Simon Glass
2015-03-01 17:23   ` Joe Hershberger
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 09/13] dm: net: Adjust PHY interface to work with CONFIG_DM_ETH Simon Glass
2015-03-01 17:46   ` Joe Hershberger
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 10/13] dm: net: Tidy up designware driver ready for driver model Simon Glass
2015-03-01 17:49   ` Joe Hershberger
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 11/13] dm: net: Adjust designware driver to support " Simon Glass
2015-03-01 17:51   ` Joe Hershberger
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 12/13] dm: sunxi: Support driver model for Ethernet Simon Glass
2015-03-01 17:51   ` Joe Hershberger
2015-03-03  8:40   ` Ian Campbell
2015-03-03 23:40     ` Simon Glass
2015-03-01 16:33 ` [U-Boot] [RFC PATCH 13/13] dm: sunxi: Use driver model for Ethernet on Linksprite pcDuino3 Simon Glass
2015-03-03  8:41   ` Ian Campbell
2015-03-03 23:40     ` Simon Glass
2015-03-04  8:54       ` Ian Campbell
2015-03-02 13:59 ` [U-Boot] [RFC PATCH 01/13] Use 'U-Boot' instead of 'U-boot' in CONFIG_BOOTP_VCI_STRING Tom Rini
2015-03-02 22:14   ` Simon Glass

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox