diff options
author | 2013-04-23 12:28:51 +0000 | |
---|---|---|
committer | 2013-04-23 12:28:51 +0000 | |
commit | 557a3305c09cc0a6924c077e6c418e68c259f3e0 (patch) | |
tree | e0c0dca2374a2b7b638ff45a4cad0c44b9efb2c1 | |
parent | sizeof(&foo) isnt as good as sizeof(foo). (diff) | |
download | wireguard-openbsd-557a3305c09cc0a6924c077e6c418e68c259f3e0.tar.xz wireguard-openbsd-557a3305c09cc0a6924c077e6c418e68c259f3e0.zip |
Remove softraid boot support from fdboot (again).
-rw-r--r-- | sys/arch/amd64/stand/boot/Makefile | 5 | ||||
-rw-r--r-- | sys/arch/i386/stand/boot/Makefile | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/amd64/stand/boot/Makefile b/sys/arch/amd64/stand/boot/Makefile index 9a00858829c..14ae9eb123b 100644 --- a/sys/arch/amd64/stand/boot/Makefile +++ b/sys/arch/amd64/stand/boot/Makefile @@ -1,9 +1,10 @@ -# $OpenBSD: Makefile,v 1.21 2013/01/18 21:09:04 espie Exp $ +# $OpenBSD: Makefile,v 1.22 2013/04/23 12:28:51 jsing Exp $ +COPTS?= MAN?= boot.8 MLINKS?=boot.8 boot.conf.5 -.if !empty(CFLAGS:M-DFDBOOT) +.if !empty(COPTS:M-DFDBOOT) SOFTRAID?=no .else SOFTRAID?=yes diff --git a/sys/arch/i386/stand/boot/Makefile b/sys/arch/i386/stand/boot/Makefile index d3e6ab97860..41f53741a4d 100644 --- a/sys/arch/i386/stand/boot/Makefile +++ b/sys/arch/i386/stand/boot/Makefile @@ -1,9 +1,10 @@ -# $OpenBSD: Makefile,v 1.49 2013/01/18 21:09:04 espie Exp $ +# $OpenBSD: Makefile,v 1.50 2013/04/23 12:28:51 jsing Exp $ +COPTS?= MAN?= boot.8 MLINKS?=boot.8 boot.conf.5 -.if !empty(CFLAGS:M-DFDBOOT) +.if !empty(COPTS:M-DFDBOOT) SOFTRAID?=no .else SOFTRAID?=yes |