Skip to content

Commit

Permalink
rename machine config files from yaml to toml.
Browse files Browse the repository at this point in the history
They are not yaml files, they are toml files.

Signed-off-by: Sai Sree Kartheek Adivi <[email protected]>
  • Loading branch information
sskartheekadivi committed Jul 15, 2024
1 parent 01b5c15 commit 33ea523
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions scripts/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ machine=$1
config=$2
bsp_version=${3}

read_config ${topdir}/configs/machines/${bsp_version}.yaml $machine $config
read_config ${topdir}/configs/machines/${bsp_version}.toml $machine $config
}

function read_bsp_config() {
Expand Down Expand Up @@ -54,7 +54,7 @@ bsp_version=$2
distro_file=$3

validate_section "BSP Version" ${bsp_version} "${topdir}/configs/bsp_sources.toml"
validate_section "Machine" ${machine} "${topdir}/configs/machines/${bsp_version}.yaml"
validate_section "Machine" ${machine} "${topdir}/configs/machines/${bsp_version}.toml"

if [ ! -f "${topdir}/configs/bdebstrap_configs/${distro_file}" ] ; then
log "Distro Variant \"${distro_file}\" does not exist. Exiting."
Expand Down

0 comments on commit 33ea523

Please sign in to comment.