• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

bootable/newinstaller


Commit MetaInfo

Révisionc323c49f8bc154e085eb866255434b71d03a0499 (tree)
l'heure2011-01-20 12:15:38
AuteurChih-Wei Huang <cwhuang@linu...>
CommiterChih-Wei Huang

Message de Log

0-auto-detect: find all modalias files in /sys

This is a suggestion from Corentin Chary to fix
auto-detect issue of eeepc-wmi driver.

Change Summary

Modification

--- a/initrd/scripts/0-auto-detect
+++ b/initrd/scripts/0-auto-detect
@@ -22,7 +22,7 @@ auto_detect()
2222 sed -n 's/^alias *\([^ ]*\) *\(.*\)/\1)modprobe \2;;/p' >> $tmp
2323 echo 'esac; done; }' >> $tmp
2424 source $tmp
25- cat /sys/bus/*/devices/*/modalias | dev2mod
25+ find /sys -name modalias -exec cat {} \; | dev2mod
2626 }
2727
2828 load_uvesafb()