blob: 647022fb5e952410fc38ecb23ad9f36b6105b6f5 [file] [log] [blame]
Patrick Williams06ce8af2021-10-26 16:18:30 -05001#!/bin/bash
Alexander Amelkin363dccc2018-03-05 16:47:05 +03002#
3# Copyright (c) 2018, YADRO
4# Author: Alexander Amelkin <a.amelkin@yadro.com>
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
Patrick Williams512028d2020-01-17 10:35:31 -060018if [ -z "$ZSH_NAME" ] && [ "$(basename -- "$0")" = "setup" ]; then
Patrick Williams2c0e2b62022-04-01 09:22:59 -050019 echo The script must be sourced, not executed
20 exit 1
Alexander Amelkin68a967d2018-02-02 12:01:13 +030021fi
22
Alexander Amelkin88a7fe62019-07-17 18:11:32 +030023# Check if 'column' command is present
Patrick Williamsa469a0f2021-02-19 15:07:44 -060024COLUMN=$(which column || true)
Alexander Amelkin88a7fe62019-07-17 18:11:32 +030025if [ -z "$COLUMN" ]; then
26 # If it is not, use 'cat'
Patrick Williamsa469a0f2021-02-19 15:07:44 -060027 COLUMN=$(which cat)
Alexander Amelkin88a7fe62019-07-17 18:11:32 +030028fi
29
Alexander Amelkin68a967d2018-02-02 12:01:13 +030030machine() {
Patrick Williams2c0e2b62022-04-01 09:22:59 -050031 local target=$1
32 local build_dir=$2
33 local cfg name tmpl
34 local configs
Maksym Sloykof1977932020-12-08 22:11:38 +000035
Patrick Williams2c0e2b62022-04-01 09:22:59 -050036 # zsh requires wordsplit so that variable expansion behaves like bash
37 if [ -n "$ZSH_NAME" ]; then
38 setopt local_options shwordsplit
39 fi
40 if which find > /dev/null 2>&1; then
41 configs=$(find meta-* -path "*/conf/machine/*.conf")
42 else
43 configs=$(ls -1 meta-*/meta-*/conf/machine/*.conf meta-*/conf/machine/*.conf)
44 fi
Maksym Sloykof1977932020-12-08 22:11:38 +000045
Patrick Williams2c0e2b62022-04-01 09:22:59 -050046 for cfg in $configs; do
47 name=${cfg##*/}
48 name=${name%.conf}
49 tmpl=${cfg%/machine/*.conf}
Patrick Williamsaef98092021-02-19 19:45:05 -060050
51 # Skip any machines that don't support meta-phosphor.
Patrick Williams06ce8af2021-10-26 16:18:30 -050052 if [ ! -e "$tmpl/bblayers.conf.sample" ]; then
Patrick Williamsaef98092021-02-19 19:45:05 -060053 continue
54 fi
Patrick Williams06ce8af2021-10-26 16:18:30 -050055 if ! grep -q "##OEROOT##/meta-phosphor" "$tmpl/bblayers.conf.sample"; then
Patrick Williamsaef98092021-02-19 19:45:05 -060056 continue
57 fi
58
Patrick Williams2c0e2b62022-04-01 09:22:59 -050059 # If a target is specified, then check for a match,
60 # otherwise just list what we've discovered
61 if [ -n "$target" ]; then
62 if [ "${name}" = "${target}" ]; then
63 echo "Machine ${target} found in ${tmpl%/conf}"
64 mkdir -p "${build_dir}"
65 TEMPLATECONF="${tmpl}" source \
66 oe-init-build-env "${build_dir}"
Alexander Filippovd70e7e82019-05-21 15:45:26 +030067
Patrick Williams2c0e2b62022-04-01 09:22:59 -050068 if [ "$(cat conf/templateconf.cfg)" = "${tmpl}" ]; then
69 sed "s/^\(MACHINE\s*[?:]*\s*=\s*\).*$/\1\"${target}\"/" \
70 -i conf/local.conf
71 fi
72 return
73 fi
Patrick Williamsaef98092021-02-19 19:45:05 -060074 else
Patrick Williams2c0e2b62022-04-01 09:22:59 -050075 echo "${name}"
76 fi
77 done
Alexander Amelkin68a967d2018-02-02 12:01:13 +030078
Patrick Williams2c0e2b62022-04-01 09:22:59 -050079 [ -n "$target" ] && echo "No such machine!" >&2 && return 1
Alexander Amelkin68a967d2018-02-02 12:01:13 +030080}
81
82if [ -z "$1" ]; then
Patrick Williams2c0e2b62022-04-01 09:22:59 -050083 echo Target machine must be specified. Use one of:
84 echo
85 (echo qemuarm; machine) | sort | $COLUMN
Alexander Amelkin68a967d2018-02-02 12:01:13 +030086elif [ "$1" = "qemuarm" ]; then
Patrick Williams2c0e2b62022-04-01 09:22:59 -050087 source openbmc-env
Alexander Amelkin363dccc2018-03-05 16:47:05 +030088else
Patrick Williams2c0e2b62022-04-01 09:22:59 -050089 bld_dir=$2
90 if [ -z "$2" ]; then
91 bld_dir="build/$1"
92 fi
93 machine "$1" "$bld_dir"
Alexander Amelkin68a967d2018-02-02 12:01:13 +030094fi
95