diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2017-04-06 18:24:28 +1000 |
---|---|---|
committer | Nathan Rossi <nathan@nathanrossi.com> | 2017-04-26 15:32:40 +1000 |
commit | 870d854e321d1576217040c494d68e1668058e61 (patch) | |
tree | 1011a9fc14bfc19411e317f36871e2dba1f2492c | |
parent | e3d355481abf8aa6537d7351c6b485fe8a036257 (diff) | |
download | meta-xilinx-870d854e321d1576217040c494d68e1668058e61.tar.gz |
zybo-linux-bd.bb: Depend on unzip-native instead of unzip
This recipe uses unzip, however it was depending on the targets unzip as
opposed to unzip-native. Because of this it was using the hosts unzip
during the build which is no longer valid with newer oe-core.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
-rw-r--r-- | recipes-bsp/reference-design/zybo-linux-bd.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-bsp/reference-design/zybo-linux-bd.bb b/recipes-bsp/reference-design/zybo-linux-bd.bb index a6df84d8..89205802 100644 --- a/recipes-bsp/reference-design/zybo-linux-bd.bb +++ b/recipes-bsp/reference-design/zybo-linux-bd.bb | |||
@@ -3,7 +3,8 @@ DESCRIPTION = "Contains the Reference Design Files and hardware software \ | |||
3 | hand-off file. The HDF provides bitstream and Xilinx ps7_init_gpl.c/h \ | 3 | hand-off file. The HDF provides bitstream and Xilinx ps7_init_gpl.c/h \ |
4 | platform headers." | 4 | platform headers." |
5 | SECTION = "bsp" | 5 | SECTION = "bsp" |
6 | DEPENDS += "unzip" | 6 | |
7 | DEPENDS += "unzip-native" | ||
7 | 8 | ||
8 | LICENSE = "Proprietary" | 9 | LICENSE = "Proprietary" |
9 | LIC_FILES_CHKSUM = "file://Projects/${HW_BD}/readme.txt;md5=e1cb7639bf00b6e730ff3a7f13714951" | 10 | LIC_FILES_CHKSUM = "file://Projects/${HW_BD}/readme.txt;md5=e1cb7639bf00b6e730ff3a7f13714951" |