diff options
author | Warner Losh <imp@FreeBSD.org> | 2017-11-14 23:02:19 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2017-11-14 23:02:19 +0000 |
commit | ca987d4641cdcd7f27e153db17c5bf064934faf5 (patch) | |
tree | 6c3860e3ba8949be9528d644fbb7fa88d8bbbb79 /stand/efi/loader/arch/amd64/Makefile.inc | |
parent | 6eac7115560381ce5c9e2939ab3fce82bb9b6a95 (diff) | |
download | src-ca987d4641cdcd7f27e153db17c5bf064934faf5.tar.gz src-ca987d4641cdcd7f27e153db17c5bf064934faf5.zip |
Move sys/boot to stand. Fix all references to new location
Sponsored by: Netflix
Notes
Notes:
svn path=/head/; revision=325834
Diffstat (limited to 'stand/efi/loader/arch/amd64/Makefile.inc')
-rw-r--r-- | stand/efi/loader/arch/amd64/Makefile.inc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/stand/efi/loader/arch/amd64/Makefile.inc b/stand/efi/loader/arch/amd64/Makefile.inc new file mode 100644 index 000000000000..b6d824ce57e4 --- /dev/null +++ b/stand/efi/loader/arch/amd64/Makefile.inc @@ -0,0 +1,15 @@ +# $FreeBSD$ + +SRCS+= amd64_tramp.S \ + start.S \ + elf64_freebsd.c \ + trap.c \ + exc.S + +.PATH: ${BOOTSRC}/i386/libi386 +SRCS+= nullconsole.c \ + comconsole.c \ + spinconsole.c + +CFLAGS+= -fPIC -DTERM_EMU +LDFLAGS+= -Wl,-znocombreloc |