From ba79d4711c8010bb7f28784e18a0a42b98284d48 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: Anuj Mittal --- lib/bb/cookerdata.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/bb/cookerdata.py') diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py index 1c1e008c6..24002b879 100644 --- a/lib/bb/cookerdata.py +++ b/lib/bb/cookerdata.py @@ -342,6 +342,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