diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2016-11-02 19:07:40 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2016-11-02 19:07:40 +0000 |
commit | 6033ebc1f550052a4521cd8a0a02eac8511ef52d (patch) | |
tree | 507f493adc36912b01bb3487cc67fc79d72e3b17 | |
parent | 06d93ba8a77a3432fe08e04b267eed7fac5b8476 (diff) |
when CONSPEED moved from libsa.h to Makefile it lost a leading '1',
reinstate the original of 115200
spotted by brad
-rw-r--r-- | sys/arch/octeon/stand/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/octeon/stand/boot/Makefile b/sys/arch/octeon/stand/boot/Makefile index 69c83ae7862..b7c65b98eb7 100644 --- a/sys/arch/octeon/stand/boot/Makefile +++ b/sys/arch/octeon/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 2016/07/30 03:25:49 guenther Exp $ +# $OpenBSD: Makefile,v 1.5 2016/11/02 19:07:39 jasper Exp $ NOMAN= #MAN= boot.8 @@ -10,7 +10,7 @@ PROG= boot NOPROG= .endif -CFLAGS+=-fno-pie -DCONSPEED=15200 +CFLAGS+=-fno-pie -DCONSPEED=115200 AFLAGS+=-fno-pie LDFLAGS+=-nopie -znorelro |