NetBSD Problem Report #51369

From www@NetBSD.org  Wed Jul 27 15:10:24 2016
Return-Path: <www@NetBSD.org>
Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK))
	by mollari.NetBSD.org (Postfix) with ESMTPS id 580167A290
	for <gnats-bugs@gnats.NetBSD.org>; Wed, 27 Jul 2016 15:10:24 +0000 (UTC)
Message-Id: <20160727151023.1E9967A291@mollari.NetBSD.org>
Date: Wed, 27 Jul 2016 15:10:23 +0000 (UTC)
From: rokuyama@rk.phys.keio.ac.jp
Reply-To: rokuyama@rk.phys.keio.ac.jp
To: gnats-bugs@NetBSD.org
Subject: kernel image for OpenBIOS not generated
X-Send-Pr-Version: www-1.0

>Number:         51369
>Category:       port-powerpc
>Synopsis:       kernel image for OpenBIOS not generated
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    port-powerpc-maintainer
>State:          closed
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Wed Jul 27 15:15:00 +0000 2016
>Closed-Date:    Sat Aug 27 22:19:12 +0000 2016
>Last-Modified:  Sat Aug 27 22:19:12 +0000 2016
>Originator:     Rin Okuyama
>Release:        HEAD
>Organization:
Faculty of Science and Technology, Keio University
>Environment:
NetBSD obs266 7.99.34 NetBSD 7.99.34 (OPENBLOCKS266) #1: Wed Jul 27 22:09:26 JST 2016  rin@XXX:XXX evbppc
>Description:
Kernel images for OpenBIOS are not generated due to typo.
>How-To-Repeat:
Build kernel for e.g., evbppc/OPENBLOCKS266. Then, you will find that
netbsd.img is not generated.
>Fix:
====================
--- ./src/sys/arch/evbppc/conf/Makefile.ev64260.inc.orig	2016-07-19 02:08:23.994776125 +0900
+++ ./src/sys/arch/evbppc/conf/Makefile.ev64260.inc	2016-07-19 02:06:32.772463422 +0900
@@ -9,5 +9,5 @@

 SYSTEM_LD_TAIL_EXTRA+=; \
 	echo ${MKIMG} $@ $@.img ; \
-	OBJDUMP=${OBJDUMP}; OBJCOPY=${OBJCOPY}; STAT=${TOOL_STAT]; \
+	OBJDUMP=${OBJDUMP}; OBJCOPY=${OBJCOPY}; STAT=${TOOL_STAT}; \
 		export OBJDUMP OBJCOPY STAT; ${MKIMG} $@ $@.img
--- ./src/sys/arch/evbppc/conf/Makefile.obs405.inc.orig	2016-07-19 02:08:34.762727525 +0900
+++ ./src/sys/arch/evbppc/conf/Makefile.obs405.inc	2016-07-19 02:06:49.215066463 +0900
@@ -15,7 +15,7 @@

 SYSTEM_LD_TAIL_EXTRA+=; \
 	echo ${MKIMG} $@ $@.img ; \
-	OBJDUMP=${OBJDUMP}; OBJCOPY=${OBJCOPY}; STAT=${TOOL_STAT]; \
+	OBJDUMP=${OBJDUMP}; OBJCOPY=${OBJCOPY}; STAT=${TOOL_STAT}; \
 		export OBJDUMP OBJCOPY STAT; ${MKIMG} $@ $@.img


@@ -30,7 +30,7 @@

 SYSTEM_LD_TAIL_EXTRA+=; \
 	echo ${MKIMG} $@ $@.img ; \
-	OBJDUMP=${OBJDUMP}; OBJCOPY=${OBJCOPY}; STAT=${TOOL_STAT]; \
+	OBJDUMP=${OBJDUMP}; OBJCOPY=${OBJCOPY}; STAT=${TOOL_STAT}; \
 		export OBJDUMP OBJCOPY STAT; ${MKIMG} $@ $@.img


--- ./src/sys/arch/evbppc/conf/Makefile.walnut.inc.orig	2016-07-19 02:08:42.427209211 +0900
+++ ./src/sys/arch/evbppc/conf/Makefile.walnut.inc	2016-07-19 02:06:54.979931402 +0900
@@ -10,5 +10,5 @@

 SYSTEM_LD_TAIL_EXTRA_EXTRA+=; \
 	echo ${MKIMG} $@ $@.img ; \
-	OBJDUMP=${OBJDUMP}; OBJCOPY=${OBJCOPY}; STAT=${TOOL_STAT]; \
+	OBJDUMP=${OBJDUMP}; OBJCOPY=${OBJCOPY}; STAT=${TOOL_STAT}; \
 		export OBJDUMP OBJCOPY STAT; ${MKIMG} $@ $@.img
====================

>Release-Note:

>Audit-Trail:
From: "Maya Rashish" <maya@netbsd.org>
To: gnats-bugs@gnats.NetBSD.org
Cc: 
Subject: PR/51369 CVS commit: src/sys/arch/evbppc/conf
Date: Thu, 28 Jul 2016 22:46:48 +0000

 Module Name:	src
 Committed By:	maya
 Date:		Thu Jul 28 22:46:48 UTC 2016

 Modified Files:
 	src/sys/arch/evbppc/conf: Makefile.ev64260.inc Makefile.obs405.inc
 	    Makefile.walnut.inc

 Log Message:
 Fix typo in Makefile which resulted in kernel image not being generated

 From Rin Okuyama in PR/51369


 To generate a diff of this commit:
 cvs rdiff -u -r1.7 -r1.8 src/sys/arch/evbppc/conf/Makefile.ev64260.inc
 cvs rdiff -u -r1.12 -r1.13 src/sys/arch/evbppc/conf/Makefile.obs405.inc
 cvs rdiff -u -r1.8 -r1.9 src/sys/arch/evbppc/conf/Makefile.walnut.inc

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.

