mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-11 00:17:06 +08:00
12 lines
130 B
Plaintext
12 lines
130 B
Plaintext
![]() |
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=99
|
||
|
|
||
|
boot() {
|
||
|
case $(board_name) in
|
||
|
seewo,srcm3588*)
|
||
|
echo 1 > /sys/bus/pci/rescan
|
||
|
;;
|
||
|
esac
|
||
|
}
|