2002-09-29 22:53:32

by Andries E. Brouwer

[permalink] [raw]
Subject: [PATCH] net/Config.in

I wanted to compile a kernel with Appletalk and couldn't find it.
Upon examination of the source it turns out that since 2.5.32
Appletalk is hiding behind "ANSI/IEEE 802.2 Data link layer".

This tiny patch will make life easier for others needing IPX
or Appletalk.

Andries

--- /linux/2.5/linux-2.5.39/linux/net/Config.in Sat Sep 21 11:39:53 2002
+++ /linux/2.5/linux-2.5.39a/linux/net/Config.in Mon Sep 30 00:52:19 2002
@@ -47,7 +47,7 @@
fi
tristate '802.1Q VLAN Support' CONFIG_VLAN_8021Q

-tristate 'ANSI/IEEE 802.2 Data link layer protocol' CONFIG_LLC
+tristate 'ANSI/IEEE 802.2 Data link layer protocol (IPX, Appletalk)' CONFIG_LLC
if [ "$CONFIG_LLC" != "n" ]; then
tristate ' LLC sockets interface' CONFIG_LLC_UI
fi


2002-09-29 22:57:25

by Arnaldo Carvalho de Melo

[permalink] [raw]
Subject: Re: [PATCH] net/Config.in

Em Mon, Sep 30, 2002 at 12:58:43AM +0200, [email protected] escreveu:
> I wanted to compile a kernel with Appletalk and couldn't find it.
> Upon examination of the source it turns out that since 2.5.32
> Appletalk is hiding behind "ANSI/IEEE 802.2 Data link layer".
>
> This tiny patch will make life easier for others needing IPX
> or Appletalk.

Thanks, accepted, I'm pushing to DaveM in some moments, I also plan to
make IPX not require LLC to be built, using only EthernetII and 802.3
raw frames.

- Arnaldo

2002-09-29 23:57:01

by Andries E. Brouwer

[permalink] [raw]
Subject: Re: [PATCH] net/Config.in

> Thanks, accepted, I'm pushing to DaveM in some moments ...

OK, that was the configuration part.
The kernel oopses at boot time in llc_sap_find().
I seem to recall that I saw some such oopses on lk
but didnt pay attention. Has this been fixed already?

Andries

2002-09-30 00:25:46

by Arnaldo Carvalho de Melo

[permalink] [raw]
Subject: Re: [PATCH] net/Config.in

Em Mon, Sep 30, 2002 at 02:01:44AM +0200, [email protected] escreveu:
> > Thanks, accepted, I'm pushing to DaveM in some moments ...
>
> OK, that was the configuration part.
> The kernel oopses at boot time in llc_sap_find().
> I seem to recall that I saw some such oopses on lk
> but didnt pay attention. Has this been fixed already?

Humm, 2.5.39? It is compiled statically, isn't it? I'm working exclusively
with modules up to now, I'll try to reproduce and fix it :-\

- Arnaldo