From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0+) Gecko/20020427 Description of problem: When compiling the kernel with sym53c8xx_2 built into the kernel the following happens. ld -m elf_i386 -r -o scsidrv.o scsi_mod.o aic7xxx/aic7xxx_drv.o sym53c8xx_2/sym53c8xx.o sd_mod.o ld: cannot open sym53c8xx_2/sym53c8xx.o: No such file or directory make[3]: *** [scsidrv.o] Error 1 make[3]: Leaving directory `/stuff/src/linux-2.4.18-3/drivers/scsi' make[2]: *** [first_rule] Error 2 make[2]: Leaving directory `/stuff/src/linux-2.4.18-3/drivers/scsi' make[1]: *** [_subdir_scsi] Error 2 make[1]: Leaving directory `/stuff/src/linux-2.4.18-3/drivers' make: *** [_dir_drivers] Error 2 Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1.change sym53c8xx_2 to compile directly into the kernel 2. make dep clean bzImage Additional info:
in driver/scsi/Makefile it should be like this: ifeq ($(CONFIG_SCSI_SYM53C8XX_2),y) obj-$(CONFIG_SCSI_SYM53C8XX_2) += sym53c8xx_2/sym53c8xx_2.o endif not this ifeq ($(CONFIG_SCSI_SYM53C8XX_2),y) obj-$(CONFIG_SCSI_SYM53C8XX_2) += sym53c8xx_2/sym53c8xx.o endif
*** Bug 64985 has been marked as a duplicate of this bug. ***
fixed for the next build