mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
ar71xx: fix 82_patch_ath10k
The firware md5sum check never worked due to missing dollar signs. Also suppress `md5sum: can't open '/lib/firmware/ath10k/QCA988X/hw2.0/firmware-3.bin'` error on any board not using ath10k. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44486 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
5ea6da2c71
commit
eb2b29b2e5
@ -6,12 +6,18 @@
|
||||
|
||||
do_patch_ath10k_firmware() {
|
||||
local firmware_file="/lib/firmware/ath10k/QCA988X/hw2.0/firmware-3.bin"
|
||||
|
||||
# bail out if firmware does not exist
|
||||
[ -f "$firmware_file" ] || {
|
||||
return
|
||||
}
|
||||
|
||||
local firmware_md5_orig="5163aa8de591f80b06c77f22e9777473"
|
||||
local firmware_md5_current="$(md5sum $firmware_file)"
|
||||
local firmware_md5_current="${firmware_md5_current%% *}"
|
||||
|
||||
# verify md5sum before patching
|
||||
[ "firmware_md5_orig" != "firmware_md5_current" ] || {
|
||||
[ "$firmware_md5_orig" != "$firmware_md5_current" ] || {
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user