global: Migrate CONFIG_OTHBOOTARGS to CFG
Perform a simple rename of CONFIG_OTHBOOTARGS to CFG_OTHBOOTARGS Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
1c3ba55798
commit
a2c164cbb4
|
|
@ -27,9 +27,9 @@
|
||||||
/* Default environment */
|
/* Default environment */
|
||||||
#define CONFIG_RAMDISK_ADDR 0x4000000
|
#define CONFIG_RAMDISK_ADDR 0x4000000
|
||||||
#if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
|
#if defined(CONFIG_GENERATE_ACPI_TABLE) || defined(CONFIG_EFI_STUB)
|
||||||
#define CONFIG_OTHBOOTARGS "othbootargs=\0"
|
#define CFG_OTHBOOTARGS "othbootargs=\0"
|
||||||
#else
|
#else
|
||||||
#define CONFIG_OTHBOOTARGS "othbootargs=acpi=off\0"
|
#define CFG_OTHBOOTARGS "othbootargs=acpi=off\0"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_DISTRO_DEFAULTS)
|
#if defined(CONFIG_DISTRO_DEFAULTS)
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"pciconfighost=1\0" \
|
"pciconfighost=1\0" \
|
||||||
"netdev=eth0\0" \
|
"netdev=eth0\0" \
|
||||||
"consoledev=ttyS0\0" \
|
"consoledev=ttyS0\0" \
|
||||||
CONFIG_OTHBOOTARGS \
|
CFG_OTHBOOTARGS \
|
||||||
"scriptaddr=0x7000000\0" \
|
"scriptaddr=0x7000000\0" \
|
||||||
"kernel_addr_r=0x1000000\0" \
|
"kernel_addr_r=0x1000000\0" \
|
||||||
"ramdisk_addr_r=0x4000000\0" \
|
"ramdisk_addr_r=0x4000000\0" \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue