<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: build a new kernel with a new network driver in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536116#M592</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I think you need to use the insmod command.&lt;BR /&gt;&lt;BR /&gt;But what is your card, if it's an EtherPro100&lt;BR /&gt;or compatible you can use eepro100 module&lt;BR /&gt;included in the kernel's sources.&lt;BR /&gt;&lt;BR /&gt;I think that make menuconfig is only use to &lt;BR /&gt;compile a new kernel and not to add a module &lt;BR /&gt;without sources.&lt;BR /&gt;&lt;BR /&gt;Herve&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 05 Jun 2001 09:45:13 GMT</pubDate>
    <dc:creator>Herve BRANGIER</dc:creator>
    <dc:date>2001-06-05T09:45:13Z</dc:date>
    <item>
      <title>build a new kernel with a new network driver</title>
      <link>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536114#M590</link>
      <description>i have a network driver e100.o and would like to build a new kernel with this driver included . i don't want it to be installed as a module but want it as part of my kernel. i'm using "make menuconfig" to make the changes in the kernel. any suggestions...&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;- fnhalili</description>
      <pubDate>Mon, 04 Jun 2001 18:07:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536114#M590</guid>
      <dc:creator>f. halili</dc:creator>
      <dc:date>2001-06-04T18:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: build a new kernel with a new network driver</title>
      <link>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536115#M591</link>
      <description>Try &lt;A href="http://www.europe.redhat.com/documentation/HOWTO/Net-HOWTO/index.php3" target="_blank"&gt;http://www.europe.redhat.com/documentation/HOWTO/Net-HOWTO/index.php3&lt;/A&gt;</description>
      <pubDate>Tue, 05 Jun 2001 08:39:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536115#M591</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-06-05T08:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: build a new kernel with a new network driver</title>
      <link>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536116#M592</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I think you need to use the insmod command.&lt;BR /&gt;&lt;BR /&gt;But what is your card, if it's an EtherPro100&lt;BR /&gt;or compatible you can use eepro100 module&lt;BR /&gt;included in the kernel's sources.&lt;BR /&gt;&lt;BR /&gt;I think that make menuconfig is only use to &lt;BR /&gt;compile a new kernel and not to add a module &lt;BR /&gt;without sources.&lt;BR /&gt;&lt;BR /&gt;Herve&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 05 Jun 2001 09:45:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536116#M592</guid>
      <dc:creator>Herve BRANGIER</dc:creator>
      <dc:date>2001-06-05T09:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: build a new kernel with a new network driver</title>
      <link>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536117#M593</link>
      <description>After you have finished the configuration using make menuconfig, you need to compile the kernel and modules and install them. To do this use makedep; make clean; make zImage ; make modules ; make modules_install&lt;BR /&gt;when this finishes, you need to use lilo or what ever boot loader you use to allow the new kernel to boot.</description>
      <pubDate>Wed, 06 Jun 2001 18:26:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536117#M593</guid>
      <dc:creator>Nick Snellock</dc:creator>
      <dc:date>2001-06-06T18:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: build a new kernel with a new network driver</title>
      <link>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536118#M594</link>
      <description>Hello Frederick,&lt;BR /&gt;&lt;BR /&gt;e100.o is a new driver for the ether express pro 100 network adapters. The former driver was named eepro100.o&lt;BR /&gt;&lt;BR /&gt;If you speak about ".o" file, it means that the file is already linked. Therefore, to insert it in a kernel without using modules may be difficult.&lt;BR /&gt;&lt;BR /&gt;Normally, if you had the source code of that driver, you should have put it in the kernel source tree (as a patch file) before launching make menuconfig.&lt;BR /&gt;&lt;BR /&gt;Without the source code, the only way to add a driver to the kernel is using modules. Moreover, this module must be compatible with the running kernel.&lt;BR /&gt;&lt;BR /&gt;To summarize : if you have the source code, please post exactly what you have and the URL where you got this source, and we can give you additional help.&lt;BR /&gt;&lt;BR /&gt;Otherwise, it seems difficult.&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;Kodjo&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Jul 2001 21:29:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536118#M594</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2001-07-05T21:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: build a new kernel with a new network driver</title>
      <link>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536119#M595</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;In "menuconfig" in linux go to the network devices section where the network devices are ( I can't remember right off the top of my head where this is at), find the entry for your network card and pressing spacebar it should allow you to either a) make the driver as a module or b) include the driver into the kernel itself.  There is a way to distinguish between the two and there is usually a key on the screen that can help you decypher this.&lt;BR /&gt;&lt;BR /&gt;late,&lt;BR /&gt;Terry</description>
      <pubDate>Sun, 05 Aug 2001 19:07:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/build-a-new-kernel-with-a-new-network-driver/m-p/2536119#M595</guid>
      <dc:creator>Terry Rodery</dc:creator>
      <dc:date>2001-08-05T19:07:08Z</dc:date>
    </item>
  </channel>
</rss>

