summaryrefslogtreecommitdiff
path: root/board/ge
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-03-22 04:33:32 +0300
committerTom Rini <trini@konsulko.com>2022-04-01 17:28:46 +0300
commit47267f82612e71a69c88c180917dc77f7251dee8 (patch)
tree349086a5ec6172aab42c481f9da5b9720df0063a /board/ge
parent448dfb407f7af23b3d85d8ce9039e1e2bd287245 (diff)
downloadu-boot-47267f82612e71a69c88c180917dc77f7251dee8.tar.xz
Remove CONFIG_BOARDNAME and CONFIG_BOARD_NAME
Both of these variables are used in a few hard-coded ways to set some string values or print something to the user. In almost all cases, it's just as useful to hard-code the value used. The exception here is printing something closer to correct board name for p1_p2_rdb machines. This can be done using something from the device tree, but for now hard-code a non-CONFIG based value instead. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/ge')
-rw-r--r--board/ge/bx50v3/bx50v3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ge/bx50v3/bx50v3.c b/board/ge/bx50v3/bx50v3.c
index ed700f4e1d..4e9d841fe2 100644
--- a/board/ge/bx50v3/bx50v3.c
+++ b/board/ge/bx50v3/bx50v3.c
@@ -547,7 +547,7 @@ int last_stage_init(void)
int checkboard(void)
{
- printf("BOARD: %s\n", CONFIG_BOARD_NAME);
+ printf("BOARD: General Electric Bx50v3\n");
return 0;
}