Skip to content

Commit 6203ac3

Browse files
committed
s390: add z16 elf platform
Add detection for machine types 0x3931 and 0x3932 and set ELF platform name to z16. Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
1 parent 3123109 commit 6203ac3

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

arch/s390/kernel/processor.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,10 @@ static int __init setup_elf_platform(void)
283283
case 0x8562:
284284
strcpy(elf_platform, "z15");
285285
break;
286+
case 0x3931:
287+
case 0x3932:
288+
strcpy(elf_platform, "z16");
289+
break;
286290
}
287291
return 0;
288292
}

0 commit comments

Comments
 (0)