repo.or.cz
/
qemu
/
ar7.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
target/mips: Remove XBurst Media eXtension Unit dead code
[qemu/ar7.git]
/
scripts
/
hxtool
blob
80516b9437506c6ee091956d6044fcab16146d58
1
#!/bin/sh
2
3
hxtoh()
4
{
5
flag=1
6
while read -r str; do
7
case $str in
8
HXCOMM*)
9
;;
10
SRST*|ERST*) flag=$(($flag^1))
11
;;
12
*)
13
test $flag -eq 1 && printf "%s\n" "$str"
14
;;
15
esac
16
done
17
}
18
19
case "$1" in
20
"-h") hxtoh ;;
21
*) exit 1 ;;
22
esac < "$2"
23
24
exit 0