mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
* Add ability to load btrfs and usb drivers as a module * Add load sound driver * firstboot: correct btrfs loading only on fs change --------- Co-authored-by: Apaczer <94932128+Apaczer@users.noreply.github.com>
16 lines
299 B
Bash
Executable File
16 lines
299 B
Bash
Executable File
#!/bin/busybox sh
|
|
echo host > /sys/devices/platform/soc/1c13000.usb/musb-hdrc.1.auto/mode
|
|
sleep 2
|
|
|
|
modprobe evdev
|
|
modprobe joydev
|
|
modprobe analog
|
|
modprobe xpad
|
|
modprobe atkbd
|
|
modprobe uinput
|
|
modprobe psmouse
|
|
modprobe synaptics_usb
|
|
modprobe mousedev
|
|
modprobe usbhid
|
|
modprobe hid-generic
|
|
modprobe hid |