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