Subject: Re: CVS commit: src/sys/arch/amd64/conf
To: David Laight <david@l8s.co.uk>
From: Jason Thorpe <thorpej@shagadelic.org>
List: source-changes
Date: 06/26/2005 09:44:35
On Jun 26, 2005, at 9:38 AM, Jason Thorpe wrote:

> Ok, let's start by eliminating devices that won't ever actually  
> appear in an amd64 system, then:

You can also probably get some savings using:

     options         MALLOC_NOINLINE         # Not inlining MALLOC  
saves memory
     options         VNODE_OP_NOINLINE       # Not inlining vnode op  
calls saves mem
     options         NFS_V2_ONLY             # Exclude NFS3 and NQNFS  
code to save space

(Use of NFS in the installer is primarily for reading install sets  
off of a server, so NFSv2 should be just fine.)

-- thorpej