mirror of
https://github.com/padavanonly/immortalwrt-mt798x.git
synced 2025-12-17 01:05:54 +00:00
11 lines
251 B
Bash
Executable File
11 lines
251 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
if [ ! -f /sys/class/gpio/export ]; then
|
|
exit 0
|
|
fi
|
|
|
|
### enable M.2 5G RM500U-CN Module Power ###
|
|
echo 431 > /sys/class/gpio/export
|
|
echo out > /sys/class/gpio/gpio431/direction
|
|
echo 0 > /sys/class/gpio/gpio431/value
|