dracut: Add drivers/clk by default on arm
This will bundle clock drivers into the initramfs on arm Tested on ti dm8148-t410 where adpll is needed on 4.6+ kernel This will avoid to rely on (maybe broken) bootloader clocks. Theses modules are also usually loaded early. Having them bundled into the initramfs will avoid lot of deferred probes and others delay. Signed-off-by: Nicolas Chauvet <kwizart@gmail.com>master
parent
55b99a0e4c
commit
2602a74edf
|
@ -26,6 +26,7 @@ installkernel() {
|
||||||
if [[ "$(uname -p)" == arm* ]]; then
|
if [[ "$(uname -p)" == arm* ]]; then
|
||||||
# arm specific modules
|
# arm specific modules
|
||||||
instmods \
|
instmods \
|
||||||
|
"=drivers/clk" \
|
||||||
"=drivers/i2c/busses" \
|
"=drivers/i2c/busses" \
|
||||||
"=drivers/regulator" \
|
"=drivers/regulator" \
|
||||||
"=drivers/rtc" \
|
"=drivers/rtc" \
|
||||||
|
|
Loading…
Reference in New Issue