bugfix: ubnt uboot firmware check fails via tftp

newer versions of Ubiquiti uboot constrain
the firmware header version sting. Current
openwrt formated versioning results in a
uboot firmware check error
This commit is contained in:
Joe AE6XE 2018-05-13 13:11:25 -07:00 committed by dman776
parent 7ee18ed05b
commit 68c1ba7fa9
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
--- a/target/linux/ar71xx/image/generic-ubnt.mk
+++ b/target/linux/ar71xx/image/generic-ubnt.mk
@@ -4,7 +4,7 @@
# routerboard creates partitions out of the ubnt header
define Build/mkubntimage
-$(STAGING_DIR_HOST)/bin/mkfwimage \
- -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-$(VERSION_DIST)-$(REVISION) \
+ -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-31296.170704.204 \
-k $(IMAGE_KERNEL) \
-r $@ \
-o $@
@@ -17,7 +17,7 @@
dd if=$@ of=$@.old1 bs=1024k count=1; \
dd if=$@ of=$@.old2 bs=1024k skip=1; \
$(STAGING_DIR_HOST)/bin/mkfwimage \
- -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-$(VERSION_DIST)-$(REVISION) \
+ -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-31296.170704.204 \
-k $@.old1 \
-r $@.old2 \
-o $@; \

View File

@ -1,3 +1,4 @@
002-firmware-check-fix.patch
701-extended-spectrum.patch
702-enable-country-hx.patch
703-fix-dnsmasq.patch