State-Changed-From-To: open->pending-pullups
State-Changed-By: maya@NetBSD.org
State-Changed-When: Fri, 29 Jul 2016 07:02:30 +0000
State-Changed-Why:


From: "Manuel Bouyer" <bouyer@netbsd.org>
To: gnats-bugs@gnats.NetBSD.org
Cc: 
Subject: PR/51369 CVS commit: [netbsd-6] src/sys/arch/evbppc/conf
Date: Sat, 27 Aug 2016 14:44:11 +0000

 Module Name:	src
 Committed By:	bouyer
 Date:		Sat Aug 27 14:44:11 UTC 2016

 Modified Files:
 	src/sys/arch/evbppc/conf [netbsd-6]: Makefile.ev64260.inc
 	    Makefile.obs405.inc Makefile.walnut.inc

 Log Message:
 Pull up following revision(s) (requested by maya in ticket #1396):
 	sys/arch/evbppc/conf/Makefile.walnut.inc: revision 1.9
 	sys/arch/evbppc/conf/Makefile.obs405.inc: revision 1.13
 	sys/arch/evbppc/conf/Makefile.ev64260.inc: revision 1.8
 Fix typo in Makefile which resulted in kernel image not being generated
 From Rin Okuyama in PR/51369


 To generate a diff of this commit:
 cvs rdiff -u -r1.5.14.1 -r1.5.14.2 \
     src/sys/arch/evbppc/conf/Makefile.ev64260.inc
 cvs rdiff -u -r1.6.14.1 -r1.6.14.2 \
     src/sys/arch/evbppc/conf/Makefile.obs405.inc
 cvs rdiff -u -r1.6.2.1 -r1.6.2.2 src/sys/arch/evbppc/conf/Makefile.walnut.inc

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.

From: "Manuel Bouyer" <bouyer@netbsd.org>
To: gnats-bugs@gnats.NetBSD.org
Cc: 
Subject: PR/51369 CVS commit: [netbsd-7-0] src/sys/arch/evbppc/conf
Date: Sat, 27 Aug 2016 15:18:48 +0000

 Module Name:	src
 Committed By:	bouyer
 Date:		Sat Aug 27 15:18:48 UTC 2016

 Modified Files:
 	src/sys/arch/evbppc/conf [netbsd-7-0]: Makefile.ev64260.inc
 	    Makefile.obs405.inc Makefile.walnut.inc

 Log Message:
 Pull up following revision(s) (requested by maya in ticket #1211):
 	sys/arch/evbppc/conf/Makefile.walnut.inc: revision 1.9
 	sys/arch/evbppc/conf/Makefile.obs405.inc: revision 1.13
 	sys/arch/evbppc/conf/Makefile.ev64260.inc: revision 1.8
 Fix typo in Makefile which resulted in kernel image not being generated
 From Rin Okuyama in PR/51369


 To generate a diff of this commit:
 cvs rdiff -u -r1.7 -r1.7.8.1 src/sys/arch/evbppc/conf/Makefile.ev64260.inc
 cvs rdiff -u -r1.12 -r1.12.6.1 src/sys/arch/evbppc/conf/Makefile.obs405.inc
 cvs rdiff -u -r1.8 -r1.8.8.1 src/sys/arch/evbppc/conf/Makefile.walnut.inc

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.

From: "Manuel Bouyer" <bouyer@netbsd.org>
To: gnats-bugs@gnats.NetBSD.org
Cc: 
Subject: PR/51369 CVS commit: [netbsd-7] src/sys/arch/evbppc/conf
Date: Sat, 27 Aug 2016 15:19:09 +0000

 Module Name:	src
 Committed By:	bouyer
 Date:		Sat Aug 27 15:19:09 UTC 2016

 Modified Files:
 	src/sys/arch/evbppc/conf [netbsd-7]: Makefile.ev64260.inc
 	    Makefile.obs405.inc Makefile.walnut.inc

 Log Message:
 Pull up following revision(s) (requested by maya in ticket #1211):
 	sys/arch/evbppc/conf/Makefile.walnut.inc: revision 1.9
 	sys/arch/evbppc/conf/Makefile.obs405.inc: revision 1.13
 	sys/arch/evbppc/conf/Makefile.ev64260.inc: revision 1.8
 Fix typo in Makefile which resulted in kernel image not being generated
 From Rin Okuyama in PR/51369


 To generate a diff of this commit:
 cvs rdiff -u -r1.7 -r1.7.4.1 src/sys/arch/evbppc/conf/Makefile.ev64260.inc
 cvs rdiff -u -r1.12 -r1.12.2.1 src/sys/arch/evbppc/conf/Makefile.obs405.inc
 cvs rdiff -u -r1.8 -r1.8.4.1 src/sys/arch/evbppc/conf/Makefile.walnut.inc

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.

State-Changed-From-To: pending-pullups->closed
State-Changed-By: maya@NetBSD.org
State-Changed-When: Sat, 27 Aug 2016 22:19:12 +0000
State-Changed-Why:
pulled up
thanks for the patch!


>Unformatted:

NetBSD Home
NetBSD PR Database Search

(Contact us) $NetBSD: query-full-pr,v 1.39 2013/11/01 18:47:49 spz Exp $
$NetBSD: gnats_config.sh,v 1.8 2006/05/07 09:23:38 tsutsui Exp $
Copyright © 1994-2014 The NetBSD Foundation, Inc. ALL RIGHTS RESERVED.