* [PATCH] 2.4.10p12 net/netsyms.c -- unresolved symbol tty_register_ldisc
@ 2001-09-19 13:14 Mohammad A. Haque
2001-09-19 14:21 ` Mark Orr
0 siblings, 1 reply; 6+ messages in thread
From: Mohammad A. Haque @ 2001-09-19 13:14 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1: Type: TEXT/PLAIN, Size: 520 bytes --]
One liner fix for unresolved symbol in PPP
--
=====================================================================
Mohammad A. Haque http://www.haque.net/
mhaque@haque.net
"Alcohol and calculus don't mix. Project Lead
Don't drink and derive." --Unknown http://wm.themes.org/
batmanppc@themes.org
=====================================================================
[-- Attachment #2: Type: TEXT/PLAIN, Size: 310 bytes --]
--- net/netsyms.c.orig Wed Sep 19 02:32:42 2001
+++ net/netsyms.c Wed Sep 19 09:10:31 2001
@@ -504,6 +504,7 @@
EXPORT_SYMBOL(dev_mc_add);
EXPORT_SYMBOL(dev_mc_delete);
EXPORT_SYMBOL(dev_mc_upload);
+EXPORT_SYMBOL(tty_register_ldisc);
EXPORT_SYMBOL(__kill_fasync);
EXPORT_SYMBOL(if_port_text);
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] 2.4.10p12 net/netsyms.c -- unresolved symbol tty_register_ldisc
2001-09-19 13:14 [PATCH] 2.4.10p12 " Mohammad A. Haque
@ 2001-09-19 14:21 ` Mark Orr
2001-09-19 14:26 ` Mohammad A. Haque
0 siblings, 1 reply; 6+ messages in thread
From: Mark Orr @ 2001-09-19 14:21 UTC (permalink / raw)
To: linux-kernel
On Wed, 19 Sep 2001 09:14:19 -0400 (EDT)
"Mohammad A. Haque" <mhaque@haque.net> wrote:
> One liner fix for unresolved symbol in PPP
With this fix, it compiles. But in using the PPP modules
I find that it doesnt work -- the modem hangs up as soon as
connect is made. /var/log/messages reports:
Sep 19 09:11:27 darkstar insmod: /lib/modules/2.4.10-pre12/kernel/drivers/net/ppp_async.o: insmod tty-ldisc-3 failed
--
Mark Orr
markorr@intersurf.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] 2.4.10p12 net/netsyms.c -- unresolved symbol tty_register_ldisc
2001-09-19 14:21 ` Mark Orr
@ 2001-09-19 14:26 ` Mohammad A. Haque
0 siblings, 0 replies; 6+ messages in thread
From: Mohammad A. Haque @ 2001-09-19 14:26 UTC (permalink / raw)
To: Mark Orr; +Cc: linux-kernel
On Wed, 19 Sep 2001, Mark Orr wrote:
> With this fix, it compiles. But in using the PPP modules
> I find that it doesnt work -- the modem hangs up as soon as
> connect is made. /var/log/messages reports:
>
> Sep 19 09:11:27 darkstar insmod: /lib/modules/2.4.10-pre12/kernel/drivers/net/ppp_async.o: insmod tty-ldisc-3 failed
Look in the changelog
--snip--
If you build ppp support as modules, you will need the following in
your /etc/modules.conf file:
alias char-major-108 ppp_generic
alias /dev/ppp ppp_generic
alias tty-ldisc-3 ppp_async
alias tty-ldisc-14 ppp_synctty
alias ppp-compress-21 bsd_comp
alias ppp-compress-24 ppp_deflate
alias ppp-compress-26 ppp_deflate
--snip--
See if those changes help.
--
=====================================================================
Mohammad A. Haque http://www.haque.net/
mhaque@haque.net
"Alcohol and calculus don't mix. Project Lead
Don't drink and derive." --Unknown http://wm.themes.org/
batmanppc@themes.org
=====================================================================
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH]2.4.10p12 net/netsyms.c -- unresolved symbol tty_register_ldisc
@ 2001-09-19 15:21 Garst R. Reese
2001-09-19 15:51 ` Mohammad A. Haque
0 siblings, 1 reply; 6+ messages in thread
From: Garst R. Reese @ 2001-09-19 15:21 UTC (permalink / raw)
To: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 167 bytes --]
Attached are some others, Mohammad's one liner patch is unreadable on
Geocrawler.
My modules.conf is correct, I do need a readable form of that patch.
pls cc me.
Garst
[-- Attachment #2: modules_install.log --]
[-- Type: text/plain, Size: 557 bytes --]
cd /lib/modules/2.4.10-pre12; \
mkdir -p pcmcia; \
find kernel -path '*/pcmcia/*' -name '*.o' | xargs -i -r ln -sf ../{} pcmcia
if [ -r System.map ]; then /sbin/depmod -ae -F System.map 2.4.10-pre12; fi
depmod: *** Unresolved symbols in /lib/modules/2.4.10-pre12/kernel/drivers/net/irda/irtty.o
depmod: tty_register_ldisc
depmod: *** Unresolved symbols in /lib/modules/2.4.10-pre12/kernel/drivers/net/ppp_async.o
depmod: tty_register_ldisc
depmod: *** Unresolved symbols in /lib/modules/2.4.10-pre12/kernel/drivers/net/slip.o
depmod: tty_register_ldisc
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH]2.4.10p12 net/netsyms.c -- unresolved symbol tty_register_ldisc
2001-09-19 15:21 [PATCH]2.4.10p12 net/netsyms.c -- unresolved symbol tty_register_ldisc Garst R. Reese
@ 2001-09-19 15:51 ` Mohammad A. Haque
2001-09-21 5:33 ` Garst R. Reese
0 siblings, 1 reply; 6+ messages in thread
From: Mohammad A. Haque @ 2001-09-19 15:51 UTC (permalink / raw)
To: Garst R. Reese; +Cc: linux-kernel
On Wed, 19 Sep 2001, Garst R. Reese wrote:
> Attached are some others, Mohammad's one liner patch is unreadable on
> Geocrawler.
> My modules.conf is correct, I do need a readable form of that patch.
> pls cc me.
> Garst
http://www.haque.net/software/patches/netsyms-2.4.10p12.diff
--
=====================================================================
Mohammad A. Haque http://www.haque.net/
mhaque@haque.net
"Alcohol and calculus don't mix. Project Lead
Don't drink and derive." --Unknown http://wm.themes.org/
batmanppc@themes.org
=====================================================================
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH]2.4.10p12 net/netsyms.c -- unresolved symbol tty_register_ldisc
2001-09-19 15:51 ` Mohammad A. Haque
@ 2001-09-21 5:33 ` Garst R. Reese
0 siblings, 0 replies; 6+ messages in thread
From: Garst R. Reese @ 2001-09-21 5:33 UTC (permalink / raw)
To: Mohammad A. Haque; +Cc: linux-kernel
Your corrected patch to tty_io.c did not get merged into pre13.
Garst
"Mohammad A. Haque" wrote:
> http://www.haque.net/software/patches/netsyms-2.4.10p12.diff
>
> --
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2001-09-21 5:34 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-19 15:21 [PATCH]2.4.10p12 net/netsyms.c -- unresolved symbol tty_register_ldisc Garst R. Reese
2001-09-19 15:51 ` Mohammad A. Haque
2001-09-21 5:33 ` Garst R. Reese
-- strict thread matches above, loose matches on Subject: below --
2001-09-19 13:14 [PATCH] 2.4.10p12 " Mohammad A. Haque
2001-09-19 14:21 ` Mark Orr
2001-09-19 14:26 ` Mohammad A. Haque
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox