From 7f7034a6a0893debd8a5288a5765146a8b2ab0a0 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 10 Sep 2021 15:24:20 +0100 Subject: cookerdata: Show error for no BBLAYERS in bblayers.conf If there is no BBLAYERS set in bblayers.conf show a more helpful error and exit. [YOCTO #14340] Signed-off-by: Richard Purdie (cherry picked from commit 97183e10faf9862b5d9489d6e2c27ac77c3b697d) Signed-off-by: Steve Sakoman --- lib/bb/cookerdata.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py index 44af7b2a2..26b9b0b41 100644 --- a/lib/bb/cookerdata.py +++ b/lib/bb/cookerdata.py @@ -348,6 +348,9 @@ class CookerDataBuilder(object): layers = (data.getVar('BBLAYERS') or "").split() broken_layers = [] + if not layers: + bb.fatal("The bblayers.conf file doesn't contain any BBLAYERS definition") + data = bb.data.createCopy(data) approved = bb.utils.approved_variables() -- cgit 1.2.3-korg