aboutsummaryrefslogtreecommitdiff
path: root/include/configs/P1010RDB.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-08-19 14:29:00 -0400
committerTom Rini <trini@konsulko.com>2021-08-30 14:13:28 -0400
commit7ae1b0804d8837ecec14538f18903793d187f328 (patch)
tree65bc3afb87449a5f65470daea89cf6acccf3b828 /include/configs/P1010RDB.h
parent5afdcca019915153db59ea9551bdd0eda11707f1 (diff)
downloadu-boot-7ae1b0804d8837ecec14538f18903793d187f328.zip
u-boot-7ae1b0804d8837ecec14538f18903793d187f328.tar.gz
u-boot-7ae1b0804d8837ecec14538f18903793d187f328.tar.bz2
ppc: Rework some hard-coded BOOTCOMMANDS
There are an assortment of hard-coded CONFIG_BOOTCOMMAND options in some board headers. Rework these so that they do not add to the CONFIG namespace. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs/P1010RDB.h')
-rw-r--r--include/configs/P1010RDB.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/P1010RDB.h b/include/configs/P1010RDB.h
index b3fadc6..a222ec9 100644
--- a/include/configs/P1010RDB.h
+++ b/include/configs/P1010RDB.h
@@ -696,7 +696,7 @@ extern unsigned long get_sdram_size(void);
"i2c mw 19 1 4; i2c mw 19 3 f3; reset\0"
#endif
-#define CONFIG_RAMBOOTCOMMAND \
+#define RAMBOOTCOMMAND \
"setenv bootargs root=/dev/ram rw " \
"console=$consoledev,$baudrate $othbootargs; " \
"tftp $ramdiskaddr $ramdiskfile;" \
@@ -704,7 +704,7 @@ extern unsigned long get_sdram_size(void);
"tftp $fdtaddr $fdtfile;" \
"bootm $loadaddr $ramdiskaddr $fdtaddr"
-#define CONFIG_BOOTCOMMAND CONFIG_RAMBOOTCOMMAND
+#define CONFIG_BOOTCOMMAND RAMBOOTCOMMAND
#include <asm/fsl_secure_boot.h>