From owner-svn-src-all@FreeBSD.ORG Fri Feb 11 13:14:17 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0683106566B; Fri, 11 Feb 2011 13:14:17 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8FBFD8FC19; Fri, 11 Feb 2011 13:14:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p1BDEHqj060895; Fri, 11 Feb 2011 13:14:17 GMT (envelope-from nyan@svn.freebsd.org) Received: (from nyan@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p1BDEH96060892; Fri, 11 Feb 2011 13:14:17 GMT (envelope-from nyan@svn.freebsd.org) Message-Id: <201102111314.p1BDEH96060892@svn.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 11 Feb 2011 13:14:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r218557 - in head/sys/boot/pc98: . pc98boot X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Feb 2011 13:14:17 -0000 Author: nyan Date: Fri Feb 11 13:14:17 2011 New Revision: 218557 URL: http://svn.freebsd.org/changeset/base/218557 Log: Add the pc98boot image which concatenates boot0 and boot0.5. It's required by the gpart to write bootcode. Added: head/sys/boot/pc98/pc98boot/ head/sys/boot/pc98/pc98boot/Makefile (contents, props changed) Modified: head/sys/boot/pc98/Makefile Modified: head/sys/boot/pc98/Makefile ============================================================================== --- head/sys/boot/pc98/Makefile Fri Feb 11 13:05:15 2011 (r218556) +++ head/sys/boot/pc98/Makefile Fri Feb 11 13:14:17 2011 (r218557) @@ -1,5 +1,5 @@ # $FreeBSD$ -SUBDIR= btx boot0 boot0.5 boot2 cdboot kgzldr libpc98 loader +SUBDIR= boot0 boot0.5 pc98boot btx boot2 cdboot kgzldr libpc98 loader .include Added: head/sys/boot/pc98/pc98boot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/boot/pc98/pc98boot/Makefile Fri Feb 11 13:14:17 2011 (r218557) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +FILES= ${BOOT} +SRCS= ${BOOT0} ${BOOT05} +CLEANFILES= ${BOOT} ${BOOT}.part + +BOOT= pc98boot +BOOT0= ${.CURDIR}/../boot0/boot0 +BOOT05= ${.CURDIR}/../boot0.5/boot0.5 + +${BOOT}: ${SRCS} ${BOOT}.part + cat ${BOOT0} ${BOOT}.part ${BOOT05} > ${.TARGET} + +${BOOT}.part: + dd if=/dev/zero of=${.TARGET} bs=512 count=1 + +.include