Module Name:    src
Committed By:   uebayasi
Date:           Tue Aug 25 02:38:15 UTC 2015

Modified Files:
        src/sys/arch/epoc32/conf: Makefile.epoc32.inc
        src/sys/arch/evbarm/conf: Makefile.evbarm.inc
        src/sys/arch/zaurus/conf: Makefile.zaurus.inc

Log Message:
Print a message when creating a temporary ldscript.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/epoc32/conf/Makefile.epoc32.inc
cvs rdiff -u -r1.33 -r1.34 src/sys/arch/evbarm/conf/Makefile.evbarm.inc
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/zaurus/conf/Makefile.zaurus.inc

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/epoc32/conf/Makefile.epoc32.inc
diff -u src/sys/arch/epoc32/conf/Makefile.epoc32.inc:1.4 src/sys/arch/epoc32/conf/Makefile.epoc32.inc:1.5
--- src/sys/arch/epoc32/conf/Makefile.epoc32.inc:1.4	Mon Aug 24 14:04:24 2015
+++ src/sys/arch/epoc32/conf/Makefile.epoc32.inc	Tue Aug 25 02:38:15 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.epoc32.inc,v 1.4 2015/08/24 14:04:24 uebayasi Exp $
+#	$NetBSD: Makefile.epoc32.inc,v 1.5 2015/08/25 02:38:15 uebayasi Exp $
 
 MACHINE_ARCH=		arm
 CPPFLAGS+=		-D${MACHINE}
@@ -17,6 +17,7 @@ ${KERNLDSCRIPT}: \
     ${THISARM}/conf/ldscript.epoc32 \
     ${THISARM}/conf/Makefile.epoc32.inc \
     Makefile
+	${_MKTARGET_CREATE}
 	${TOOL_SED} -e 's/@KERNEL_BASE_PHYS@/${KERNEL_BASE_PHYS}/' \
 	    -e 's/@KERNEL_BASE_VIRT@/${KERNEL_BASE_VIRT}/' \
 	    ${THISARM}/conf/ldscript.epoc32 > tmp && mv tmp $@

Index: src/sys/arch/evbarm/conf/Makefile.evbarm.inc
diff -u src/sys/arch/evbarm/conf/Makefile.evbarm.inc:1.33 src/sys/arch/evbarm/conf/Makefile.evbarm.inc:1.34
--- src/sys/arch/evbarm/conf/Makefile.evbarm.inc:1.33	Mon Aug 24 14:04:24 2015
+++ src/sys/arch/evbarm/conf/Makefile.evbarm.inc	Tue Aug 25 02:38:15 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.evbarm.inc,v 1.33 2015/08/24 14:04:24 uebayasi Exp $
+#	$NetBSD: Makefile.evbarm.inc,v 1.34 2015/08/25 02:38:15 uebayasi Exp $
 
 #
 # If this is a install kernel and the ramdisk image exists in the object
@@ -42,7 +42,7 @@ ${KERNLDSCRIPT}: \
     ${THISARM}/conf/Makefile.evbarm.inc \
     Makefile \
     ${BOARDMKFRAG}
-	echo ${KERNELS}
+	${_MKTARGET_CREATE}
 	${TOOL_SED} -e 's/@KERNEL_BASE_PHYS@/${KERNEL_BASE_PHYS}/' \
 	    -e 's/@KERNEL_BASE_VIRT@/${KERNEL_BASE_VIRT}/' \
 	    ${THISARM}/conf/ldscript.evbarm > tmp && mv tmp $@

Index: src/sys/arch/zaurus/conf/Makefile.zaurus.inc
diff -u src/sys/arch/zaurus/conf/Makefile.zaurus.inc:1.8 src/sys/arch/zaurus/conf/Makefile.zaurus.inc:1.9
--- src/sys/arch/zaurus/conf/Makefile.zaurus.inc:1.8	Mon Aug 24 14:04:25 2015
+++ src/sys/arch/zaurus/conf/Makefile.zaurus.inc	Tue Aug 25 02:38:15 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.zaurus.inc,v 1.8 2015/08/24 14:04:25 uebayasi Exp $
+#	$NetBSD: Makefile.zaurus.inc,v 1.9 2015/08/25 02:38:15 uebayasi Exp $
 
 MACHINE_ARCH?=		arm
 CPPFLAGS+=		-D${MACHINE}
@@ -25,6 +25,7 @@ EXTRA_CLEAN+=		netbsd.map assym.d ldscri
 
 # generate ldscript from common template
 ldscript: ${THISARM}/conf/ldscript.zaurus ${THISARM}/conf/Makefile.zaurus.inc Makefile
+	${_MKTARGET_CREATE}
 	${TOOL_SED} -e 's/@KERNEL_BASE_PHYS@/${KERNEL_BASE_PHYS}/' \
 	    -e 's/@KERNEL_BASE_VIRT@/${KERNEL_BASE_VIRT}/' \
 	    ${THISARM}/conf/ldscript.zaurus > tmp && mv tmp $@

Reply via email to