diff options
author | Tom Rini | 2021-08-19 14:29:00 -0400 |
---|---|---|
committer | Tom Rini | 2021-08-30 14:13:28 -0400 |
commit | 7ae1b0804d8837ecec14538f18903793d187f328 (patch) | |
tree | 65bc3afb87449a5f65470daea89cf6acccf3b828 /include/configs/mx53ppd.h | |
parent | 5afdcca019915153db59ea9551bdd0eda11707f1 (diff) |
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/mx53ppd.h')
-rw-r--r-- | include/configs/mx53ppd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/mx53ppd.h b/include/configs/mx53ppd.h index b1e6a5638b6..dae3a5c5380 100644 --- a/include/configs/mx53ppd.h +++ b/include/configs/mx53ppd.h @@ -102,11 +102,11 @@ "video-mode=" \ "lcd:800x480-24@60,monitor=lcd\0" \ -#define CONFIG_MMCBOOTCOMMAND \ +#define MMCBOOTCOMMAND \ "run doquiet; " \ "run tryboot; " \ -#define CONFIG_BOOTCOMMAND CONFIG_MMCBOOTCOMMAND +#define CONFIG_BOOTCOMMAND MMCBOOTCOMMAND #define CONFIG_ARP_TIMEOUT 200UL |