[1199] in linux-net channel archive
How do I set up a PLIP connection?
daemon@ATHENA.MIT.EDU (NIIBE Yutaka)
Wed Oct 11 06:06:26 1995
Date: Wed, 11 Oct 1995 09:29:27 +0900
From: NIIBE Yutaka <gniibe@mri.co.jp>
To: "Martin Kraemer" <Martin.Kraemer@mch.sni.de>
Cc: linux-net@vger.rutgers.edu (Linux Network Channel)
In-Reply-To: <199510091440.AA03288@deejai.mch.sni.de>
Martin Kraemer writes:
> Or does PLIP just not install at boot because a parallel printer is
> configured (CONFIG_PRINTER=y)?
Yes. This is the case.
Currently, there is no way to let PRINTER and PLIP co-exist in the
kernel when they are compiled into the kernel. PRINTER and PLIP try
to grab all possible I/O region. Usually, PRINTER gets the region,
so PLIP can't get any.
With modules, you can do as follows:
Configuration:
PRINTER : I/O=0x378 IRQ=7
PLIP : I/O=0x3bc IRQ=5
# insmod lp.o io=0x378 irq=7
# insmod plip.o io=0x3bc irq=5
--
NIIBE Yutaka