File: armel.sh

package info (click to toggle)
base-installer 1.115%2Bsqueeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,848 kB
  • ctags: 124
  • sloc: sh: 1,530; ansic: 633; makefile: 51; perl: 50
file content (38 lines) | stat: -rw-r--r-- 789 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
arch_get_kernel_flavour () {
	case "$SUBARCH" in
	    iop32x|iop33x|ixp4xx|kirkwood|orion5x|versatile)
		echo "$SUBARCH"
		return 0 ;;
	    ads)
		# NOTE: this kernel is not in Debian, but makes it
		# easier to offer unofficial support from a private apt-archive
		echo "ads"
		return 0 ;;
	    *)
		warning "Unknown $ARCH subarchitecture '$SUBARCH'."
		return 1 ;;
	esac
}

arch_check_usable_kernel () {
	# Subarchitecture must match exactly
	if echo "$1" | grep -Eq -- "-$2(-.*)?$"; then return 0; fi
	return 1
}

arch_get_kernel () {
	case "$KERNEL_MAJOR" in
	    2.6)
		case "$1" in
		    bast)
			echo "linux-image-$KERNEL_MAJOR-s3c2410"
			;;
		    *)
			echo "linux-image-$KERNEL_MAJOR-$1"
			;;
		esac
		;;
	    *)	warning "Unsupported kernel major '$KERNEL_MAJOR'."
		;;
	esac
}