From: Eran Mann <eran@nbase.co.il>
To: linux-kernel@vger.kernel.org
Cc: Linus Torvalds <torvalds@transmeta.com>,
Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Subject: [patch] 2.4.3 fails to link when IPX compiled in
Date: Fri, 30 Mar 2001 12:37:18 +0200 [thread overview]
Message-ID: <3AC461DE.65B4049@nbase.co.il> (raw)
Hi,
When compiling linux-2.4.3 with IPX built in one gets:
ld -m elf_i386 -T /mdk/src/linux-2.4.3/arch/i386/vmlinux.lds -e stext
arch/i386/kernel/head.o arch/i386/kernel/init_task.o init/main.o
init/version.o \
--start-group \
arch/i386/kernel/kernel.o arch/i386/mm/mm.o kernel/kernel.o mm/mm.o
fs/fs.o ipc/ipc.o \
drivers/block/block.o drivers/char/char.o drivers/misc/misc.o
drivers/net/net.o drivers/media/media.o drivers/char/agp/agp.o
drivers/char/drm/drm.o drivers/ide/idedriver.o drivers/scsi/scsidrv.o
drivers/cdrom/driver.o drivers/sound/sounddrivers.o drivers/pci/driver.o
drivers/pnp/pnp.o drivers/video/video.o \
net/network.o \
/mdk/src/linux-2.4.3/arch/i386/lib/lib.a /mdk/src/linux-2.4.3/lib/lib.a
/mdk/src/linux-2.4.3/arch/i386/lib/lib.a \
--end-group \
-o vmlinux
net/network.o(.data+0x2ee4): undefined reference to
`sysctl_ipx_pprop_broadcasting'
make: *** [vmlinux] Error 1
The patchlet below seems to solve it.
================================================================
--- linux-2.4.3.orig/net/ipx/af_ipx.c Fri Mar 30 11:54:55 2001
+++ linux/net/ipx/af_ipx.c Fri Mar 30 12:29:23 2001
@@ -123,7 +123,7 @@
static unsigned char ipxcfg_max_hops = 16;
static char ipxcfg_auto_select_primary;
static char ipxcfg_auto_create_interfaces;
-static int sysctl_ipx_pprop_broadcasting = 1;
+int sysctl_ipx_pprop_broadcasting = 1;
/* Global Variables */
static struct datalink_proto *p8022_datalink;
reply other threads:[~2001-03-30 10:34 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3AC461DE.65B4049@nbase.co.il \
--to=eran@nbase.co.il \
--cc=acme@conectiva.com.br \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.