mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-25 14:56:03 +00:00
global: Migrate CONFIG_BOARDDIR to CFG
Perform a simple rename of CONFIG_BOARDDIR to CFG_BOARDDIR Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
04501ecca2
commit
207972acfc
3 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ SECTIONS
|
||||||
.text :
|
.text :
|
||||||
{
|
{
|
||||||
KEEP(*/start.o (.text))
|
KEEP(*/start.o (.text))
|
||||||
KEEP(CONFIG_BOARDDIR/lowlevel_init.o (.text .spiboot1.text))
|
KEEP(CFG_BOARDDIR/lowlevel_init.o (.text .spiboot1.text))
|
||||||
KEEP(*(.spiboot2.text))
|
KEEP(*(.spiboot2.text))
|
||||||
. = ALIGN(8192);
|
. = ALIGN(8192);
|
||||||
#ifdef CONFIG_ENV_IS_IN_FLASH
|
#ifdef CONFIG_ENV_IS_IN_FLASH
|
||||||
|
|
|
@ -42,7 +42,7 @@ Board specific configuration file specifications:
|
||||||
kwbimage.cfg. The name can be set as part of the full path
|
kwbimage.cfg. The name can be set as part of the full path
|
||||||
to the file using CONFIG_SYS_KWD_CONFIG (probably in
|
to the file using CONFIG_SYS_KWD_CONFIG (probably in
|
||||||
include/configs/<yourboard>.h). The path should look like:
|
include/configs/<yourboard>.h). The path should look like:
|
||||||
$(CONFIG_BOARDDIR)/<yourkwbimagename>.cfg
|
$(CFG_BOARDDIR)/<yourkwbimagename>.cfg
|
||||||
2. This file can have empty lines and lines starting with "#" as first
|
2. This file can have empty lines and lines starting with "#" as first
|
||||||
character to put comments
|
character to put comments
|
||||||
3. This file can have configuration command lines as mentioned below,
|
3. This file can have configuration command lines as mentioned below,
|
||||||
|
|
|
@ -112,7 +112,7 @@ vpl/include/autoconf.mk: vpl/u-boot.cfg
|
||||||
# Prior to Kconfig, it was generated by mkconfig. Now it is created here.
|
# Prior to Kconfig, it was generated by mkconfig. Now it is created here.
|
||||||
define filechk_config_h
|
define filechk_config_h
|
||||||
(echo "/* Automatically generated - do not edit */"; \
|
(echo "/* Automatically generated - do not edit */"; \
|
||||||
echo \#define CONFIG_BOARDDIR board/$(if $(VENDOR),$(VENDOR)/)$(BOARD);\
|
echo \#define CFG_BOARDDIR board/$(if $(VENDOR),$(VENDOR)/)$(BOARD);\
|
||||||
echo \#include \<config_uncmd_spl.h\>; \
|
echo \#include \<config_uncmd_spl.h\>; \
|
||||||
echo \#include \<configs/$(CONFIG_SYS_CONFIG_NAME).h\>; \
|
echo \#include \<configs/$(CONFIG_SYS_CONFIG_NAME).h\>; \
|
||||||
echo \#include \<asm/config.h\>; \
|
echo \#include \<asm/config.h\>; \
|
||||||
|
|
Loading…
Add table
Reference in a new issue