Anyone else notice this in root's start.sh?
Code:
# Temporary fix to show the WiFi mac address to the user
if [ ! -e /mnt/free/wlan_mac.txt ]
then
echo "WiFi card MAC address:" > /mnt/free/wlan_mac.txt
ifconfig wlan0 | awk '$4 ~ /HWaddr/ { mac = $5; gsub(/:/, "-", mac); print mac }' >> /mnt/free/wlan_mac.txt
fi
When I inspect the file:
Code:
root@ereader:~# cat /mnt/free/wlan_mac.txt
WiFi card MAC address:
I guess I have my first iRex bug to fix.