diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-01-03 16:23:46 +0100 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2018-01-30 14:29:07 +0800 |
commit | 368e86d9836aa044f2afb233e0445c8e4040b179 (patch) | |
tree | d8ec4d2ae9b3d32964d3bfb653f3ac9a0bd99c72 /include | |
parent | eef11acebaa48e241e9187c717dc92d3e175c119 (diff) |
configs: x86: allow to override CONFIG_BOOTCOMMAND
Allow to override CONFIG_BOOTCOMMAND in .config.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/x86-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/x86-common.h b/include/configs/x86-common.h index 994214ea48a..e8f680f129f 100644 --- a/include/configs/x86-common.h +++ b/include/configs/x86-common.h @@ -62,8 +62,10 @@ * Command line configuration. */ +#ifndef CONFIG_BOOTCOMMAND #define CONFIG_BOOTCOMMAND \ "ext2load scsi 0:3 01000000 /boot/vmlinuz; zboot 01000000" +#endif #if defined(CONFIG_CMD_KGDB) #define CONFIG_KGDB_BAUDRATE 115200 |