Skip to content

Commit f6ba951

Browse files
author
Mete Durlu
committed
s390: Add z17 elf platform
JIRA: https://issues.redhat.com/browse/RHEL-89726 commit 8231a0e Author: Vasily Gorbik <gor@linux.ibm.com> Date: Mon Aug 26 22:13:44 2024 +0200 s390: Add z17 elf platform Add detection for machine types 0x9175 and 0x9176 and set ELF platform name to z17. Reviewed-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Mete Durlu <mdurlu@redhat.com>
1 parent 3fc43c5 commit f6ba951

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

arch/s390/kernel/processor.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,10 @@ static int __init setup_elf_platform(void)
276276
case 0x3932:
277277
strcpy(elf_platform, "z16");
278278
break;
279+
case 0x9175:
280+
case 0x9176:
281+
strcpy(elf_platform, "z17");
282+
break;
279283
}
280284
return 0;
281285
}

0 commit comments

Comments
 (0)