File: isinstallable

package info (click to toggle)
partman-base 165
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,964 kB
  • sloc: ansic: 2,349; sh: 2,269; makefile: 34
file content (17 lines) | stat: -rwxr-xr-x 302 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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
		;;
	*)
		return 0;
esac