Re: Evbarm: Missing SREC install images
Havard Eidnes <[email protected]>
| Newsgroups | gmane.os.netbsd.ports.arm,gmane.os.netbsd.devel.installation |
|---|---|
| Message-ID | <[email protected]> |
> I've just been looking at a the distrib/instkernel directory for evbarm.
> 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
===================================================================
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}:= ${_F}
.endif
-.for _S _C in ${MDSET_SUFFIXES.${_FILENAME}} # {
+.for _S _C in ${MDSET_SUFFIXES.${_F}} # {
CLEANFILES+= ${_KERNEL.${_K}.${_F}}.${_S}
${_KERNEL.${_K}.${_F}}.${_S}: ${_KERNEL.${_K}.${_F}}
Regards,
- Håvard