Module Name:    src
Committed By:   kamil
Date:           Thu Jan  2 04:28:51 UTC 2020

Modified Files:
        src/sys/sys: exec_elf.h

Log Message:
Fix the EM_TILEGX number in the ELF header

source: http://www.sco.com/developers/gabi/latest/ch4.eheader.html

191 is confirmed in LLVM, GNU toolchain, FreeBSD.


To generate a diff of this commit:
cvs rdiff -u -r1.161 -r1.162 src/sys/sys/exec_elf.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/sys/exec_elf.h
diff -u src/sys/sys/exec_elf.h:1.161 src/sys/sys/exec_elf.h:1.162
--- src/sys/sys/exec_elf.h:1.161	Fri Jun  7 23:35:52 2019
+++ src/sys/sys/exec_elf.h	Thu Jan  2 04:28:51 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: exec_elf.h,v 1.161 2019/06/07 23:35:52 christos Exp $	*/
+/*	$NetBSD: exec_elf.h,v 1.162 2020/01/02 04:28:51 kamil Exp $	*/
 
 /*-
  * Copyright (c) 1994 The NetBSD Foundation, Inc.
@@ -308,7 +308,7 @@ typedef struct {
 #define EM_TILE64	187	/* Tilera TILE64 multicore architecture family */
 #define EM_TILEPRO	188	/* Tilera TILEPro multicore architecture family */
 #define EM_MICROBLAZE	189	/* Xilinx MicroBlaze 32-bit RISC soft processor core */
-#define EM_TILEGX	192	/* Tilera TILE-GX multicore architecture family */
+#define EM_TILEGX	191	/* Tilera TILE-GX multicore architecture family */
 #define EM_Z80		220	/* Zilog Z80 */
 #define EM_RISCV	243	/* RISC-V */
 

Reply via email to