summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/recipes-devtools/qemu/flashstrip_1.0.bb
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2024-11-21 13:54:05 -0600
committerMark Hatle <mark.hatle@amd.com>2024-11-21 13:54:05 -0600
commit1241013c7bce4262a6128eb4ccb3db410831746d (patch)
treeda79ab94a5b4ae9abf6211d8289a4bf5dbdcde9f /meta-xilinx-core/recipes-devtools/qemu/flashstrip_1.0.bb
parent6e3a214d268c7d75a42a9a329b5621fb5a49a89a (diff)
parent10531c26195f97f9565e9770c21977805e53c46b (diff)
downloadmeta-xilinx-1241013c7bce4262a6128eb4ccb3db410831746d.tar.gz
Merge remote-tracking branch 'origin/scarthgap' into yocto-master
This moves the system to scarthgap. It is known to NOT work with Styhead and master, Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core/recipes-devtools/qemu/flashstrip_1.0.bb')
-rw-r--r--meta-xilinx-core/recipes-devtools/qemu/flashstrip_1.0.bb10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-xilinx-core/recipes-devtools/qemu/flashstrip_1.0.bb b/meta-xilinx-core/recipes-devtools/qemu/flashstrip_1.0.bb
index 11d9146c..e1dcc5ae 100644
--- a/meta-xilinx-core/recipes-devtools/qemu/flashstrip_1.0.bb
+++ b/meta-xilinx-core/recipes-devtools/qemu/flashstrip_1.0.bb
@@ -4,17 +4,17 @@ DESCRIPTION = "Building and installing flash strip utility"
4LICENSE = "MIT" 4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://../flash_stripe.c;beginline=1;endline=23;md5=abb859d98b7c4eede655e1b71824125a" 5LIC_FILES_CHKSUM = "file://../flash_stripe.c;beginline=1;endline=23;md5=abb859d98b7c4eede655e1b71824125a"
6 6
7B = "${UNPACKDIR}/build" 7B = "${WORKDIR}/build"
8 8
9SRC_URI += "file://flash_stripe.c" 9SRC_URI += "file://flash_stripe.c"
10 10
11TARGET_CC_ARCH += "${LDFLAGS}" 11TARGET_CC_ARCH += "${LDFLAGS}"
12 12
13do_compile() { 13do_compile() {
14 ${CC} ${UNPACKDIR}/flash_stripe.c -o flash_strip 14 ${CC} ${WORKDIR}/flash_stripe.c -o flash_strip
15 ${CC} ${UNPACKDIR}/flash_stripe.c -o flash_unstrip 15 ${CC} ${WORKDIR}/flash_stripe.c -o flash_unstrip
16 ${CC} ${UNPACKDIR}/flash_stripe.c -o flash_strip_bw -DFLASH_STRIPE_BW 16 ${CC} ${WORKDIR}/flash_stripe.c -o flash_strip_bw -DFLASH_STRIPE_BW
17 ${CC} ${UNPACKDIR}/flash_stripe.c -o flash_unstrip_bw -DUNSTRIP -DFLASH_STRIPE_BW 17 ${CC} ${WORKDIR}/flash_stripe.c -o flash_unstrip_bw -DUNSTRIP -DFLASH_STRIPE_BW
18} 18}
19 19
20do_install() { 20do_install() {