From owner-svn-src-stable@FreeBSD.ORG Fri Aug 9 14:17:49 2013 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8467CDB; Fri, 9 Aug 2013 14:17:49 +0000 (UTC) (envelope-from dteske@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 626792AC4; Fri, 9 Aug 2013 14:17:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r79EHnIs066969; Fri, 9 Aug 2013 14:17:49 GMT (envelope-from dteske@svn.freebsd.org) Received: (from dteske@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r79EHm9K066960; Fri, 9 Aug 2013 14:17:48 GMT (envelope-from dteske@svn.freebsd.org) Message-Id: <201308091417.r79EHm9K066960@svn.freebsd.org> From: Devin Teske Date: Fri, 9 Aug 2013 14:17:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r254146 - in stable/9/sys/boot: common i386/loader ia64/common pc98/loader powerpc/ofw powerpc/ps3 sparc64/loader X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 09 Aug 2013 14:17:49 -0000 Author: dteske Date: Fri Aug 9 14:17:47 2013 New Revision: 254146 URL: http://svnweb.freebsd.org/changeset/base/254146 Log: MFC r242688: Hook in new files menusets.4th and manual. Modified: stable/9/sys/boot/common/Makefile.inc stable/9/sys/boot/i386/loader/Makefile stable/9/sys/boot/ia64/common/Makefile stable/9/sys/boot/pc98/loader/Makefile stable/9/sys/boot/powerpc/ofw/Makefile stable/9/sys/boot/powerpc/ps3/Makefile stable/9/sys/boot/sparc64/loader/Makefile Directory Properties: stable/9/sys/ (props changed) stable/9/sys/boot/ (props changed) stable/9/sys/boot/powerpc/ofw/ (props changed) Modified: stable/9/sys/boot/common/Makefile.inc ============================================================================== --- stable/9/sys/boot/common/Makefile.inc Fri Aug 9 12:31:02 2013 (r254145) +++ stable/9/sys/boot/common/Makefile.inc Fri Aug 9 14:17:47 2013 (r254146) @@ -64,6 +64,7 @@ MAN+= ../forth/delay.4th.8 MAN+= ../forth/loader.conf.5 MAN+= ../forth/loader.4th.8 MAN+= ../forth/menu.4th.8 +MAN+= ../forth/menusets.4th.8 MAN+= ../forth/version.4th.8 .endif Modified: stable/9/sys/boot/i386/loader/Makefile ============================================================================== --- stable/9/sys/boot/i386/loader/Makefile Fri Aug 9 12:31:02 2013 (r254145) +++ stable/9/sys/boot/i386/loader/Makefile Fri Aug 9 14:17:47 2013 (r254146) @@ -100,7 +100,7 @@ FILESMODE_${LOADER}= ${BINMODE} -b FILES+= loader.help loader.4th support.4th loader.conf FILES+= screen.4th frames.4th beastie.4th FILES+= brand.4th check-password.4th color.4th delay.4th -FILES+= menu.4th menu-commands.4th shortcuts.4th version.4th +FILES+= menu.4th menu-commands.4th menusets.4th shortcuts.4th version.4th FILESDIR_loader.conf= /boot/defaults .if !exists(${DESTDIR}/boot/loader.rc) Modified: stable/9/sys/boot/ia64/common/Makefile ============================================================================== --- stable/9/sys/boot/ia64/common/Makefile Fri Aug 9 12:31:02 2013 (r254145) +++ stable/9/sys/boot/ia64/common/Makefile Fri Aug 9 14:17:47 2013 (r254146) @@ -35,7 +35,7 @@ loader.help: help.common FILES+= loader.4th support.4th loader.conf FILES+= screen.4th frames.4th FILES+= beastie.4th brand.4th check-password.4th color.4th delay.4th -FILES+= menu.4th menu-commands.4th shortcuts.4th version.4th +FILES+= menu.4th menu-commands.4th menusets.4th shortcuts.4th version.4th .if !exists(${DESTDIR}/boot/loader.rc) FILES+= loader.rc .endif Modified: stable/9/sys/boot/pc98/loader/Makefile ============================================================================== --- stable/9/sys/boot/pc98/loader/Makefile Fri Aug 9 12:31:02 2013 (r254145) +++ stable/9/sys/boot/pc98/loader/Makefile Fri Aug 9 14:17:47 2013 (r254146) @@ -88,7 +88,7 @@ FILESMODE_${LOADER}= ${BINMODE} -b FILES+= loader.help loader.4th support.4th loader.conf FILES+= screen.4th frames.4th beastie.4th FILES+= brand.4th check-password.4th color.4th delay.4th -FILES+= menu.4th menu-commands.4th shortcuts.4th version.4th +FILES+= menu.4th menu-commands.4th menusets.4th shortcuts.4th version.4th FILESDIR_loader.conf= /boot/defaults .if !exists(${DESTDIR}/boot/loader.rc) Modified: stable/9/sys/boot/powerpc/ofw/Makefile ============================================================================== --- stable/9/sys/boot/powerpc/ofw/Makefile Fri Aug 9 12:31:02 2013 (r254145) +++ stable/9/sys/boot/powerpc/ofw/Makefile Fri Aug 9 14:17:47 2013 (r254146) @@ -105,7 +105,7 @@ loader.help: help.common help.ofw FILES= loader.help loader.4th support.4th loader.conf FILES+= screen.4th frames.4th FILES+= beastie.4th brand.4th check-password.4th color.4th delay.4th -FILES+= menu.4th menu-commands.4th shortcuts.4th version.4th +FILES+= menu.4th menu-commands.4th menusets.4th shortcuts.4th version.4th FILESDIR_loader.conf= /boot/defaults .if !exists(${DESTDIR}/boot/loader.rc) Modified: stable/9/sys/boot/powerpc/ps3/Makefile ============================================================================== --- stable/9/sys/boot/powerpc/ps3/Makefile Fri Aug 9 12:31:02 2013 (r254145) +++ stable/9/sys/boot/powerpc/ps3/Makefile Fri Aug 9 14:17:47 2013 (r254146) @@ -116,7 +116,7 @@ loader.help: help.common help.ps3 FILES= loader.help loader.4th support.4th loader.conf FILES+= screen.4th frames.4th FILES+= beastie.4th brand.4th check-password.4th color.4th delay.4th -FILES+= menu.4th menu-commands.4th shortcuts.4th version.4th +FILES+= menu.4th menu-commands.4th menusets.4th shortcuts.4th version.4th FILESDIR_loader.conf= /boot/defaults .if !exists(${DESTDIR}/boot/loader.rc) Modified: stable/9/sys/boot/sparc64/loader/Makefile ============================================================================== --- stable/9/sys/boot/sparc64/loader/Makefile Fri Aug 9 12:31:02 2013 (r254145) +++ stable/9/sys/boot/sparc64/loader/Makefile Fri Aug 9 14:17:47 2013 (r254146) @@ -99,7 +99,7 @@ loader.help: help.common help.sparc64 FILES= loader.help loader.4th support.4th loader.conf FILES+= screen.4th frames.4th FILES+= beastie.4th brand.4th check-password.4th color.4th delay.4th -FILES+= menu.4th menu-commands.4th shortcuts.4th version.4th +FILES+= menu.4th menu-commands.4th menusets.4th shortcuts.4th version.4th FILESDIR_loader.conf= /boot/defaults .if !exists(${DESTDIR}/boot/loader.rc)