blob: 5152c59850f0e4198bd7befcb10a217eaad6a4a0 [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 Williams6acb6102022-05-31 09:25:55 -050024COLUMN_CMD=$(which column || true)
25if [ -z "$COLUMN_CMD" ]; then
Alexander Amelkin88a7fe62019-07-17 18:11:32 +030026 # If it is not, use 'cat'
Patrick Williams6acb6102022-05-31 09:25:55 -050027 COLUMN=( "$(which cat)" )
28else
29 EXPAND_CMD=$(which expand || true)
30 if [ -n "$EXPAND_CMD" ]; then
31 COLUMN=( "sh" "-c" "$COLUMN_CMD | $EXPAND_CMD" )
32 else
33 COLUMN=( "$COLUMN_CMD" )
34 fi
Alexander Amelkin88a7fe62019-07-17 18:11:32 +030035fi
36
Alexander Amelkin68a967d2018-02-02 12:01:13 +030037machine() {
Patrick Williams2c0e2b62022-04-01 09:22:59 -050038 local target=$1
39 local build_dir=$2
40 local cfg name tmpl
41 local configs
Maksym Sloykof1977932020-12-08 22:11:38 +000042
Patrick Williamscbcd6f42022-03-30 10:32:22 -050043 # zsh requires wordsplit so that variable expansion behaves like bash
44 if [ -n "$ZSH_NAME" ]; then
45 setopt local_options shwordsplit
46 fi
47 if which find > /dev/null 2>&1; then
48 configs="$(find meta-* -path "*/conf/machine/*.conf")"
49 else
50 configs=$(ls -1 meta-*/meta-*/conf/machine/*.conf meta-*/conf/machine/*.conf)
51 fi
52 # Add qemu machines.
53 configs="$configs $(ls -1 poky/meta/conf/machine/qemu*.conf)"
Maksym Sloykof1977932020-12-08 22:11:38 +000054
Patrick Williams2c0e2b62022-04-01 09:22:59 -050055 for cfg in $configs; do
56 name=${cfg##*/}
57 name=${name%.conf}
58 tmpl=${cfg%/machine/*.conf}
Patrick Williamsaef98092021-02-19 19:45:05 -060059
Patrick Williamscbcd6f42022-03-30 10:32:22 -050060 if [ "$tmpl" = "poky/meta/conf" ]; then
61 # This is a QEMU machine, use phosphor defaults.
62 tmpl="meta-phosphor/conf"
63 else
64 # Skip any machines that don't support meta-phosphor.
Patrick Williamsbb789d52022-09-09 09:47:35 -050065 if [ ! -e "$tmpl/templates/default/bblayers.conf.sample" ]; then
Patrick Williamscbcd6f42022-03-30 10:32:22 -050066 continue
67 fi
Patrick Williamsbb789d52022-09-09 09:47:35 -050068 if ! grep -q "##OEROOT##/meta-phosphor" "$tmpl/templates/default/bblayers.conf.sample"; then
Patrick Williamscbcd6f42022-03-30 10:32:22 -050069 continue
70 fi
Patrick Williamsaef98092021-02-19 19:45:05 -060071 fi
72
Patrick Williams2c0e2b62022-04-01 09:22:59 -050073 # If a target is specified, then check for a match,
74 # otherwise just list what we've discovered
75 if [ -n "$target" ]; then
76 if [ "${name}" = "${target}" ]; then
77 echo "Machine ${target} found in ${tmpl%/conf}"
78 mkdir -p "${build_dir}"
Patrick Williamsbb789d52022-09-09 09:47:35 -050079 TEMPLATECONF="${tmpl}/templates/default" source \
Patrick Williams2c0e2b62022-04-01 09:22:59 -050080 oe-init-build-env "${build_dir}"
Alexander Filippovd70e7e82019-05-21 15:45:26 +030081
Patrick Williams2c0e2b62022-04-01 09:22:59 -050082 if [ "$(cat conf/templateconf.cfg)" = "${tmpl}" ]; then
83 sed "s/^\(MACHINE\s*[?:]*\s*=\s*\).*$/\1\"${target}\"/" \
84 -i conf/local.conf
85 fi
86 return
87 fi
Patrick Williamsaef98092021-02-19 19:45:05 -060088 else
Patrick Williams2c0e2b62022-04-01 09:22:59 -050089 echo "${name}"
90 fi
91 done
Alexander Amelkin68a967d2018-02-02 12:01:13 +030092
Patrick Williams2c0e2b62022-04-01 09:22:59 -050093 [ -n "$target" ] && echo "No such machine!" >&2 && return 1
Alexander Amelkin68a967d2018-02-02 12:01:13 +030094}
95
96if [ -z "$1" ]; then
Patrick Williamscbcd6f42022-03-30 10:32:22 -050097 echo Target machine must be specified. Use one of:
98 echo
Patrick Williams6acb6102022-05-31 09:25:55 -050099 machine | sort | sed "s/qemu[^[:space:]]*//" | "${COLUMN[@]}"
Alexander Amelkin363dccc2018-03-05 16:47:05 +0300100else
Patrick Williams2c0e2b62022-04-01 09:22:59 -0500101 bld_dir=$2
102 if [ -z "$2" ]; then
103 bld_dir="build/$1"
104 fi
105 machine "$1" "$bld_dir"
Alexander Amelkin68a967d2018-02-02 12:01:13 +0300106fi
107