X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=target%2Flinux%2Fmpc85xx%2Fbase-files%2Fetc%2Fhotplug.d%2Ffirmware%2F10-ath9k-eeprom;fp=target%2Flinux%2Fmpc85xx%2Fbase-files%2Fetc%2Fhotplug.d%2Ffirmware%2F10-ath9k-eeprom;h=be6ee40389b0d9f4a34cf5b4b548c34c58996b9b;hp=bcde02593a14830a944339363f5777538bc91477;hb=2c60de0e3f8cbe088fe8e495697cb9e98380710d;hpb=5b6a80909280cafcb1e28ca120eed6922d68dc5a diff --git a/target/linux/mpc85xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom b/target/linux/mpc85xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom index bcde02593a..be6ee40389 100644 --- a/target/linux/mpc85xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom +++ b/target/linux/mpc85xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom @@ -4,17 +4,6 @@ . /lib/functions/caldata.sh -tpl_set_wireless_mac() -{ - local offset=$1 - local mac - - mac=$(mtd_get_mac_binary u-boot 0x4fc00) - mac=$(macaddr_add $mac $offset) - - macaddr_2bin $mac | dd bs=1 count=6 seek=2 conv=notrunc of=/lib/firmware/$FIRMWARE 2>/dev/null -} - board=$(board_name) case "$FIRMWARE" in @@ -22,7 +11,7 @@ case "$FIRMWARE" in case $board in tplink,tl-wdr4900-v1) caldata_extract "caldata" 0x1000 0x800 - tpl_set_wireless_mac 0 + ath9k_patch_mac $(mtd_get_mac_binary u-boot 0x4fc00) ;; *) caldata_die "board $board is not supported yet" @@ -34,7 +23,7 @@ case "$FIRMWARE" in case $board in tplink,tl-wdr4900-v1) caldata_extract "caldata" 0x5000 0x800 - tpl_set_wireless_mac -1 + ath9k_patch_mac $(macaddr_add $(mtd_get_mac_binary u-boot 0x4fc00) -1) ;; *) caldata_die "board $board is not supported yet"