building KLDs in RELENG_4

Ask a Question related to FreeBSD, Design and Development.

  1. #1

    Default building KLDs in RELENG_4

    Is there a way to build kernel modules by themselves without having to
    build the entire kernel? I am adding umass support to a 4.x machine but
    I don't want to build the entire kernel. I already have scbus, but I need
    da and of course, umass.

    TIA,
    pete

    --
    Peter C. Lai
    University of Connecticut
    Dept. of Molecular and Cell Biology
    Yale University School of Medicine
    SenseLab | Research Assistant
    [url]http://cowbert.2y.net/[/url]

    Peter C. Lai Guest

  2. Similar Questions and Discussions

    1. Building PHP 4.3.3 with GD 2.0.11
      All libraries were installed (precompiled) This is FreeBSD 5.1 installed zlib, installed jpeg and png libraries (in default directories) GD...
    2. help building hash on-the-fly?
      Hello... This is probably a very simple question, but I don't have much experience using hashes... I have a simple program that lists all of the...
    3. PHP building with GD
      I am trying to build PHP with GD (want to have coppermine gallery on my page, and had problems with ImageMagick), GD is installed/configured fine...
    4. Building a new PC
      Hi all, can anyone offer any advice on components to build a new PC, specifically for graphics and web design using dual display. My budget is...
    5. Building Menues...
      Yes, a web user control is often a good choice for a menu that will be re-used on multiple pages. If you want it used across multiple projects then...
  3. #2

    Default Re: building KLDs in RELENG_4

    On Thu, 24 Feb 2005 09:56:22 -0500, Peter C. Lai <sirmoo@cowbert.2y.net> wrote:
    > Is there a way to build kernel modules by themselves without having to
    > build the entire kernel? I am adding umass support to a 4.x machine but
    > I don't want to build the entire kernel. I already have scbus, but I need
    > da and of course, umass.
    >
    Yes you can build modules seperately from a kernel build

    cd /usr/src/sys/modules/umass
    make obj
    make
    make install

    Scot
    Scot Hetzel Guest

  4. #3

    Default Re: building KLDs in RELENG_4

    On Thu, Feb 24, 2005 at 09:59:01AM -0600, Scot Hetzel wrote:
    > On Thu, 24 Feb 2005 09:56:22 -0500, Peter C. Lai <sirmoo@cowbert.2y.net> wrote:
    > > Is there a way to build kernel modules by themselves without having to
    > > build the entire kernel? I am adding umass support to a 4.x machine but
    > > I don't want to build the entire kernel. I already have scbus, but I need
    > > da and of course, umass.
    > >
    >
    > Yes you can build modules seperately from a kernel build
    >
    > cd /usr/src/sys/modules/umass
    > make obj
    > make
    > make install
    >
    > Scot
    ok. what about da? i don't have that in my kernel, even though i have scbus.
    I think i'm just going to recompile the entire kernel anyway; I was just
    trying to not have to back-cvs /usr/src to patch the current one I have
    installed. (the more basic problem is i really should be keeping multiple
    versions of /usr/src around for different versions on different machines,
    but that is a separate problem).

    --
    Peter C. Lai
    University of Connecticut
    Dept. of Molecular and Cell Biology
    Yale University School of Medicine
    SenseLab | Research Assistant
    [url]http://cowbert.2y.net/[/url]

    Peter C. Lai Guest

  5. #4

    Default Re: building KLDs in RELENG_4

    I believe you can cd /usr/src/sys/modules/umass, compile/install/load umass.ko.




    On Thu, 24 Feb 2005 09:56:22 -0500, Peter C. Lai <sirmoo@cowbert.2y.net> wrote:
    > Is there a way to build kernel modules by themselves without having to
    > build the entire kernel? I am adding umass support to a 4.x machine but
    > I don't want to build the entire kernel. I already have scbus, but I need
    > da and of course, umass.
    >
    > TIA,
    > pete
    >
    > --
    > Peter C. Lai
    > University of Connecticut
    > Dept. of Molecular and Cell Biology
    > Yale University School of Medicine
    > SenseLab | Research Assistant
    > [url]http://cowbert.2y.net/[/url]
    >
    > _______________________________________________
    > [email]freebsd-questions@freebsd.org[/email] mailing list
    > [url]http://lists.freebsd.org/mailman/listinfo/freebsd-questions[/url]
    > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
    >
    Corey Brune Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139