This repository has been archived on 2026-09-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
udev/modprobe

11 lines
187 B
Bash
Executable file

#!/bin/sh
if [ -n "$MODPROBE_COLLECT" ]; then
echo $@ >> /dev/MODPROBE
else
if [ -n "$MODPROBE_DEBUG" ]; then
/sbin/modprobe -v -s $@ &>/dev/console
else
/sbin/modprobe $@
fi
fi