diff options
author | Ed Maste <emaste@FreeBSD.org> | 2015-04-10 18:49:43 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2015-04-10 18:49:43 +0000 |
commit | 5ec8fa0ee4fab62d41f1c3a1107aa1b6f317fdc8 (patch) | |
tree | 04fe815089864848e562890ca36c82900c646ba1 /sys/boot/efi/loader/arch/i386/Makefile.inc | |
parent | dea6bf66ea19110e2a4517a231fc0d4527152d30 (diff) |
Add build support for i386 loader.efi
Kernel changes are required for this to be useful but this will allow
others to experiment.
Differential Revision: https://reviews.freebsd.org/D2276
Notes
Notes:
svn path=/head/; revision=281377
Diffstat (limited to 'sys/boot/efi/loader/arch/i386/Makefile.inc')
-rw-r--r-- | sys/boot/efi/loader/arch/i386/Makefile.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/boot/efi/loader/arch/i386/Makefile.inc b/sys/boot/efi/loader/arch/i386/Makefile.inc new file mode 100644 index 000000000000..b339f56825fe --- /dev/null +++ b/sys/boot/efi/loader/arch/i386/Makefile.inc @@ -0,0 +1,11 @@ +# $FreeBSD$ + +SRCS+= start.S \ + efimd.c \ + elf32_freebsd.c \ + exec.c \ + reloc.c + +.PATH: ${.CURDIR}/../../i386/libi386 +SRCS+= nullconsole.c \ + comconsole.c |