From owner-freebsd-hackers@FreeBSD.ORG Wed Jul 21 03:02:53 2010 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45715106564A; Wed, 21 Jul 2010 03:02:53 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id EFD4A8FC12; Wed, 21 Jul 2010 03:02:52 +0000 (UTC) Received: by iwn35 with SMTP id 35so8051078iwn.13 for ; Tue, 20 Jul 2010 20:02:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=j88cdHhVg7Wak8uQp0q0VO06ZsKB+im4G5wx8+7zGnc=; b=G92u+pXqRFc/W9fn4wRxvdUBBuLEBMZg8T94hhggqqlRH4z/VFOddocIY/isWSIuJr U9NA79541IzczGJIkue5KdGJa11Ax2gQom245sAvF7z7jBmOtpKTcC7UUadvViySFS4+ aL7GNhITQe5RUmDquUYSJ+0xZHFmvF+q16MSM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=Nr90H/pp/KnN0RlQ4+/VonwvWfGmK/aaEj6MSUj6O8xo416C9uoqE1CopGJ74w7taF QKNQUahqerWvZ1CHRbBvy1OABe455W3GCxaB8sxIuR/39wi/al9PBHWEcvx2mtj6P0Dk H7z/G9j8Ko4bJ9qCFViMS8wiE5H3u9NqcS4io= MIME-Version: 1.0 Received: by 10.231.30.130 with SMTP id u2mr7399776ibc.111.1279681372281; Tue, 20 Jul 2010 20:02:52 -0700 (PDT) Received: by 10.231.180.135 with HTTP; Tue, 20 Jul 2010 20:02:52 -0700 (PDT) In-Reply-To: <201007201052.03140.jhb@freebsd.org> References: <201007201052.03140.jhb@freebsd.org> Date: Tue, 20 Jul 2010 21:02:52 -0600 Message-ID: From: Tim Judd To: John Baldwin Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-hackers@freebsd.org Subject: Re: kernel modules into static kernel X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2010 03:02:53 -0000 On 7/20/10, John Baldwin wrote: > On Monday, July 19, 2010 11:50:37 pm Tim Judd wrote: >> Hellos, >> >> >> Of interest, I can get GEOM_UZIP kernel module as part of the kernel, >> but the GEOM_UZIP kernel module has a dependency on ZLIB. If I build >> a kernel with GEOM_UZIP, will the relavant ZLIB pieces also be in the >> kernel? > > Yes. GEOM_UZIP sucks in net/zlib.c (look at sys/conf/files and search for > 'uzip' to see what GEOM_UZIP includes in the build). > > -- > John Baldwin > Extremely appreciated. Thanks John