Le 07/11/2022 à 17:22, Didier Spaier a écrit : > I am considering continuing to ship the drivers as modules, but loading the > requested module early during installation as in the Debian installer. I will > build an ISO with this change so you can test. Done. FWIW I have modified the code snippet like this: unset SYNTH if grep -q speakup.synth /proc/cmdline; then SYNTH=$(sed "s@.*speakup[-_]synth=\([[:alpha:]]\{1,\}\).*@\1@" /proc/cmdline) [ "$SYNTH" ] && [ ! "$SYNTH" = "soft" ] && modprobe speakup_"$SYNTH" && touch /tmp/noespeakup fi Cheers, Didier