From owner-svn-src-all@FreeBSD.ORG Fri Dec 26 23:46:20 2008 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 15C97106564A; Fri, 26 Dec 2008 23:46:20 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id E77BD8FC14; Fri, 26 Dec 2008 23:46:19 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id C82FB1A3C3A; Fri, 26 Dec 2008 15:46:19 -0800 (PST) Date: Fri, 26 Dec 2008 15:46:19 -0800 From: Alfred Perlstein To: Ken Smith Message-ID: <20081226234619.GT18389@elvis.mu.org> References: <200812121158.mBCBwRPT096820@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200812121158.mBCBwRPT096820@svn.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r185982 - head/usr.sbin/sysinstall 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, 26 Dec 2008 23:46:20 -0000 Does this mean that the user has to find the "Linux" package in the "add packages" area now? If so, that seems a bit complicated to get started. There's a LOT of packages. Pardon if I'm missing something obvious here. -Alfred * Ken Smith [081212 03:58] wrote: > Author: kensmith > Date: Fri Dec 12 11:58:27 2008 > New Revision: 185982 > URL: http://svn.freebsd.org/changeset/base/185982 > > Log: > Remove the offer to install Linux compatibility on i386 in the mainline > portion of sysinstall. Leave it to be treated as a regular package > along with all the other packages... > > Modified: > head/usr.sbin/sysinstall/config.c > head/usr.sbin/sysinstall/install.c > head/usr.sbin/sysinstall/menus.c > head/usr.sbin/sysinstall/sysinstall.h > > Modified: head/usr.sbin/sysinstall/config.c > ============================================================================== > --- head/usr.sbin/sysinstall/config.c Fri Dec 12 11:43:48 2008 (r185981) > +++ head/usr.sbin/sysinstall/config.c Fri Dec 12 11:58:27 2008 (r185982) > @@ -531,23 +531,6 @@ configUsers(dialogMenuItem *self) > return DITEM_SUCCESS; > } > > -#ifdef WITH_LINUX > -int > -configLinux(dialogMenuItem *self) > -{ > - WINDOW *w = savescr(); > - int i; > - > - dialog_clear_norefresh(); > - variable_set2(VAR_LINUX_ENABLE, "YES", 1); > - Mkdir("/compat/linux"); > - msgNotify("Installing Linux compatibility library..."); > - i = package_add("linux_base-fc"); > - restorescr(w); > - return i; > -} > -#endif > - > int > configSecurelevel(dialogMenuItem *self) > { > > Modified: head/usr.sbin/sysinstall/install.c > ============================================================================== > --- head/usr.sbin/sysinstall/install.c Fri Dec 12 11:43:48 2008 (r185981) > +++ head/usr.sbin/sysinstall/install.c Fri Dec 12 11:58:27 2008 (r185982) > @@ -686,12 +686,6 @@ nodisks: > if (!msgYesNo("Would you like to set this machine's time zone now?")) > systemExecute("tzsetup"); > > -#ifdef WITH_LINUX > - dialog_clear_norefresh(); > - if (!msgYesNo("Would you like to enable Linux binary compatibility?")) > - (void)configLinux(self); > -#endif > - > #ifdef WITH_MICE > dialog_clear_norefresh(); > if (!msgNoYes("Does this system have a PS/2, serial, or bus mouse?")) > > Modified: head/usr.sbin/sysinstall/menus.c > ============================================================================== > --- head/usr.sbin/sysinstall/menus.c Fri Dec 12 11:43:48 2008 (r185981) > +++ head/usr.sbin/sysinstall/menus.c Fri Dec 12 11:58:27 2008 (r185982) > @@ -1247,10 +1247,6 @@ DMenu MenuStartup = { > dmenuVarCheck, dmenuToggleVariable, NULL, "accounting_enable=YES" }, > { " lpd", "This host has a printer and wants to run lpd.", > dmenuVarCheck, dmenuToggleVariable, NULL, "lpd_enable=YES" }, > -#ifdef WITH_LINUX > - { " Linux", "This host wants to be able to run Linux binaries.", > - dmenuVarCheck, configLinux, NULL, VAR_LINUX_ENABLE "=YES" }, > -#endif > #ifdef __i386__ > { " SCO", "This host wants to be able to run IBCS2 binaries.", > dmenuVarCheck, dmenuToggleVariable, NULL, "ibcs2_enable=YES" }, > > Modified: head/usr.sbin/sysinstall/sysinstall.h > ============================================================================== > --- head/usr.sbin/sysinstall/sysinstall.h Fri Dec 12 11:43:48 2008 (r185981) > +++ head/usr.sbin/sysinstall/sysinstall.h Fri Dec 12 11:58:27 2008 (r185982) > @@ -61,10 +61,6 @@ > #define WITH_SLICES > #endif > > -#if defined(__i386__) > -#define WITH_LINUX > -#endif > - > /* device limits */ > #define DEV_NAME_MAX 128 /* The maximum length of a device name */ > #define DEV_MAX 100 /* The maximum number of devices we'll deal with */ -- - Alfred Perlstein