Add Barebox support
- See https://barebox.org/ Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
This commit is contained in:
parent
2525377e1a
commit
cc3650587b
1 changed files with 15 additions and 0 deletions
15
script.sh
15
script.sh
|
|
@ -79,7 +79,22 @@ case $cmd in
|
|||
grep -E '^(LABEL|DENX)' |
|
||||
tac |
|
||||
sed -r 's/^/old by-date /'
|
||||
;;
|
||||
barebox)
|
||||
echo "$tags" |
|
||||
grep '^v20' |
|
||||
tac |
|
||||
sed -r 's/^(v20..)(.*)$/new \1 \1\2/'
|
||||
|
||||
echo "$tags" |
|
||||
grep '^v2\.0' |
|
||||
tac |
|
||||
sed -r 's/^(v2\.0)(.*)$/old \1 \1\2/'
|
||||
|
||||
echo "$tags" |
|
||||
grep '^freescale' |
|
||||
tac |
|
||||
sed -r 's/^(freescale)(.*)$/old \1 \1\2/'
|
||||
;;
|
||||
busybox)
|
||||
echo "$tags" |
|
||||
|
|
|
|||
Loading…
Reference in a new issue