Re: [OFF-TOPIC] D-Link DE-650 - PCMCIA

1999-06-22 Thread Wayne Topa

Subject: Re: [OFF-TOPIC] D-Link DE-650 - PCMCIA
Date: Mon, Jun 21, 1999 at 11:49:27PM +0800

In reply to:Paul Harris

Quoting Paul Harris([EMAIL PROTECTED]):
   does anyone know if the kernel supports this card? i only saw options for
   the de-600 to de-620. 
  
  I use one. It says NE2000 compatible when you plug it in.
  I guess people get bored with adding new model numbers
  when they're basically similar underneath.
  
  What's far more important is the controller chipset in the
  laptop. For example I can now use the ti1220 in slink
  whereas I had to compile the sources from csb.stanford.edu
  with hamm. However, I can't install from scratch even in
  slink because the installation program only offers the
  choice of i82365 and tcic. This made installation quite tough
  as the slink installation kernel also has no ppa support.
 
 i'm trying to compile a 2.2.10 kernel for it, but I can't find the option
 for Pcmcia NE2000 compatible support for the apne.o module. Its in the
 Configure.help file... or is there another way of doing things for pcmcia?
 (i've only worked with desktops up until now). when does the controller
 chipset come into things? how does that work?
 
 thanks,
 Paul

Paul
   I foune the following in /usr/src/linux/net/netsyms.c

#if defined(CONFIG_ULTRA)   ||  defined(CONFIG_WD80x3) || \
defined(CONFIG_EL2) ||  defined(CONFIG_NE2000) || \
defined(CONFIG_E2100)   ||  defined(CONFIG_HPLAN_PLUS) || \
defined(CONFIG_HPLAN)   ||  defined(CONFIG_AC3200) || \
defined(CONFIG_ES3210)  ||  defined(CONFIG_ULTRA32) || \
defined(CONFIG_LNE390)  ||  defined(CONFIG_NE3210) || \
defined(CONFIG_NE2K_PCI) || defined(CONFIG_APNE) || \
defined(CONFIG_DAYNAPORT)
/* If 8390 NIC support is built in, we will need these. */
EXPORT_SYMBOL(ei_open);
EXPORT_SYMBOL(ei_close);
EXPORT_SYMBOL(ei_interrupt);
EXPORT_SYMBOL(ethdev_init);
EXPORT_SYMBOL(NS8390_init);
#endif

If it was me I would add CONFIG_APNE to the .config file and try
recompiling.  Nothing ventured, nothing gained.  It seem that someone
may have missed it.

HTH, YMMV, HAND


-- 
C, n.:
  A programming language that is sort of like Pascal except more like assembly 
except that it isn't very much like either one, or anything else.  It is either 
the best language available to the art today, or it isn't.
-- Ray Simard
___
Wayne T. Topa [EMAIL PROTECTED]


Re: [OFF-TOPIC] D-Link DE-650 - PCMCIA

1999-06-22 Thread David Wright
Quoting Paul Harris ([EMAIL PROTECTED]):
   does anyone know if the kernel supports this card? i only saw options for
   the de-600 to de-620. 
  
  I use one. It says NE2000 compatible when you plug it in.
  I guess people get bored with adding new model numbers
  when they're basically similar underneath.
  
  What's far more important is the controller chipset in the
  laptop. For example I can now use the ti1220 in slink
  whereas I had to compile the sources from csb.stanford.edu
  with hamm. However, I can't install from scratch even in
  slink because the installation program only offers the
  choice of i82365 and tcic. This made installation quite tough
  as the slink installation kernel also has no ppa support.
 
 i'm trying to compile a 2.2.10 kernel for it, but I can't find the option
 for Pcmcia NE2000 compatible support for the apne.o module. Its in the
 Configure.help file... or is there another way of doing things for pcmcia?
 (i've only worked with desktops up until now). when does the controller
 chipset come into things? how does that work?

Short answer: do nothing.

I don't know what the apne.o module is. But it sounds as if you
may be looking for a problem that isn't there.

If you're compiling a kernel, you've got kernel-package, kernel-source
and pcmcia-source installed. Once you've configured the kernel in the
usual way (I use make menuconfig), you do

make-kpkg clean
make-kpkg --revision=foobar.1.0 kernel_image
make-kpkg --revision=foobar.1.0 modules_image

which makes two packages which you then install.
Note that as far as pcmcia is concerned, there's nothing to do.
For example, I configure
Ethernet (10 or 100Mbit) [*] (built-in)
3COM cards N (don't build)
because 3COM comes up automatically. If you use pcmcia IDE stuff,
then there's an option for that. But I never mention what sort of
card manager or card I have - they're all in the source and,
AIUI, you make a bundle of modules because you don't know a priori
what make of card somebody else might want to push into the slot.

Cheers,

-- 
Email:  [EMAIL PROTECTED]   Tel: +44 1908 653 739  Fax: +44 1908 655 151
Snail:  David Wright, Earth Science Dept., Milton Keynes, England, MK7 6AA
Disclaimer:   These addresses are only for reaching me, and do not signify
official stationery. Views expressed here are either my own or plagiarised.


Re: [OFF-TOPIC] D-Link DE-650 - PCMCIA

1999-06-22 Thread Paul Harris
 Short answer: do nothing.
 
 I don't know what the apne.o module is. But it sounds as if you
 may be looking for a problem that isn't there.
 
 If you're compiling a kernel, you've got kernel-package, kernel-source
 and pcmcia-source installed. Once you've configured the kernel in the
 usual way (I use make menuconfig), you do
 
 make-kpkg clean
 make-kpkg --revision=foobar.1.0 kernel_image
 make-kpkg --revision=foobar.1.0 modules_image
 
 which makes two packages which you then install.
 Note that as far as pcmcia is concerned, there's nothing to do.
 For example, I configure
 Ethernet (10 or 100Mbit) [*] (built-in)
 3COM cards N (don't build)
 because 3COM comes up automatically. If you use pcmcia IDE stuff,
 then there's an option for that. But I never mention what sort of
 card manager or card I have - they're all in the source and,
 AIUI, you make a bundle of modules because you don't know a priori
 what make of card somebody else might want to push into the slot.
 

ok, i just found the FM to read (sorry everyone), but I am still curious
as to what advantages the packages kernel source has over the tarball.
I've been using the tarball for ages now (originally because the debian
package was slow to reach my mirror) and haven't had any problems or seen
any addition advantage that might be gained from using the package.

Paul


Re: [OFF-TOPIC] D-Link DE-650 - PCMCIA

1999-06-21 Thread David Wright
Quoting Paul Harris ([EMAIL PROTECTED]):
 
 does anyone know if the kernel supports this card? i only saw options for
 the de-600 to de-620. 

I use one. It says NE2000 compatible when you plug it in.
I guess people get bored with adding new model numbers
when they're basically similar underneath.

What's far more important is the controller chipset in the
laptop. For example I can now use the ti1220 in slink
whereas I had to compile the sources from csb.stanford.edu
with hamm. However, I can't install from scratch even in
slink because the installation program only offers the
choice of i82365 and tcic. This made installation quite tough
as the slink installation kernel also has no ppa support.

But then again, Windoze NT4 SP3 won't recognise the ti1220
even using the card manager disks specially supplied by
Gatewav.

Cheers,

-- 
Email:  [EMAIL PROTECTED]   Tel: +44 1908 653 739  Fax: +44 1908 655 151
Snail:  David Wright, Earth Science Dept., Milton Keynes, England, MK7 6AA
Disclaimer:   These addresses are only for reaching me, and do not signify
official stationery. Views expressed here are either my own or plagiarised.


Re: [OFF-TOPIC] D-Link DE-650 - PCMCIA

1999-06-21 Thread Paul Harris
  does anyone know if the kernel supports this card? i only saw options for
  the de-600 to de-620. 
 
 I use one. It says NE2000 compatible when you plug it in.
 I guess people get bored with adding new model numbers
 when they're basically similar underneath.
 
 What's far more important is the controller chipset in the
 laptop. For example I can now use the ti1220 in slink
 whereas I had to compile the sources from csb.stanford.edu
 with hamm. However, I can't install from scratch even in
 slink because the installation program only offers the
 choice of i82365 and tcic. This made installation quite tough
 as the slink installation kernel also has no ppa support.

i'm trying to compile a 2.2.10 kernel for it, but I can't find the option
for Pcmcia NE2000 compatible support for the apne.o module. Its in the
Configure.help file... or is there another way of doing things for pcmcia?
(i've only worked with desktops up until now). when does the controller
chipset come into things? how does that work?

thanks,
Paul


[OFF-TOPIC] D-Link DE-650 - PCMCIA

1999-06-20 Thread Paul Harris
hi,

does anyone know if the kernel supports this card? i only saw options for
the de-600 to de-620. 

thanks,
Paul