]> git.ipfire.org Git - thirdparty/u-boot.git/blame - scripts/dtc-version.sh
Merge tag 'efi-next-2024-02-28' of https://source.denx.de/u-boot/custodians/u-boot...
[thirdparty/u-boot.git] / scripts / dtc-version.sh
CommitLineData
d7faa082
SG
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0+
3#
4# dtc-version dtc-command
5#
6# Prints the dtc version of `dtc-command' in a canonical 6-digit form
7# such as `010404' for dtc 1.4.4
8#
9
10dtc="$*"
11
12if [ ${#dtc} -eq 0 ]; then
93b19653 13 echo "Error: No dtc command specified"
d7faa082
SG
14 printf "Usage:\n\t$0 <dtc-command>\n"
15 exit 1
16fi
17
93b19653
SG
18if ! which $dtc >/dev/null ; then
19 echo "Error: Cannot find dtc: $dtc"
20 exit 1
21fi
22
f0738152 23MAJOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 1 | tr -d v)
d7faa082
SG
24MINOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 2)
25PATCH=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 3 | cut -d - -f 1)
26
27printf "%02d%02d%02d\\n" $MAJOR $MINOR $PATCH