From eccbaef9878f012395196e41ea38d10dd67001e6 Mon Sep 17 00:00:00 2001 From: Philippe Schenker Date: Tue, 7 Sep 2021 09:55:46 +0200 Subject: scripts: uprev-srcrev: add tezi Relates-to: ELB-4127 Signed-off-by: Philippe Schenker (cherry picked from commit e73336f9ff769414c5090640b6f33dc7b3169afb) --- scripts/uprev-srcrev | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/uprev-srcrev b/scripts/uprev-srcrev index 7f93aad..ec17195 100755 --- a/scripts/uprev-srcrev +++ b/scripts/uprev-srcrev @@ -32,6 +32,11 @@ recipes:tdxref = [ "../layers/meta-toradex-tegra/recipes-bsp/u-boot/u-boot-toradex-tk1_2020.07.bb", ] +recipes_tezi = [ + "../layers/meta-toradex-tezi/recipes-tezi/qt-tezi/qt-tezi_git.bb", + "../layers/meta-toradex-tezi/recipes-tezi/qt-tezi/qt-tezictl_git.bb", + ] + recipes_torizon = [ "../layers/meta-toradex-bsp-common/recipes-kernel/backports/backports_5.4.bb", "../layers/meta-toradex-bsp-common/recipes-kernel/linux/linux-toradex-mainline_5.4.bb", @@ -69,6 +74,8 @@ def uprev(args): # decide if we build torizon or tdxref. Use the existence of meta-toradex-torizon if os.path.exists(os.path.join(script_path, '../../meta-toradex-torizon')): recipes = recipes_torizon + elif os.path.exists(os.path.join(script_path, '../../meta-toradex-tezi')): + recipes = recipes_tezi else: recipes = recipes:tdxref -- cgit v1.2.3