Messages in this thread Patch in this message |  | | Date | Thu, 28 Sep 2000 17:26:38 -0300 (BRT) | From | Marcelo Tosatti <> | Subject | Re: Linux 2.2.18pre11 |
| |
On Fri, 29 Sep 2000, Eyal Lebedinsky wrote:
> Alan Cox wrote: > > > > 2.2.18pre11 > > I should mention that using an almost-all-modularised config I get this > for the last few pachlevels: > > depmod: *** Unresolved symbols in /lib/modules/2.2.18pre11/misc/rio.o
This patch fixes this:
--- linux.orig/drivers/char/Makefile Wed Sep 20 18:20:16 2000 +++ linux/drivers/char/Makefile Wed Sep 20 18:22:53 2000 @@ -201,13 +201,14 @@ endif obj-$(CONFIG_SX) += sx.o generic_serial.o -obj-$(CONFIG_RIO) += rio/rio.o generic_serial.o ifeq ($(CONFIG_RIO),y) +L_OBJS += rio/rio.o generic_serial.o SUB_DIRS += rio MOD_SUB_DIRS += rio else ifeq ($(CONFIG_RIO),m) + M_OBJS += generic_serial.o MOD_SUB_DIRS += rio endif endif - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |