From 1e3e6b334defd7fbf95cb43d23975e7b3de4b520 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20J=C3=B6rns?= Date: Thu, 8 Aug 2024 08:39:27 +0200 Subject: [PATCH] bundle.bbclass: fix hook SRC_URI example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SRC_URI always requires a URI scheme. Signed-off-by: Enrico Jörns (cherry picked from commit 9953e4681b6f5962bc7dd296d3ec212f3aa0d961) Signed-off-by: Enrico Jörns --- classes-recipe/bundle.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes-recipe/bundle.bbclass b/classes-recipe/bundle.bbclass index a00fa44..53973ec 100644 --- a/classes-recipe/bundle.bbclass +++ b/classes-recipe/bundle.bbclass @@ -7,7 +7,7 @@ # RAUC_BUNDLE_COMPATIBLE ?= "My Super Product" # RAUC_BUNDLE_VERSION ?= "v2015-06-07-1" # -# SRC_URI += "hook.sh" +# SRC_URI += "file://hook.sh" # # RAUC_BUNDLE_HOOKS[file] ?= "hook.sh" # RAUC_BUNDLE_HOOKS[hooks] ?= "install-check"