Subject: Re: Evbarm: Missing SREC install images
To: None <Richard.Earnshaw@buzzard.freeserve.co.uk>
From: Havard Eidnes <he@NetBSD.org>
List: tech-install
Date: 06/07/2007 17:13:13
> I've just been looking at a the distrib/instkernel directory for evba=
rm.
> It seems that all the srec variants of the boot images are missing.

This appears to have broken on or around Aug 22 2006, because
that was the last time my local release build dropped srec & bin
files in that port's release directory.

Further inspection reveals that distrib/common/Makefile.mdset
revision 1.28 is to blame.

This patch fixed it for me, I just committed it:

Index: Makefile.mdset
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /u/nb/src/distrib/common/Makefile.mdset,v
retrieving revision 1.28
diff -u -r1.28 Makefile.mdset
--- Makefile.mdset      23 Aug 2006 19:01:26 -0000      1.28
+++ Makefile.mdset      7 Jun 2007 14:55:52 -0000
@@ -83,7 +83,7 @@
 _KERNEL.${_K}.${_F}:=3D  ${_F}
 .endif
 =

-.for _S _C in ${MDSET_SUFFIXES.${_FILENAME}}           # {
+.for _S _C in ${MDSET_SUFFIXES.${_F}}          # {
 CLEANFILES+=3D   ${_KERNEL.${_K}.${_F}}.${_S}
 =

 ${_KERNEL.${_K}.${_F}}.${_S}: ${_KERNEL.${_K}.${_F}}

Regards,

- H=E5vard