kmod-blacklist-ubuntu: Fix typo from commit "do not blacklist i2c_i801"

That commit did not actually accomplish its intent because it misspelled the module name.
This commit is contained in:
Ambroz Bizjak 2018-06-29 22:11:55 +02:00
parent 95cb828b27
commit 0ed43b5643

View File

@ -17,7 +17,7 @@ in stdenv.mkDerivation {
echo "''\n''\n## file: "`basename "$f"`"''\n''\n" >> "$out"/modprobe.conf
cat "$f" >> "$out"/modprobe.conf
# https://bugs.launchpad.net/ubuntu/+source/kmod/+bug/1475945
sed -i '/^blacklist i2c_801/d' $out/modprobe.conf
sed -i '/^blacklist i2c_i801/d' $out/modprobe.conf
done
substituteInPlace "$out"/modprobe.conf \