File: s390x.sh

package info (click to toggle)
base-installer 1.227
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,288 kB
  • sloc: sh: 1,587; ansic: 704; makefile: 59; perl: 50
file content (19 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
arch_get_kernel_flavour () {
	echo $MACHINE
	return 0
}

arch_check_usable_kernel () {
	case "$1" in
	    *-s390x-tape)
		# Bastian Blank says: "-s390-tape is only a kernel
		# image without any logic and modules"
		return 1 ;;
	    *)
		return 0 ;;
	esac
}

arch_get_kernel () {
	echo "linux-image-$1"
}