From owner-cvs-src-old@FreeBSD.ORG Tue Jul 13 04:08:21 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6ED9B106567A for ; Tue, 13 Jul 2010 04:08:21 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5CB158FC18 for ; Tue, 13 Jul 2010 04:08:21 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o6D48LQb059219 for ; Tue, 13 Jul 2010 04:08:21 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o6D48LOo059218 for cvs-src-old@freebsd.org; Tue, 13 Jul 2010 04:08:21 GMT (envelope-from nwhitehorn@repoman.freebsd.org) Message-Id: <201007130408.o6D48LOo059218@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to nwhitehorn@repoman.freebsd.org using -f From: Nathan Whitehorn Date: Tue, 13 Jul 2010 04:08:08 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/config config.8 configvers.h main.c mkoptions.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jul 2010 04:08:21 -0000 nwhitehorn 2010-07-13 04:08:08 UTC FreeBSD src repository Modified files: usr.sbin/config config.8 configvers.h main.c mkoptions.c Log: SVN rev 209969 on 2010-07-13 04:08:08Z by nwhitehorn Enhance config to handle MACHINEs with multiple architectures: - Passing -m to config will now print the MACHINE and MACHINE_ARCH given in the passed kernel configuration file and then exit. - If an option is defined in options.MACHINE with the same name as the architecture of the kernel being configured, that option will be considered set. This allows conditional compilation based on CPU architecture. Config version is now 600010. Reviewed by: imp Revision Changes Path 1.48 +3 -0 src/usr.sbin/config/config.8 1.49 +1 -1 src/usr.sbin/config/configvers.h 1.85 +20 -9 src/usr.sbin/config/main.c 1.39 +14 -0 src/usr.sbin/config/mkoptions.c