Message ID | 20250625150802.21854-1-twoerner@gmail.com |
---|---|
State | New |
Headers | show |
Series | [meta-rockchip] remove S = WORKDIR/git | expand |
diff --git a/recipes-bsp/rkbin/rk3308-rkbin_git.bb b/recipes-bsp/rkbin/rk3308-rkbin_git.bb index eaf2ce1f5f03..ab2c70f02f92 100644 --- a/recipes-bsp/rkbin/rk3308-rkbin_git.bb +++ b/recipes-bsp/rkbin/rk3308-rkbin_git.bb @@ -13,8 +13,6 @@ PROVIDES += "optee-os" inherit bin_package deploy -S = "${WORKDIR}/git" - COMPATIBLE_MACHINE = "^$" COMPATIBLE_MACHINE:rk3308 = "rk3308" diff --git a/recipes-bsp/rkbin/rockchip-rkbin.inc b/recipes-bsp/rkbin/rockchip-rkbin.inc index 79149c5bebc3..25ec58c73e97 100644 --- a/recipes-bsp/rkbin/rockchip-rkbin.inc +++ b/recipes-bsp/rkbin/rockchip-rkbin.inc @@ -7,8 +7,6 @@ inherit bin_package deploy INHIBIT_DEFAULT_DEPS = "1" -S = "${WORKDIR}/git" - COMPATIBLE_MACHINE = "^$" COMPATIBLE_MACHINE:rk3308 = "rk3308" COMPATIBLE_MACHINE:rk3566 = "rk3566"
oe-core sets S = "${WORKDIR}/git" and will now fail if recipes set this explicitly: ERROR: rockchip-rkbin-tf-a-git-r0 do_unpack: Recipes that set S = "${WORKDIR}/git" or S = "${UNPACKDIR}/git" should remove that assignment, as S set by bitbake.conf in oe-core now works. oe-core: f80c07019dda ("meta: remove S in recipes that fetch from git via setting BB_GIT_DEFAULT_DESTSUFFIX") Signed-off-by: Trevor Woerner <twoerner@gmail.com> --- recipes-bsp/rkbin/rk3308-rkbin_git.bb | 2 -- recipes-bsp/rkbin/rockchip-rkbin.inc | 2 -- 2 files changed, 4 deletions(-)