Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ramips: add initial support for TP-LINK TL-WR840N v4 #974
ramips: add initial support for TP-LINK TL-WR840N v4 #974
Changes from all commits
8706b60
File filter
Jump to
worm202May 15, 2017
I'm trying to investigate poor wireless performance, which was described by @sanitariu
The thing I noticed here is that the EEPROM address was not defined, so it uses default value from mt7628an.dtsi, which is wrong for this hardware:
mediatek,mtd-eeprom = <&factory 0x0000>;
Real EEPROM is located in radio partition, so we must declare this:
But performance is still bad though.
sanitariuMay 19, 2017
Did you make some patch for the correct eeprom ?
Lipton2kirovJul 4, 2017
You are the author of this https://raxp.ru/index.php/2017/06/21/lede-for-wr841n-v13wr840n-v4-ru/ ?
Can share the developments?
mkresinMar 23, 2017
Contributor
please use the existing
pad-extra
instead of your custom prepend-to.svobodavacMar 24, 2017
Author
Contributor
I'm afraid it's not possible.
KERNEL_DTB = kernel-bin | patch-dtb | lzma
Calling pad-extra before making KERNEL_DTB causes, that all leading zeroes crated by pad-extra are subject of lzma a will be comprimed:(
I can't find better/simpler solution.