2
0
forked from Ivasoft/openwrt

dir825b1: Add image for DIR-825-B1 that uses the whole flash (must first be flashed with the 'standard' image) and an image to revert the change to allow reversion to stock firmware.

SVN-Revision: 33326
This commit is contained in:
Daniel Dickinson
2012-09-06 18:15:26 +00:00
parent 31e063d212
commit c3b7139ab2
8 changed files with 208 additions and 2 deletions

View File

@@ -64,7 +64,9 @@ get_status_led() {
dir-615-c1)
status_led="d-link:green:status"
;;
dir-825-b1)
dir-825-b1 |\
dir-825-b1-openwrt |\
dir-825-b1-stock)
status_led="d-link:orange:power"
;;
eap7660d)

View File

@@ -0,0 +1,66 @@
#!/bin/sh
#
# Copyright (C) 2011 OpenWrt.org
#
. /lib/functions/uci-defaults.sh
. /lib/ar71xx.sh
board=$(ar71xx_board_name)
findmtd() {
local partname="$1"
grep "\"$partname\"" /proc/mtd | awk -F: '{ print $1 }'
}
getcalmac() {
local partname="$1"
local offset="$2"
hexdump -e '17/1 "%c"' -s $offset -n 17 /dev/$(findmtd $partname) | tr -d : | tr 'A-Z' 'a-z'
}
calcmacX() {
local mac="$1"
local X="$2"
local oui="$(expr substr "$mac" 1 6)"
local end="$(expr substr "$mac" 7 12)"
echo -n $oui
expr substr "$(printf "%6lx" "$(($(printf "%lu" 0x${end}) + $X))")" 1 6
}
getifmac() {
local ifname="$1"
local ifmac
ifmac="$(ifconfig "$ifname" | grep HWaddr)"
ifmac="${ifmac#*HWaddr }"
ifmac="${ifmac%% *}"
echo "$ifmac" | tr -d : | tr 'A-Z' 'a-z'
}
case "$board" in
dir-825-b1)
mac1="$(getcalmac caldata 65440)"
mac1="$(calcmacX "$mac1" 2)"
mac2="$(calcmacX "$mac1" 1)"
if grep -q '"owrt_caldata"' /proc/mtd && [ "$mac1" = "$(getifmac eth0)" ] && [ "$mac2" = "$(getifmac eth1)" ]; then
dd if=/dev/$(findmtd caldata) of=/dev/$(findmtd owrt_caldata) bs=65536 count=1
fi
;;
dir-825-b1-tostock)
mac1="$(getcalmac owrt_caldata 65440)"
mac1="$(calcmacX "$mac1" 2)"
mac2="$(calcmacX "$mac1" 1)"
if grep -q '"owrt_caldata"' /proc/mtd && [ "$mac1" = "$(getifmac eth0)" ] && [ "$mac2" = "$(getifmac eth1)" ]; then
dd if=/dev/$(findmtd owrt_caldata) of=/dev/$(findmtd caldata) bs=65536 count=1
fi
;;
esac
return 0

View File

@@ -31,6 +31,8 @@ db120)
;;
dir-825-b1|\
dir-825-b1-openwrt|\
dir-825-b1-tostock|\
tew-673gru)
ucidef_set_interfaces_lan_wan "eth0.1" "eth1"
ucidef_add_switch "rtl8366s" "1" "1"