diff options
author | takawata <takawata@FreeBSD.org> | 2000-12-20 12:51:08 +0000 |
---|---|---|
committer | takawata <takawata@FreeBSD.org> | 2000-12-20 12:51:08 +0000 |
commit | 966ad05f240b3e81b46861cef44e820d5f5c3ad7 (patch) | |
tree | 846fc606d51aa99910dd26e00f7e010f7caf967c /sys/modules | |
parent | a0117ce2f8cb6e610a33849619582df3d03b3b77 (diff) | |
download | FreeBSD-src-966ad05f240b3e81b46861cef44e820d5f5c3ad7.zip FreeBSD-src-966ad05f240b3e81b46861cef44e820d5f5c3ad7.tar.gz |
Add PECOFF (WIN32 Execution file format) support.
To use it, some dll is needed. And currently, the dll is only for NetBSD.
So one more kernel module is needed.
For more infomation,
http://chiharu.haun.org/peace/ .
Reviewed by: bp
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/pecoff/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/modules/pecoff/Makefile b/sys/modules/pecoff/Makefile new file mode 100644 index 0000000..0232d98 --- /dev/null +++ b/sys/modules/pecoff/Makefile @@ -0,0 +1,16 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../compat/pecoff + +MAINTAINER= takawata@FreeBSD.org + +KMOD= pecoff +SRCS= imgact_pecoff.c opt_pecoff.h vnode_if.h + + +CFLAGS+= -g -DDEBUG +#EXPORT_SYMS=_pecoff_mod + +opt_pecoff.h:Makefile + touch opt_pecoff.h +.include <bsd.kmod.mk> |