NetBSD-Bugs archive

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

Re: port-amd64/58982: NetBSD 10.1 install image (amd64) failed toboot on J3455-ITX board (ASRock)



The following reply was made to PR port-amd64/58982; it has been noted by GNATS.

From: Izumi Tsutsui <tsutsui%ceres.dti.ne.jp@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc: tsutsui%ceres.dti.ne.jp@localhost
Subject: Re: port-amd64/58982: NetBSD 10.1 install image (amd64) failed toboot
	 on J3455-ITX board (ASRock)
Date: Sat, 18 Jan 2025 12:12:53 +0900

 > obj ===> tools/ctfmerge
 > sh: 
 > /nsw-data/nsw/ttt-10.1/usr/src/obj/tooldir.NetBSD-9.3-amd64/bin/nbsed: 
 > not found
 > nbmake[3]: 
 > "/nsw-data/nsw/ttt-10.1/usr/src/tools/libctf/../Makefile.nbincludes" 
 > line 27: warning: "/nsw-data/nsw/ttt-10.1/usr/src/obj/tooldir.NetBSD-9
 > .3-amd64/bin/nbsed -e 's/^#.*//' 
 > /nsw-data/nsw/ttt-10.1/usr/src/tools/libctf/../headerlist" returned 
 > non-zero status
 > 
 > 
 > not sure if this hurts, but this is ugly.
 
 It's harmless but the following patch appease the error messages:
 
 ---
 diff --git a/tools/Makefile.nbincludes b/tools/Makefile.nbincludes
 index ab52ad889f63..b55c8548af7c 100644
 --- a/tools/Makefile.nbincludes
 +++ b/tools/Makefile.nbincludes
 @@ -15,7 +15,7 @@ _SUBDIR!=	cd ${_ARCHDIR} && ${MAKE} -V SUBDIR
  _UFS_INCS!=	cd ${_UFSDIR} && find ffs ufs -name '*.h'
  _FS_INCS!=	cd ${_FSDIR} && find cd9660 -name '*.h'
  _FS_INCS+=	unicode.h
 -_ARCH_INCS!=	${TOOL_SED} -e 's/^\#.*//' ${.PARSEDIR}/headerlist
 +_ARCH_INCS!=	${TOOL_SED} -e 's/^\#.*//' ${.PARSEDIR}/headerlist || true
  .endif
  
  _ARCH_INCS+=	ews4800mips/include/pdinfo.h ews4800mips/include/vtoc.h
 
 ---
 Izumi Tsutsui
 


Home | Main Index | Thread Index | Old Index