diff options
Diffstat (limited to 'meta-skeleton/recipes-baremetal')
-rw-r--r-- | meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb b/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb index ee945c1ff0..19ef16988f 100644 --- a/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb +++ b/meta-skeleton/recipes-baremetal/baremetal-examples/baremetal-helloworld_git.bb | |||
@@ -4,7 +4,7 @@ DESCRIPTION = "These are introductory examples to showcase the use of QEMU to ru | |||
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=39346640a23c701e4f459e05f56f4449" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=39346640a23c701e4f459e05f56f4449" |
6 | 6 | ||
7 | SRCREV = "99f4fa4a3b266b42b52af302610b0f4f429ba5e3" | 7 | SRCREV = "0bf9ea216e6f76be50726a3a74e527b7bbb0ad93" |
8 | PV = "0.1+git${SRCPV}" | 8 | PV = "0.1+git${SRCPV}" |
9 | 9 | ||
10 | SRC_URI = "git://github.com/aehs29/baremetal-helloqemu.git;protocol=https;branch=master" | 10 | SRC_URI = "git://github.com/aehs29/baremetal-helloqemu.git;protocol=https;branch=master" |
@@ -28,12 +28,13 @@ inherit baremetal-image | |||
28 | # machine that QEMU uses on OE, e.g. -machine virt -cpu cortex-a57 | 28 | # machine that QEMU uses on OE, e.g. -machine virt -cpu cortex-a57 |
29 | # but the examples can also be run on other architectures/machines | 29 | # but the examples can also be run on other architectures/machines |
30 | # such as vexpress-a15 by overriding the setting on the machine.conf | 30 | # such as vexpress-a15 by overriding the setting on the machine.conf |
31 | COMPATIBLE_MACHINE = "qemuarmv5|qemuarm|qemuarm64" | 31 | COMPATIBLE_MACHINE = "qemuarmv5|qemuarm|qemuarm64|qemuriscv64" |
32 | 32 | ||
33 | BAREMETAL_QEMUARCH ?= "" | 33 | BAREMETAL_QEMUARCH ?= "" |
34 | BAREMETAL_QEMUARCH_qemuarmv5 = "versatile" | 34 | BAREMETAL_QEMUARCH_qemuarmv5 = "versatile" |
35 | BAREMETAL_QEMUARCH_qemuarm = "arm" | 35 | BAREMETAL_QEMUARCH_qemuarm = "arm" |
36 | BAREMETAL_QEMUARCH_qemuarm64 = "aarch64" | 36 | BAREMETAL_QEMUARCH_qemuarm64 = "aarch64" |
37 | BAREMETAL_QEMUARCH_qemuriscv64 = "riscv64" | ||
37 | 38 | ||
38 | EXTRA_OEMAKE_append = " QEMUARCH=${BAREMETAL_QEMUARCH} V=1" | 39 | EXTRA_OEMAKE_append = " QEMUARCH=${BAREMETAL_QEMUARCH} V=1" |
39 | 40 | ||