[Midnightbsd-cvs] src [10214] trunk/sys/boot: update makefiles

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sat Jun 2 10:14:26 EDT 2018


Revision: 10214
          http://svnweb.midnightbsd.org/src/?rev=10214
Author:   laffer1
Date:     2018-06-02 10:14:25 -0400 (Sat, 02 Jun 2018)
Log Message:
-----------
update makefiles

Modified Paths:
--------------
    trunk/sys/boot/Makefile
    trunk/sys/boot/Makefile.amd64
    trunk/sys/boot/Makefile.arm
    trunk/sys/boot/Makefile.i386
    trunk/sys/boot/Makefile.inc

Added Paths:
-----------
    trunk/sys/boot/Makefile.ia64
    trunk/sys/boot/Makefile.pc98
    trunk/sys/boot/Makefile.powerpc
    trunk/sys/boot/Makefile.sparc64

Property Changed:
----------------
    trunk/sys/boot/Makefile.amd64
    trunk/sys/boot/Makefile.i386
    trunk/sys/boot/Makefile.inc

Modified: trunk/sys/boot/Makefile
===================================================================
--- trunk/sys/boot/Makefile	2018-06-02 14:12:52 UTC (rev 10213)
+++ trunk/sys/boot/Makefile	2018-06-02 14:14:25 UTC (rev 10214)
@@ -1,16 +1,18 @@
 # $MidnightBSD$
-# $FreeBSD: src/sys/boot/Makefile,v 1.32 2006/11/05 22:03:02 marcel Exp $
+# $FreeBSD: stable/10/sys/boot/Makefile 293353 2016-01-07 20:34:06Z emaste $
 
 .include <bsd.own.mk>
-.include <bsd.arch.inc.mk>
 
 .if ${MK_FORTH} != "no"
 # Build the add-in FORTH interpreter.
 SUBDIR+=		ficl
+SUBDIR+=		forth
 .endif
 
+.include <bsd.arch.inc.mk>
+
 # Pick the machine-dependent subdir based on the target architecture.
-ADIR=			${MACHINE:S/amd64/i386/}
+ADIR=			${MACHINE:S/powerpc64/powerpc/}
 .if exists(${.CURDIR}/${ADIR}/.)
 SUBDIR+=		${ADIR}
 .endif

Modified: trunk/sys/boot/Makefile.amd64
===================================================================
--- trunk/sys/boot/Makefile.amd64	2018-06-02 14:12:52 UTC (rev 10213)
+++ trunk/sys/boot/Makefile.amd64	2018-06-02 14:14:25 UTC (rev 10214)
@@ -1,5 +1,13 @@
-# $FreeBSD$
+# $MidnightBSD$
+# $FreeBSD: stable/10/sys/boot/Makefile.amd64 293353 2016-01-07 20:34:06Z emaste $
 
 SUBDIR+=		efi
+SUBDIR+=		libstand32
 SUBDIR+=		zfs
 SUBDIR+=		userboot
+
+.if ${MK_FORTH} != "no"
+SUBDIR+=		ficl32
+.endif
+
+SUBDIR+=		i386


Property changes on: trunk/sys/boot/Makefile.amd64
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/sys/boot/Makefile.arm
===================================================================
--- trunk/sys/boot/Makefile.arm	2018-06-02 14:12:52 UTC (rev 10213)
+++ trunk/sys/boot/Makefile.arm	2018-06-02 14:14:25 UTC (rev 10214)
@@ -1,4 +1,5 @@
 # $MidnightBSD$
+# $FreeBSD: stable/10/sys/boot/Makefile.arm 223539 2011-06-25 16:01:45Z marius $
 
 .if ${MK_FDT} != "no"
 SUBDIR+=		fdt

