[U-Boot] [PATCH] ARM: tegra: replace V_PROMPT define with kconfig

From: Stephen Warren swarren@nvidia.com
Commit 181bd9dc61d2 "kconfig: add config option for shell prompt" replaced define V_PROMPT with Kconfig option SYS_PROMPT. This crossed with patches adding Tegra T210 boards. Migrate the boards to the new scheme.
Signed-off-by: Stephen Warren swarren@nvidia.com --- configs/e2220-1170_defconfig | 1 + configs/p2371-0000_defconfig | 1 + configs/p2371-2180_defconfig | 1 + configs/p2571_defconfig | 1 + include/configs/e2220-1170.h | 1 - include/configs/p2371-0000.h | 1 - include/configs/p2371-2180.h | 1 - include/configs/p2571.h | 1 - 8 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/configs/e2220-1170_defconfig b/configs/e2220-1170_defconfig index 455e7892b5cb..e86715ae129f 100644 --- a/configs/e2220-1170_defconfig +++ b/configs/e2220-1170_defconfig @@ -15,3 +15,4 @@ CONFIG_SPI_FLASH=y CONFIG_USB=y CONFIG_DM_USB=y CONFIG_USE_PRIVATE_LIBGCC=y +CONFIG_SYS_PROMPT="Tegra210 (E2220-1170) # " diff --git a/configs/p2371-0000_defconfig b/configs/p2371-0000_defconfig index cd7d21fe3a4b..379747824394 100644 --- a/configs/p2371-0000_defconfig +++ b/configs/p2371-0000_defconfig @@ -15,3 +15,4 @@ CONFIG_SPI_FLASH=y CONFIG_USB=y CONFIG_DM_USB=y CONFIG_USE_PRIVATE_LIBGCC=y +CONFIG_SYS_PROMPT="Tegra210 (P2371-0000) # " diff --git a/configs/p2371-2180_defconfig b/configs/p2371-2180_defconfig index 83fde57a0c46..98448eed82dd 100644 --- a/configs/p2371-2180_defconfig +++ b/configs/p2371-2180_defconfig @@ -15,3 +15,4 @@ CONFIG_SPI_FLASH=y CONFIG_USB=y CONFIG_DM_USB=y CONFIG_USE_PRIVATE_LIBGCC=y +CONFIG_SYS_PROMPT="Tegra210 (P2371-2180) # " diff --git a/configs/p2571_defconfig b/configs/p2571_defconfig index 5fd2a54eb18e..7bcba51d8538 100644 --- a/configs/p2571_defconfig +++ b/configs/p2571_defconfig @@ -15,3 +15,4 @@ CONFIG_SPI_FLASH=y CONFIG_USB=y CONFIG_DM_USB=y CONFIG_USE_PRIVATE_LIBGCC=y +CONFIG_SYS_PROMPT="Tegra210 (P2571) # " diff --git a/include/configs/e2220-1170.h b/include/configs/e2220-1170.h index 47d491f05078..998a69aba106 100644 --- a/include/configs/e2220-1170.h +++ b/include/configs/e2220-1170.h @@ -13,7 +13,6 @@ #include "tegra210-common.h"
/* High-level configuration options */ -#define V_PROMPT "Tegra210 (E2220-1170) # " #define CONFIG_TEGRA_BOARD_STRING "NVIDIA E2220-1170"
/* Board-specific serial config */ diff --git a/include/configs/p2371-0000.h b/include/configs/p2371-0000.h index e190733357b5..f2a713d0bee2 100644 --- a/include/configs/p2371-0000.h +++ b/include/configs/p2371-0000.h @@ -13,7 +13,6 @@ #include "tegra210-common.h"
/* High-level configuration options */ -#define V_PROMPT "Tegra210 (P2371-0000) # " #define CONFIG_TEGRA_BOARD_STRING "NVIDIA P2371-0000"
/* Board-specific serial config */ diff --git a/include/configs/p2371-2180.h b/include/configs/p2371-2180.h index 378d5a905e93..f994a493fe61 100644 --- a/include/configs/p2371-2180.h +++ b/include/configs/p2371-2180.h @@ -13,7 +13,6 @@ #include "tegra210-common.h"
/* High-level configuration options */ -#define V_PROMPT "Tegra210 (P2371-2180) # " #define CONFIG_TEGRA_BOARD_STRING "NVIDIA P2371-2180"
/* Board-specific serial config */ diff --git a/include/configs/p2571.h b/include/configs/p2571.h index 87abee603dc1..c65d3e5fcbc1 100644 --- a/include/configs/p2571.h +++ b/include/configs/p2571.h @@ -13,7 +13,6 @@ #include "tegra210-common.h"
/* High-level configuration options */ -#define V_PROMPT "Tegra210 (P2571) # " #define CONFIG_TEGRA_BOARD_STRING "NVIDIA P2571"
/* Board-specific serial config */
participants (1)
-
Stephen Warren