[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20100925193914.f3c919d1.rdunlap@xenotime.net>
Date: Sat, 25 Sep 2010 19:39:14 -0700
From: Randy Dunlap <rdunlap@...otime.net>
To: James <bjlockie@...kie.ca>
Cc: Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: no modules :-)
On Sat, 25 Sep 2010 01:10:50 -0400 James wrote:
> I don't like modules. :-)
>
> What is pulling this in:
>
> CONFIG_SCSI_WAIT_SCAN=m
>
> I edited .config but make must have turned it back on.
> --
If you have SCSI enabled and MODULES enabled, this kconfig symbol will be
enabled (=m) automatically. From drivers/scsi/Kconfig (with # comments):
config SCSI_WAIT_SCAN
tristate # No prompt here, this is an invisible symbol.
default m
depends on SCSI
depends on MODULES
# scsi_wait_scan is a loadable module which waits until all the async scans are
# complete. The idea is to use it in initrd/ initramfs scripts. You modprobe
# it after all the modprobes of the root SCSI drivers and it will wait until
# they have all finished scanning their buses before allowing the boot to
# proceed. (This method is not applicable if targets boot independently in
# parallel with the initiator, or with transports with non-deterministic target
# discovery schemes, or if a transport driver does not support scsi_wait_scan.)
#
# This symbol is not exposed as a prompt because little is to be gained by
# disabling it, whereas people who accidentally switch it off may wonder why
# their mkinitrd gets into trouble.
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists