Module Name: src
Committed By: christos
Date: Thu Sep 8 14:43:48 UTC 2016
Modified Files:
src/sys/arch/sgimips/stand: Makefile.booters Makefile.inc
src/sys/arch/sgimips/stand/boot64: Makefile
Log Message:
Avoid the PIE
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/sgimips/stand/Makefile.booters
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/sgimips/stand/Makefile.inc
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/sgimips/stand/boot64/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/sgimips/stand/Makefile.booters
diff -u src/sys/arch/sgimips/stand/Makefile.booters:1.22 src/sys/arch/sgimips/stand/Makefile.booters:1.23
--- src/sys/arch/sgimips/stand/Makefile.booters:1.22 Sun Jan 12 10:26:30 2014
+++ src/sys/arch/sgimips/stand/Makefile.booters Thu Sep 8 10:43:48 2016
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile.booters,v 1.22 2014/01/12 15:26:30 tsutsui Exp $
+# $NetBSD: Makefile.booters,v 1.23 2016/09/08 14:43:48 christos Exp $
# PROG set by parent.
NOMAN= # defined
+NOPIE= # defined
-.include <bsd.own.mk>
+.include <bsd.init.mk>
.include <bsd.sys.mk> # for HOST_SH
# $S must correspond to the top of the 'sys' tree
Index: src/sys/arch/sgimips/stand/Makefile.inc
diff -u src/sys/arch/sgimips/stand/Makefile.inc:1.1 src/sys/arch/sgimips/stand/Makefile.inc:1.2
--- src/sys/arch/sgimips/stand/Makefile.inc:1.1 Wed Nov 21 17:14:51 2001
+++ src/sys/arch/sgimips/stand/Makefile.inc Thu Sep 8 10:43:48 2016
@@ -1,5 +1,5 @@
-# $NetBSD: Makefile.inc,v 1.1 2001/11/21 22:14:51 soren Exp $
+# $NetBSD: Makefile.inc,v 1.2 2016/09/08 14:43:48 christos Exp $
-.include <bsd.own.mk>
+NOPIE= # defined
BINDIR?= /usr/mdec
Index: src/sys/arch/sgimips/stand/boot64/Makefile
diff -u src/sys/arch/sgimips/stand/boot64/Makefile:1.12 src/sys/arch/sgimips/stand/boot64/Makefile:1.13
--- src/sys/arch/sgimips/stand/boot64/Makefile:1.12 Wed Jan 15 20:15:34 2014
+++ src/sys/arch/sgimips/stand/boot64/Makefile Thu Sep 8 10:43:48 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2014/01/16 01:15:34 christos Exp $
+# $NetBSD: Makefile,v 1.13 2016/09/08 14:43:48 christos Exp $
PROG= ip30boot
NOMAN= # defined
@@ -9,7 +9,7 @@ SRCS= start.S boot.c bootinfo.c conf.c d
CLEANFILES+= boot.map
-.include <bsd.own.mk>
+.include <bsd.init.mk>
# $S must correspond to the top of the 'sys' tree
S= ${.CURDIR}/../../../..