• Rasmus Villemoes's avatar
    modules: add CONFIG_MODPROBE_PATH · 17652f42
    Rasmus Villemoes authored
    Allow the developer to specifiy the initial value of the modprobe_path[]
    string.  This can be used to set it to the empty string initially, thus
    effectively disabling request_module() during early boot until userspace
    writes a new value via the /proc/sys/kernel/modprobe interface.  [1]
    
    When building a custom kernel (often for an embedded target), it's normal
    to build everything into the kernel that is needed for booting, and indeed
    the initramfs often contains no modules at all, so every such
    request_module() done before userspace init has mounted the real rootfs is
    a waste of time.
    
    This is particularly useful when combined with the previous patch, which
    made the initramfs unpacking asynchronous - for that to work, it had to
    make any usermodehelper call wait for the unpacking to finish before
    attempting to invoke the userspace helper.  By eliminating all such
    (known-to-be-futile) calls of usermodehelper, the initramfs unpacking and
    the {device,late}_initcalls can procee...
    17652f42
kmod.c 5 KB