diff options
author | 2015-09-23 03:27:59 +0000 | |
---|---|---|
committer | 2015-09-23 03:27:59 +0000 | |
commit | 203bb98511a52aeeed2ab8539eae458ddcad332e (patch) | |
tree | ca782c7830859e5e9c1653652d0c577493297383 | |
parent | efiboot used 3MB memory below the region for the kernel, but UEFI (diff) | |
download | wireguard-openbsd-203bb98511a52aeeed2ab8539eae458ddcad332e.tar.xz wireguard-openbsd-203bb98511a52aeeed2ab8539eae458ddcad332e.zip |
Remove -DLINKADDR=. It is for first-stage bootstrap.
-rw-r--r-- | sys/arch/amd64/stand/efiboot/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/stand/efiboot/Makefile.common b/sys/arch/amd64/stand/efiboot/Makefile.common index b2a8d2cf2fb..e2d5afe690d 100644 --- a/sys/arch/amd64/stand/efiboot/Makefile.common +++ b/sys/arch/amd64/stand/efiboot/Makefile.common @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.common,v 1.2 2015/09/23 03:19:55 yasuoka Exp $ +# $OpenBSD: Makefile.common,v 1.3 2015/09/23 03:27:59 yasuoka Exp $ S= ${.CURDIR}/../../../../.. SADIR= ${.CURDIR}/../.. @@ -11,7 +11,7 @@ EFI_HEAP_LIMIT= 0xc00000 LDFLAGS+= -nostdlib -T${.CURDIR}/../${LDSCRIPT} -Bsymbolic -shared -COPTS+= -DEFIBOOT -DNEEDS_HEAP_H -DLINKADDR=${LINKADDR} -I${.CURDIR}/.. +COPTS+= -DEFIBOOT -DNEEDS_HEAP_H -I${.CURDIR}/.. COPTS+= -I${EFIDIR}/include -I${S}/stand/boot COPTS+= -ffreestanding -std=gnu99 COPTS+= -fshort-wchar -fPIC |