File: isinstallable

package info (click to toggle)
partman 63
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,208 kB
  • ctags: 150
  • sloc: ansic: 1,877; sh: 1,399; makefile: 66
file content (21 lines) | stat: -rwxr-xr-x 384 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
#!/bin/sh

case "`archdetect`" in
	# parted does not properly edit dvh disk labels
	mips/r4k-ip22 | mips/r5k-ip22 | mips/r8k-ip26 | mips/r10k-ip28)
		return 1
		;;
	mips/r10k-ip27 | mips/r12k-ip27)
		return 1
		;;
	mips/r5k-ip32 | mips/r10k-ip32 | mips/r12k-ip32)
		return 1
		;;
	# parted does not understand atari disks
	m68k/atari | m68k/q40)
		return 1
		;;
	*)
		return 0;
esac