]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
global: Migrate CONFIG_BOARDDIR to CFG
authorTom Rini <trini@konsulko.com>
Sun, 4 Dec 2022 15:03:37 +0000 (10:03 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 23 Dec 2022 15:07:03 +0000 (10:07 -0500)
Perform a simple rename of CONFIG_BOARDDIR to CFG_BOARDDIR

Signed-off-by: Tom Rini <trini@konsulko.com>
arch/sh/cpu/u-boot.lds
doc/README.kwbimage
scripts/Makefile.autoconf

index d360eea7eba3fa51c638d88961cb9f84d5a8dcb4..c31deecec659d2dafe34e283da5f41ce708c4693 100644 (file)
@@ -35,7 +35,7 @@ SECTIONS
        .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))
                . = ALIGN(8192);
 #ifdef CONFIG_ENV_IS_IN_FLASH
index 762b2e3acb71e08f9335baa72a67759a1f5bbd1d..a1d247c32dd1ef2e8e6d6f49f8b22ea505aeee35 100644 (file)
@@ -42,7 +42,7 @@ Board specific configuration file specifications:
        kwbimage.cfg.  The name can be set as part of the full path
        to the file using CONFIG_SYS_KWD_CONFIG (probably in
        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
        character to put comments
 3. This file can have configuration command lines as mentioned below,
index 5a4a1489553842261713f6b0b285194ee3e15305..f5f5e4a4d540432f4a01a428f1d974318166ccc4 100644 (file)
@@ -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.
 define filechk_config_h
        (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 \<configs/$(CONFIG_SYS_CONFIG_NAME).h\>;         \
        echo \#include \<asm/config.h\>;                                \