From e855ad8576ce02db51c8fc0c89810dbd337c21e8 Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Thu, 30 Apr 2020 08:06:23 -0500 Subject: setup: support single-deep machine conf directories The witherspoon config was moved directly into meta-ibm, which caused the setup script to not be able to find it. Modify the setup script to also find machine config files in single-deep meta directories. Signed-off-by: Patrick Williams Change-Id: Icb24649c2e90cd29f72e8b661085b85cde6fcad5 --- setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup') diff --git a/setup b/setup index 9676bb38d..a5e90474d 100755 --- a/setup +++ b/setup @@ -31,7 +31,7 @@ machine() { local target=$1 local build_dir=$2 local cfg name tmpl - for cfg in meta-*/meta-*/conf/machine/*.conf; do + for cfg in meta-*/meta-*/conf/machine/*.conf meta-*/conf/machine/*.conf; do name=${cfg##*/} name=${name%.conf} tmpl=${cfg%/machine/*.conf} -- cgit v1.2.3