File: flash-kernel-installer.isinstallable

package info (click to toggle)
flash-kernel 2.13
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 352 kB
  • ctags: 19
  • sloc: sh: 531; makefile: 41
file content (19 lines) | stat: -rwxr-xr-x 178 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
set -e

case "`archdetect`" in
	arm*/iop32x)
		exit 0
	;;
	arm*/ixp4xx)
		exit 0
	;;
	arm*/orion5x)
		exit 0
	;;
	# Don't activate it by default
	*)
		exit 1
	;;
esac