summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/recipes-devtools/qemu/flashstrip_1.0.bb
diff options
context:
space:
mode:
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() {