ar71xx: refactor 10-ath9k-eeprom
move all library includes and 'firmware already exists' check to the top of the script. Signed-off-by: Chris R Blake <chrisrblake93@gmail.com> SVN-Revision: 47947
This commit is contained in:
parent
fb1273dfdd
commit
8e4194797a
1 changed files with 6 additions and 6 deletions
|
@ -1,5 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
[ -e /lib/firmware/$FIRMWARE ] && exit 0
|
||||||
|
|
||||||
|
. /lib/ar71xx.sh
|
||||||
|
. /lib/functions.sh
|
||||||
|
. /lib/functions/system.sh
|
||||||
|
|
||||||
ath9k_eeprom_die() {
|
ath9k_eeprom_die() {
|
||||||
echo "ath9k eeprom: " "$*"
|
echo "ath9k eeprom: " "$*"
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -27,12 +33,6 @@ ath9k_patch_firmware_mac() {
|
||||||
macaddr_2bin $mac | dd of=/lib/firmware/$FIRMWARE conv=notrunc bs=1 seek=2 count=6
|
macaddr_2bin $mac | dd of=/lib/firmware/$FIRMWARE conv=notrunc bs=1 seek=2 count=6
|
||||||
}
|
}
|
||||||
|
|
||||||
[ -e /lib/firmware/$FIRMWARE ] && exit 0
|
|
||||||
|
|
||||||
. /lib/ar71xx.sh
|
|
||||||
. /lib/functions.sh
|
|
||||||
. /lib/functions/system.sh
|
|
||||||
|
|
||||||
board=$(ar71xx_board_name)
|
board=$(ar71xx_board_name)
|
||||||
|
|
||||||
case "$FIRMWARE" in
|
case "$FIRMWARE" in
|
||||||
|
|
Loading…
Reference in a new issue