From owner-cvs-src-old@FreeBSD.ORG Tue Nov 10 10:35:03 2009 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 C1B321065751 for ; Tue, 10 Nov 2009 10:35:03 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AE7FF8FC14 for ; Tue, 10 Nov 2009 10:35:03 +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 nAAAZ3lC054375 for ; Tue, 10 Nov 2009 10:35:03 GMT (envelope-from des@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nAAAZ3xR054374 for cvs-src-old@freebsd.org; Tue, 10 Nov 2009 10:35:03 GMT (envelope-from des@repoman.freebsd.org) Message-Id: <200911101035.nAAAZ3xR054374@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to des@repoman.freebsd.org using -f From: Dag-Erling Smorgrav Date: Tue, 10 Nov 2009 10:34:44 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall Makefile acpi.c acpidump.h biosmptable.c dist.c install.c menus.c sysinstall.8 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, 10 Nov 2009 10:35:03 -0000 des 2009-11-10 10:34:44 UTC FreeBSD src repository Modified files: usr.sbin/sysinstall Makefile dist.c install.c menus.c sysinstall.8 Removed files: usr.sbin/sysinstall acpi.c acpidump.h biosmptable.c Log: SVN rev 199133 on 2009-11-10 10:34:44Z by des Remove a bunch of code used to detect SMP on ((i386 && !pc98) || amd64) and offer to install an SMP kernel. The way this worked was: on supported platforms, code to read ACPI tables and BIOS MP tables was compiled into sysinstall, and if an SMP kernel config was present in the source tree when sysinstall was built, code that called it was also compiled. Since we haven't had SMP kernel configs in years, the latter was never compiled and the former never ran. This only removes dead and unreachable code; it does *not* remove the NCpus variable, nor the code that sets it to 1, nor the code that asks the user to select a kernel from a list. Discussed with: re@, randi@ and others Revision Changes Path 1.146 +0 -31 src/usr.sbin/sysinstall/Makefile 1.2 +0 -356 src/usr.sbin/sysinstall/acpi.c (dead) 1.2 +0 -177 src/usr.sbin/sysinstall/acpidump.h (dead) 1.3 +0 -275 src/usr.sbin/sysinstall/biosmptable.c (dead) 1.260 +0 -8 src/usr.sbin/sysinstall/dist.c 1.381 +1 -14 src/usr.sbin/sysinstall/install.c 1.445 +0 -4 src/usr.sbin/sysinstall/menus.c 1.83 +0 -2 src/usr.sbin/sysinstall/sysinstall.8