Modified: trunk/sys/boot/Makefile.i386
===================================================================
--- trunk/sys/boot/Makefile.i386	2018-06-02 14:12:52 UTC (rev 10213)
+++ trunk/sys/boot/Makefile.i386	2018-06-02 14:14:25 UTC (rev 10214)
@@ -1,4 +1,6 @@
-# $FreeBSD$
+# $MidnightBSD$
+# $FreeBSD: stable/10/sys/boot/Makefile.i386 271130 2014-09-04 20:35:53Z emaste $
 
 SUBDIR+=		efi
+SUBDIR+=		libstand32
 SUBDIR+=		zfs


Property changes on: trunk/sys/boot/Makefile.i386
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: trunk/sys/boot/Makefile.ia64
===================================================================
--- trunk/sys/boot/Makefile.ia64	                        (rev 0)
+++ trunk/sys/boot/Makefile.ia64	2018-06-02 14:14:25 UTC (rev 10214)
@@ -0,0 +1,5 @@
+# $MidnightBSD$
+# $FreeBSD: stable/10/sys/boot/Makefile.ia64 239378 2012-08-18 23:23:14Z marcel $
+
+SUBDIR+=		efi
+SUBDIR+=		zfs


Property changes on: trunk/sys/boot/Makefile.ia64
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Modified: trunk/sys/boot/Makefile.inc
===================================================================
--- trunk/sys/boot/Makefile.inc	2018-06-02 14:12:52 UTC (rev 10213)
+++ trunk/sys/boot/Makefile.inc	2018-06-02 14:14:25 UTC (rev 10214)
@@ -1,3 +1,11 @@
 # $MidnightBSD$
+# $FreeBSD: stable/10/sys/boot/Makefile.inc 319025 2017-05-28 01:14:59Z ngie $
 
 SSP_CFLAGS=
+
+# The boot loader build uses dd status=none, where possible, for reproducible
+# build output (since performance varies from run to run). Trouble is that
+# option was recently (10.3) added to FreeBSD and is non-standard. Only use it
+# when this test succeeds rather than require dd to be a bootstrap tool.
+DD_NOSTATUS!=(dd status=none count=0 2> /dev/null && echo status=none) || true
+DD=dd ${DD_NOSTATUS}


Property changes on: trunk/sys/boot/Makefile.inc
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: trunk/sys/boot/Makefile.pc98
===================================================================
--- trunk/sys/boot/Makefile.pc98	                        (rev 0)
+++ trunk/sys/boot/Makefile.pc98	2018-06-02 14:14:25 UTC (rev 10214)
@@ -0,0 +1,4 @@
+# $MidnightBSD$
+# $FreeBSD: stable/10/sys/boot/Makefile.pc98 274034 2014-11-03 11:08:00Z nyan $
+
+SUBDIR+=		libstand32


Property changes on: trunk/sys/boot/Makefile.pc98
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/sys/boot/Makefile.powerpc
===================================================================
--- trunk/sys/boot/Makefile.powerpc	                        (rev 0)
+++ trunk/sys/boot/Makefile.powerpc	2018-06-02 14:14:25 UTC (rev 10214)
@@ -0,0 +1,10 @@
+# $MidnightBSD$
+# $FreeBSD: stable/10/sys/boot/Makefile.powerpc 271130 2014-09-04 20:35:53Z emaste $
+
+.if ${MK_FDT} != "no"
+SUBDIR+=		fdt
+.endif
+
+SUBDIR+=		libstand32
+SUBDIR+=		ofw
+SUBDIR+=		uboot


Property changes on: trunk/sys/boot/Makefile.powerpc
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/sys/boot/Makefile.sparc64
===================================================================
--- trunk/sys/boot/Makefile.sparc64	                        (rev 0)
+++ trunk/sys/boot/Makefile.sparc64	2018-06-02 14:14:25 UTC (rev 10214)
@@ -0,0 +1,5 @@
+# $MidnightBSD$
+# $FreeBSD: stable/10/sys/boot/Makefile.sparc64 235364 2012-05-12 20:27:33Z avg $
+
+SUBDIR+=		ofw
+SUBDIR+=		zfs


Property changes on: trunk/sys/boot/Makefile.sparc64
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list