diff options
| -rw-r--r-- | meta/recipes-bsp/opensbi/opensbi-payloads.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-bsp/opensbi/opensbi-payloads.inc b/meta/recipes-bsp/opensbi/opensbi-payloads.inc index cc31ab3b1d..ce537c0587 100644 --- a/meta/recipes-bsp/opensbi/opensbi-payloads.inc +++ b/meta/recipes-bsp/opensbi/opensbi-payloads.inc | |||
| @@ -17,13 +17,13 @@ def riscv_get_extra_oemake_fdt(d): | |||
| 17 | return "FW_FDT_PATH=" + deploy_dir + "/" + sbi_fdt | 17 | return "FW_FDT_PATH=" + deploy_dir + "/" + sbi_fdt |
| 18 | 18 | ||
| 19 | def riscv_get_do_compile_depends(d): | 19 | def riscv_get_do_compile_depends(d): |
| 20 | sbi_payload = d.getVar('RISCV_SBI_PAYLOAD') | 20 | sbi_payload = d.getVar('RISCV_SBI_PAYLOAD') or "" |
| 21 | sbi_fdt = d.getVar('RISCV_SBI_FDT') | 21 | sbi_fdt = d.getVar('RISCV_SBI_FDT') or "" |
| 22 | 22 | ||
| 23 | if sbi_payload is None and sbi_fdt is None: | 23 | if sbi_payload == "" and sbi_fdt == "": |
| 24 | return "" | 24 | return "" |
| 25 | 25 | ||
| 26 | if sbi_fdt is not None and 'u-boot.bin' in sbi_payload: | 26 | if sbi_fdt != "" and 'u-boot.bin' in sbi_payload: |
| 27 | return "virtual/kernel:do_deploy virtual/bootloader:do_deploy" | 27 | return "virtual/kernel:do_deploy virtual/bootloader:do_deploy" |
| 28 | 28 | ||
| 29 | if 'linux' in sbi_payload or 'Image' in sbi_payload: | 29 | if 'linux' in sbi_payload or 'Image' in sbi_payload: |
