File: print_outputformat

package info (click to toggle)
arcboot 0.3.12
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 404 kB
  • ctags: 495
  • sloc: ansic: 2,401; makefile: 219; sh: 145
file content (9 lines) | stat: -rwxr-xr-x 155 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# default to ecoff

case $1 in
	ip32 | IP32) echo "elf32-tradbigmips" ;;
	ip22 | IP22) echo "ecoff-bigmips" ;;
	*) echo "ecoff-bigmips" ;;
esac