Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 1 | def riscv_get_extra_oemake_image(d): |
| 2 | sbi_payload = d.getVar('RISCV_SBI_PAYLOAD') |
| 3 | deploy_dir = d.getVar('DEPLOY_DIR_IMAGE') |
| 4 | |
| 5 | if sbi_payload is None: |
| 6 | return "" |
| 7 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 8 | return "FW_PAYLOAD_PATH=" + deploy_dir + "/" + sbi_payload |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 9 | |
| 10 | def riscv_get_extra_oemake_fdt(d): |
| 11 | sbi_fdt_payload = d.getVar('RISCV_SBI_FDT') |
| 12 | deploy_dir = d.getVar('DEPLOY_DIR_IMAGE') |
| 13 | |
| 14 | if sbi_fdt_payload is None: |
| 15 | return "" |
| 16 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 17 | return "FW_PAYLOAD_FDT_PATH=" + deploy_dir + "/" + sbi_fdt_payload |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 18 | |
| 19 | def riscv_get_do_compile_depends(d): |
| 20 | sbi_payload = d.getVar('RISCV_SBI_PAYLOAD') |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 21 | sbi_fdt_payload = d.getVar('RISCV_SBI_FDT') |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 22 | |
| 23 | if sbi_payload is None: |
| 24 | return "" |
| 25 | |
| 26 | if 'linux' in sbi_payload or 'Image' in sbi_payload: |
| 27 | return "virtual/kernel:do_deploy" |
Brad Bishop | c8f4712 | 2019-06-24 09:36:18 -0400 | [diff] [blame] | 28 | if 'u-boot.bin' in sbi_payload: |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 29 | # If we want U-Boot and a FDT then we need to depend on U-Boot and |
| 30 | # the kernel |
| 31 | if sbi_fdt_payload is not None: |
| 32 | return "virtual/bootloader:do_deploy virtual/kernel:do_deploy" |
| 33 | else: |
| 34 | return "virtual/bootloader:do_deploy" |
| 35 | # If we want a custom FDT then we need to depend on the kernel |
| 36 | if sbi_fdt_payload is not None: |
| 37 | return "virtual/kernel:do_deploy" |
Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame] | 38 | |
| 39 | return "" |