[U-Boot] [PATCH v2 2/2] boards.cfg: change "<none>" in the board field to "-"

Masahiro Yamada yamada.m at jp.panasonic.com
Fri Jul 11 09:31:47 CEST 2014


In the previous commit, all the board fields were filled.

Now we can use "-" in the board field for a different meaning.

Going forward, "-" stands for no board directory
as in cpu, soc, vendor fields.

Signed-off-by: Masahiro Yamada <yamada.m at jp.panasonic.com>
---

Changes in v2: None

 boards.cfg | 4 ++--
 mkconfig   | 8 +-------
 2 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/boards.cfg b/boards.cfg
index b3995f5..1ba2081 100644
--- a/boards.cfg
+++ b/boards.cfg
@@ -49,8 +49,8 @@ Active  aarch64     armv8          fsl-lsch3   freescale       ls2085a
 Active  aarch64     armv8          fsl-lsch3   freescale       ls2085a             ls2085a_emu_D4                        ls2085a_emu:ARM64,EMU,SYS_FSL_DDR4                                                                                                York Sun <yorksun at freescale.com>
 Active  aarch64     armv8          fsl-lsch3   freescale       ls2085a             ls2085a_simu                          ls2085a_simu:ARM64,SIMU                                                                                                           York Sun <yorksun at freescale.com>
 Active  arc         arc700         -           abilis          tb100               tb100                                 -                                                                                                                                 Alexey Brodkin <abrodkin at synopsys.com>
-Active  arc         arc700         -           synopsys        <none>              arcangel4                             -                                                                                                                                 Alexey Brodkin <abrodkin at synopsys.com>
-Active  arc         arc700         -           synopsys        <none>              arcangel4-be                          -                                                                                                                                 Alexey Brodkin <abrodkin at synopsys.com>
+Active  arc         arc700         -           synopsys        -                   arcangel4                             -                                                                                                                                 Alexey Brodkin <abrodkin at synopsys.com>
+Active  arc         arc700         -           synopsys        -                   arcangel4-be                          -                                                                                                                                 Alexey Brodkin <abrodkin at synopsys.com>
 Active  arc         arc700         -           synopsys        axs101              axs101                                -                                                                                                                                 Alexey Brodkin <abrodkin at synopsys.com>
 Active  arm         arm1136        -           armltd          integrator          integratorcp_cm1136                   integratorcp:CM1136                                                                                                               Linus Walleij <linus.walleij at linaro.org>
 Active  arm         arm1136        mx31        -               imx31_phycore       imx31_phycore                         -                                                                                                                                 -
diff --git a/mkconfig b/mkconfig
index 401f262..84f5a77 100755
--- a/mkconfig
+++ b/mkconfig
@@ -60,13 +60,7 @@ if [ "$cpu" = "-" ] ; then
 	cpu=
 fi
 
-if [ "$6" = "<none>" ] ; then
-	board=
-elif [ "$6" = "-" ] ; then
-	board=${BOARD_NAME}
-else
-	board="$6"
-fi
+[ "$6" != "-" ] && board="$6"
 [ "$5" != "-" ] && vendor="$5"
 [ "$4" != "-" ] && soc="$4"
 [ $# -gt 7 ] && [ "$8" != "-" ] && {
-- 
1.9.1



More information about the U-Boot mailing list