Skip to content

Commit e4a3b14

Browse files
author
Mete Durlu
committed
s390: Add z17 elf platform
JIRA: https://issues.redhat.com/browse/RHEL-89725 commit 8231a0e Author: Vasily Gorbik <[email protected]> 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 <[email protected]> Signed-off-by: Vasily Gorbik <[email protected]> Signed-off-by: Heiko Carstens <[email protected]> Signed-off-by: Mete Durlu <[email protected]>
1 parent 82f03bd commit e4a3b14

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
@@ -292,6 +292,10 @@ static int __init setup_elf_platform(void)
292292
case 0x3932:
293293
strcpy(elf_platform, "z16");
294294
break;
295+
case 0x9175:
296+
case 0x9176:
297+
strcpy(elf_platform, "z17");
298+
break;
295299
}
296300
return 0;
297301
}

0 commit comments

Comments
 (0)