Skip to content

Commit

Permalink
setup: support single-deep machine conf directories
Browse files Browse the repository at this point in the history
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 <[email protected]>
Change-Id: Icb24649c2e90cd29f72e8b661085b85cde6fcad5
  • Loading branch information
williamspatrick authored and geissonator committed May 1, 2020
1 parent 4e8b228 commit e855ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit e855ad8

Please sign in to comment.