diff options
author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2021-06-30 16:45:21 +0000 |
---|---|---|
committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2021-06-30 21:45:06 +0000 |
commit | 447636e43c08d697664512a50f00f93f41c0a79f (patch) | |
tree | 796872db1ad295922323a5484575bc5645fac5ec /sys/modules/linux | |
parent | 8c2dd68caa963f1900a8228b0732b04f5d530ffa (diff) |
linux(4): implement coredump support
Implement dumping core for Linux binaries on amd64, for both
32- and 64-bit executables. Some bits are still missing.
This is based on a prototype by chuck@.
Reviewed By: kib
Sponsored By: EPSRC
Differential Revision: https://reviews.freebsd.org/D30019
Diffstat (limited to 'sys/modules/linux')
-rw-r--r-- | sys/modules/linux/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/modules/linux/Makefile b/sys/modules/linux/Makefile index 49d787e2cb99..b2a5816c6919 100644 --- a/sys/modules/linux/Makefile +++ b/sys/modules/linux/Makefile @@ -26,6 +26,7 @@ SRCS+= linux_dummy_x86.c .endif .if ${MACHINE_CPUARCH} == "amd64" SRCS+= linux${SFX}_support.s +SRCS+= linux_elf32.c .else SRCS+= linux_copyout.c .endif |