| 1234567891011121314151617181920212223242526272829 |
- #!/bin/sh
- ### BEGIN INIT INFO
- # Provides:
- # Short-Description: Store WLAN HW Address
- # Description: Store the WLAN HW Address for use by other scripts
- ### END INIT INFO
- . /opt/wz_mini/etc/rc.common
- storemac() {
- wait_for_wlan_wpa $(basename "$0")
- echo "#####$(basename "$0")#####"
- cat /sys/class/net/wlan0/address | tr '[:lower:]' '[:upper:]' > /opt/wz_mini/tmp/wlan0_mac
- echo "store original mac"
- }
- case "$1" in
- start)
- storemac
- ;;
- *)
- echo "Usage: $0 {start}"
- exit 1
- ;;
- esac
|