blob: 0744c39eb04cb227f54c138363228b619b397da2 [file] [log] [blame]
Stephen Warren501ebdf2013-07-24 10:09:16 -07001#!/bin/sh
2#
3# dtc-version dtc-command
4#
Tom Rini2fa73e72017-09-15 13:15:25 -04005# Prints the dtc version of `dtc-command' in a canonical 6-digit form
6# such as `010404' for dtc 1.4.4
Stephen Warren501ebdf2013-07-24 10:09:16 -07007#
8
9dtc="$*"
10
11if [ ${#dtc} -eq 0 ]; then
12 echo "Error: No dtc command specified."
13 printf "Usage:\n\t$0 <dtc-command>\n"
14 exit 1
15fi
16
17MAJOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 1)
18MINOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 2)
Tom Rini2fa73e72017-09-15 13:15:25 -040019PATCH=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 3 | cut -d - -f 1)
Stephen Warren501ebdf2013-07-24 10:09:16 -070020
Tom Rini2fa73e72017-09-15 13:15:25 -040021printf "%02d%02d%02d\\n" $MAJOR $MINOR $PATCH