Commit 6203ac30 authored by Heiko Carstens's avatar Heiko Carstens
Browse files

s390: add z16 elf platform



Add detection for machine types 0x3931 and 0x3932 and set ELF platform
name to z16.

Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
parent 31231092
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -283,6 +283,10 @@ static int __init setup_elf_platform(void)
	case 0x8562:
		strcpy(elf_platform, "z15");
		break;
	case 0x3931:
	case 0x3932:
		strcpy(elf_platform, "z16");
		break;
	}
	return 0;
}