Change-Id: I4bbed3b6dcb62e85e75887b9522734abae7307e4
#Test od
head -1 $f |od >x # see if od converts ascii to octal ok
-if [ $ARCH = i86 -o $ARCH = i386 ]
+if [ $ARCH = i86 -o $ARCH = i386 -o $ARCH = arm ]
then
cat >answer <<END
0000000 064124 020145 064564 062555 064040 071541 061440 066557
if cmp -s x answer; then : ; else bomb "Error in od test 1"; fi
head -1 $f |od -d >x # see if od converts ascii to decimal ok
-if [ $ARCH = i86 -o $ARCH = i386 ]
+if [ $ARCH = i86 -o $ARCH = i386 -o $ARCH = arm ]
then
cat >answer <<END
0000000 26708 08293 26996 25965 26656 29537 25376 28015