diff options
author | Christian Hemp <c.hemp@phytec.de> | 2019-08-12 12:14:20 (GMT) |
---|---|---|
committer | Norbert Wesp <n.wesp@phytec.de> | 2019-08-16 13:09:00 (GMT) |
commit | 3068be0844d9ea199ca8340e91be81f993ad1513 (patch) | |
tree | 4e5610512e516eebe49fd89d7f17ff36bf373837 | |
parent | eda16353972f408ace6406ef8023a918e5112552 (diff) | |
download | meta-phytec-3068be0844d9ea199ca8340e91be81f993ad1513.zip meta-phytec-3068be0844d9ea199ca8340e91be81f993ad1513.tar.bz2 |
bbu: barebox-targettools not for i.MX8
With the i.MX8 SOCs we do not use barebox. The barebox-targettools
should only be used for i.MX 6(UL) and AM335x.
Signed-off-by: Christian Hemp <c.hemp@phytec.de>
Signed-off-by: Norbert Wesp <n.wesp@phytec.de>
-rw-r--r-- | recipes-devtools/bbu/bbu.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes-devtools/bbu/bbu.bb b/recipes-devtools/bbu/bbu.bb index 373cfb6..f0fa114 100644 --- a/recipes-devtools/bbu/bbu.bb +++ b/recipes-devtools/bbu/bbu.bb @@ -12,7 +12,10 @@ S = "${WORKDIR}" # Depends on tools like hexdump, tr, grep, awk which are part of our # busybox configuration -RDEPENDS_${PN} = "busybox mtd-utils barebox-targettools" +RDEPENDS_${PN} = "busybox mtd-utils" +RDEPENDS_${PN}_append_mx6 = " barebox-targettools" +RDEPENDS_${PN}_append_mx6ul = " barebox-targettools" +RDEPENDS_${PN}_append_ti33x = " barebox-targettools" RDEPENDS_${PN}_append_imx = " imx-kobs" do_install() { |