• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

bootable/newinstaller


Commit MetaInfo

Revisãob7ac03c640b74860fa7992f6c0cf492506b72224 (tree)
Hora2018-10-17 18:52:04
AutorChih-Wei Huang <cwhuang@linu...>
CommiterChih-Wei Huang

Mensagem de Log

init: load atkbd hid-apple modules anyway

Though auto_detect could load these modules, it may take several
seconds. The user experience is not good.

Load the modules anyway no matter it's detected or not.

Mudança Sumário

Diff

--- a/initrd/init
+++ b/initrd/init
@@ -194,7 +194,10 @@ for s in `ls /scripts/* /src/scripts/*`; do
194194 done
195195
196196 # ensure keyboard driver is loaded
197-[ -n "$INSTALL" -o -n "$DEBUG" ] && auto_detect &
197+if [ -n "$INSTALL" -o -n "$DEBUG" ]; then
198+ busybox modprobe -a atkbd hid-apple
199+ auto_detect &
200+fi
198201
199202 if [ 0$DEBUG -gt 0 ]; then
200203 echo -e "\nType 'exit' to continue booting...\n"