mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
6 lines
119 B
Bash
6 lines
119 B
Bash
#!/bin/sh
|
|
case "$2" in
|
|
up) iw dev $1 set power_save off || true ;;
|
|
down) iw dev $1 set power_save on || true ;;
|
|
esac
|