-
Notifications
You must be signed in to change notification settings - Fork 57
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
QuecManager minor issues #91
Comments
|
@dr-dolomite - that new status screen does not require login? Nice. I think login should be required when viewing sensitive information or chaning modem properties. |
Nice! Thoughts for Cell Scanner / QSCAN UI's, not necessarily a feature request: |
Yup! Thats the preview screen if the user is not authenticated.
It was already implemented on the older SimpleAdmin 2.0 revision for x62 modems but since I transitioned QuecManager to use a different development approach, the Cell Scanner feature was delayed. However, it will for sure be included on the next release. About the tower id / TAC, etc., I will consider to add those. |
@dr-dolomite - feature request :) It would be nice if we can save custom AT commands in QuecManager, similar to LuCi. |
Im still having 2nd thoughts about these features since it will constantly write on modem's flash but I will consider it. |
Commands will write to flash only for |
We could save those in browser storage to avoid writing in flash. Ill try it. |
@dr-dolomite |
Here is how flash is setup Here we see the MTD partitions of the modem. These are what are flashed to.
Since this is a NAND flash with limited erase/write procedures UBIFS is utilized as the format as it helps prevent wear on the NAND storage. Only 2 MTD partitions are utilized in the booted OpenWRT system
and
Only one mount is from ubi1 (ubi1 volume 0 written as ubi1_0) at /firmware and we don't mess with it. I suspect its the radio's firmware files but I'm not sure. The mount we write to is /dev/ubi0_1 The lower and the upper are combined where I mount the overlay at. The lower is read only and the upper is where all write operations occur. Files in the upper take priority over the files in the lower, so if you edit, delete, or replace a file in the overlay that's not in the upper they are reflected in the overlay without touching the lower. I temporarily mount the overlay to /rootfs at boot but then use the pivit_root command to change the root mount / to it. The original rootfs mount gets moved to /real_rootfs and remains read only. Check it out:
We can see the current health the the filesystem we write to like this
I have put mtd36/ubi0 through a lot of abuse and as we can see there are So it can pretty much loose 80 erase blocks before it breaks. @dr-dolomite |
Closed. Many updates since original post. If any issues open a new request 👍 |
Minor UI issues:
Nice to have's:
Loving QuecManager so far, thanks!
The text was updated successfully, but these errors were encountered: