Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/common Various suffixes for the same kernel image ma...



details:   https://anonhg.NetBSD.org/src/rev/e3578da0cc15
branches:  trunk
changeset: 458813:e3578da0cc15
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Aug 11 13:55:18 2019 +0000

description:
Various suffixes for the same kernel image may depend on each
other, so .WAIT after creating one before moving on to the next.
Case at hand: evbarm/installation/instkernel:
netbsd-RPI_INSTALL.bin needs to be complete before netbsd-RPI_INSTALL.img
can be created.
Better solutions welcome...

diffstat:

 distrib/common/Makefile.mdset |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r ce811c95a81b -r e3578da0cc15 distrib/common/Makefile.mdset
--- a/distrib/common/Makefile.mdset     Sun Aug 11 13:16:10 2019 +0000
+++ b/distrib/common/Makefile.mdset     Sun Aug 11 13:55:18 2019 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.mdset,v 1.43 2019/02/06 07:33:08 mrg Exp $
+#      $NetBSD: Makefile.mdset,v 1.44 2019/08/11 13:55:18 martin Exp $
 #
 # Makefile snippet to ${TOOL_MDSETIMAGE} file system images into kernels
 #
@@ -103,9 +103,9 @@
 .endif
 
 .if defined(MDSET_NOGZIP.${_FILENAME}) || defined(MDSET_NOGZIP)
-KERNELS+=      ${_KERNEL.${_K}.${_F}}.${_S}
+KERNELS+=      ${_KERNEL.${_K}.${_F}}.${_S} .WAIT
 .else                                                  # {
-KERNELS+=      ${_KERNEL.${_K}.${_F}}.${_S}.gz
+KERNELS+=      ${_KERNEL.${_K}.${_F}}.${_S}.gz .WAIT
 
 ${_KERNEL.${_K}.${_F}}.${_S}.gz: ${_KERNEL.${_K}.${_F}}.${_S}
        ${_MKTARGET_CREATE}



Home | Main Index | Thread Index | Old Index