summaryrefslogtreecommitdiff
path: root/recipes-bsp/u-boot/u-boot.inc
diff options
context:
space:
mode:
authorandrii.davydenko <andrii.davydenko@globallogic.com>2022-08-19 17:07:03 +0300
committerJohn Klug <john.klug@multitech.com>2022-11-16 18:07:23 -0600
commit37ed870fa6925f3bff33ab893e9c6977babeb17c (patch)
treed677db04cf44cf49df55a0779e8b0d683a1ac723 /recipes-bsp/u-boot/u-boot.inc
parent5f18187f4cd84d20fac8051a720f4746bede4bbb (diff)
downloadmeta-multitech-atmel-37ed870fa6925f3bff33ab893e9c6977babeb17c.tar.gz
meta-multitech-atmel-37ed870fa6925f3bff33ab893e9c6977babeb17c.tar.bz2
meta-multitech-atmel-37ed870fa6925f3bff33ab893e9c6977babeb17c.zip
[MTX-4566][GP-1689] Manufacturing: Atmel based devices - process improvement
Add SDMFG variable instead of BB_USE_SD
Diffstat (limited to 'recipes-bsp/u-boot/u-boot.inc')
-rw-r--r--recipes-bsp/u-boot/u-boot.inc7
1 files changed, 5 insertions, 2 deletions
diff --git a/recipes-bsp/u-boot/u-boot.inc b/recipes-bsp/u-boot/u-boot.inc
index e4e534a..cba40c9 100644
--- a/recipes-bsp/u-boot/u-boot.inc
+++ b/recipes-bsp/u-boot/u-boot.inc
@@ -6,6 +6,9 @@ PROVIDES = "virtual/bootloader"
# New U-Boot with suppressed version.
PR="m5"
+# Add a '-sd' suffix to the PR for SDMFG builds
+PR .= "${@oe.utils.conditional("SDMFG", "", "", "-sd", d)}"
+
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://Licenses/README;md5=a2c678cfd4a4d97135585cad908541c6"
@@ -85,8 +88,8 @@ do_patch_append () {
except TypeError:
bb.fatal("PR is missing from recipe")
f.write(PR + os.linesep)
- SDCARD = d.getVar("BB_USE_SD",True)
- if (SDCARD == 1):
+ SDCARD = d.getVar("SDMFG",True)
+ if (SDCARD != ""):
try:
S = d.getVar("S",True)
except TypeError: