From owner-svn-src-stable@FreeBSD.ORG Thu Mar 4 20:03:26 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF2481065672; Thu, 4 Mar 2010 20:03:26 +0000 (UTC) (envelope-from raj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 823118FC17; Thu, 4 Mar 2010 20:03:26 +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 o24K3QMo074412; Thu, 4 Mar 2010 20:03:26 GMT (envelope-from raj@svn.freebsd.org) Received: (from raj@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o24K3QEv074409; Thu, 4 Mar 2010 20:03:26 GMT (envelope-from raj@svn.freebsd.org) Message-Id: <201003042003.o24K3QEv074409@svn.freebsd.org> From: Rafal Jaworowski Date: Thu, 4 Mar 2010 20:03:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r204727 - stable/8/sys/boot/powerpc/uboot X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Mar 2010 20:03:26 -0000 Author: raj Date: Thu Mar 4 20:03:26 2010 New Revision: 204727 URL: http://svn.freebsd.org/changeset/base/204727 Log: MFC r204315 Enable U-Boot storage for PowerPC. While there fix loader(8) help file name. Modified: stable/8/sys/boot/powerpc/uboot/Makefile stable/8/sys/boot/powerpc/uboot/conf.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) stable/8/sys/dev/xen/xenpci/ (props changed) stable/8/sys/netinet/ (props changed) Modified: stable/8/sys/boot/powerpc/uboot/Makefile ============================================================================== --- stable/8/sys/boot/powerpc/uboot/Makefile Thu Mar 4 19:56:08 2010 (r204726) +++ stable/8/sys/boot/powerpc/uboot/Makefile Thu Mar 4 20:03:26 2010 (r204727) @@ -9,8 +9,8 @@ NO_MAN= # Architecture-specific loader code SRCS= start.S conf.c vers.c -LOADER_DISK_SUPPORT?= no -LOADER_UFS_SUPPORT?= no +LOADER_DISK_SUPPORT?= yes +LOADER_UFS_SUPPORT?= yes LOADER_CD9660_SUPPORT?= no LOADER_EXT2FS_SUPPORT?= no LOADER_NET_SUPPORT?= yes @@ -85,11 +85,11 @@ LDADD= ${LIBFICL} ${LIBUBOOT} -lstand vers.c: ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version sh ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version ${NEWVERSWHAT} -${PROG}.help: help.common help.uboot +loader.help: help.common help.uboot cat ${.ALLSRC} | \ awk -f ${.CURDIR}/../../common/merge_help.awk > ${.TARGET} .PATH: ${.CURDIR}/../../forth -FILES= ${PROG}.help +FILES= loader.help .include Modified: stable/8/sys/boot/powerpc/uboot/conf.c ============================================================================== --- stable/8/sys/boot/powerpc/uboot/conf.c Thu Mar 4 19:56:08 2010 (r204726) +++ stable/8/sys/boot/powerpc/uboot/conf.c Thu Mar 4 20:03:26 2010 (r204727) @@ -47,7 +47,7 @@ __FBSDID("$FreeBSD$"); /* Exported for libstand */ struct devsw *devsw[] = { #if defined(LOADER_DISK_SUPPORT) || defined(LOADER_CD9660_SUPPORT) - &uboot_disk, + &uboot_storage, #endif #if defined(LOADER_NET_SUPPORT) &netdev,