mirror of
https://github.com/kenzok8/small-package.git
synced 2026-01-19 13:48:08 +08:00
11 lines
243 B
Plaintext
11 lines
243 B
Plaintext
# Copyright (C) 2022 X-WRT.COM
|
|
|
|
do_pre_kmodload()
|
|
{
|
|
test -e /etc/modules.d/mt7915e && {
|
|
cat /etc/modules.d/mt7915e | grep -q wed_enable=Y || echo mt7915e wed_enable=Y >/etc/modules.d/mt7915e
|
|
}
|
|
}
|
|
|
|
boot_hook_add preinit_main do_pre_kmodload
|