* [PATCH] sanity: add check for own-mirrors/SOURCE_MIRROR_URL
@ 2026-04-17 16:09 corentin.guillevic
2026-04-17 17:16 ` [OE-core] " Quentin Schulz
0 siblings, 1 reply; 2+ messages in thread
From: corentin.guillevic @ 2026-04-17 16:09 UTC (permalink / raw)
To: openembedded-core; +Cc: Corentin Guillevic
From: Corentin Guillevic <corentin.guillevic@smile.fr>
The SOURCE_MIRROR_URL variable belongs to the own-mirrors class. However, the
user may forget to define it. This will cause the class to inject incorrect
content into PREMIRRORS, resulting in the following error:
ERROR: gettext-minimal-native-1.0-r0 do_fetch: Bitbake Fetcher Error: MalformedUrl('${SOURCE_MIRROR_URL}')
ERROR: Logfile of failure stored in: /path/to/tmp/work/x86_64-linux/gettext-minimal-native/1.0/temp/log.do_fetch.258066
ERROR: Task (/path/to/layers/poky/meta/recipes-core/gettext/gettext-minimal-native_1.0.bb:do_fetch) failed with exit code '1'
Add a check to the sanity class, to detect this case and raise an error.
Signed-off-by: Corentin Guillevic <corentin.guillevic@smile.fr>
---
meta/classes-global/sanity.bbclass | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/meta/classes-global/sanity.bbclass b/meta/classes-global/sanity.bbclass
index 1a490f8d61..b24cec7f2c 100644
--- a/meta/classes-global/sanity.bbclass
+++ b/meta/classes-global/sanity.bbclass
@@ -984,6 +984,11 @@ def check_sanity_everybuild(status, d):
"Please set TMPDIR to a clean path with no trailing slash or "
"consecutive slashes (e.g. %s).\n" % (tmpdir, os.path.normpath(tmpdir)))
+ # Check whether the SOURCE_MIRROR_URL variable, belonging to the 'own-mirrors' class, is defined
+ inheritlist = d.getVar('INHERIT')
+ if "own-mirrors" in inheritlist.split(" ") and not d.getVar('SOURCE_MIRROR_URL'):
+ bb.fatal("own-mirrors is enabled, but SOURCE_MIRROR_URL is not defined")
+
# Check the format of MIRRORS, PREMIRRORS and SSTATE_MIRRORS
import re
mirror_vars = ['MIRRORS', 'PREMIRRORS', 'SSTATE_MIRRORS']
--
2.51.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [OE-core] [PATCH] sanity: add check for own-mirrors/SOURCE_MIRROR_URL
2026-04-17 16:09 [PATCH] sanity: add check for own-mirrors/SOURCE_MIRROR_URL corentin.guillevic
@ 2026-04-17 17:16 ` Quentin Schulz
0 siblings, 0 replies; 2+ messages in thread
From: Quentin Schulz @ 2026-04-17 17:16 UTC (permalink / raw)
To: corentin.guillevic, openembedded-core
Hi Corentin,
On 4/17/26 6:09 PM, Corentin Guillevic via lists.openembedded.org wrote:
> From: Corentin Guillevic <corentin.guillevic@smile.fr>
>
> The SOURCE_MIRROR_URL variable belongs to the own-mirrors class. However, the
> user may forget to define it. This will cause the class to inject incorrect
> content into PREMIRRORS, resulting in the following error:
>
> ERROR: gettext-minimal-native-1.0-r0 do_fetch: Bitbake Fetcher Error: MalformedUrl('${SOURCE_MIRROR_URL}')
> ERROR: Logfile of failure stored in: /path/to/tmp/work/x86_64-linux/gettext-minimal-native/1.0/temp/log.do_fetch.258066
> ERROR: Task (/path/to/layers/poky/meta/recipes-core/gettext/gettext-minimal-native_1.0.bb:do_fetch) failed with exit code '1'
>
> Add a check to the sanity class, to detect this case and raise an error.
>
> Signed-off-by: Corentin Guillevic <corentin.guillevic@smile.fr>
> ---
> meta/classes-global/sanity.bbclass | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/meta/classes-global/sanity.bbclass b/meta/classes-global/sanity.bbclass
> index 1a490f8d61..b24cec7f2c 100644
> --- a/meta/classes-global/sanity.bbclass
> +++ b/meta/classes-global/sanity.bbclass
> @@ -984,6 +984,11 @@ def check_sanity_everybuild(status, d):
> "Please set TMPDIR to a clean path with no trailing slash or "
> "consecutive slashes (e.g. %s).\n" % (tmpdir, os.path.normpath(tmpdir)))
>
> + # Check whether the SOURCE_MIRROR_URL variable, belonging to the 'own-mirrors' class, is defined
> + inheritlist = d.getVar('INHERIT')
> + if "own-mirrors" in inheritlist.split(" ") and not d.getVar('SOURCE_MIRROR_URL'):
We have oe.utils.inherits(d, <classes>), I'm wondering if we can use
that instead?
> + bb.fatal("own-mirrors is enabled, but SOURCE_MIRROR_URL is not defined")
We don't have any bb.fatal in that function, only bb.warn,
status.addresult() and raise_sanity_error, so we probably should use one
of those.
Cheers,
Quentin
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-04-17 17:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-17 16:09 [PATCH] sanity: add check for own-mirrors/SOURCE_MIRROR_URL corentin.guillevic
2026-04-17 17:16 ` [OE-core] " Quentin Schulz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox