-
Notifications
You must be signed in to change notification settings - Fork 3
Add MoonBase, a second boot image for the 4 MB boards #82
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
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
90b445c
Add MoonBase, a second boot image for the 4 MB boards
ewowi b6d4812
Trigger the MoonBase test release on a push of the branch
ewowi c93a00f
Rename web-installer/ to mooninstaller/, joining the Moon family
ewowi 890853b
Harden MoonBase: review fixes, power-cut recovery, 3x faster installs
ewowi b659223
MoonBase Ethernet, cancel and retry, and the app's face
ewowi f487b33
Close the pre-merge review rounds; drop the temporary test-release CI
ewowi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win
🔎 Supported by static analysis
🏁 Script executed:
Repository: MoonModules/projectMM
Length of output: 5358
🏁 Script executed:
Repository: MoonModules/projectMM
Length of output: 5517
🌐 Web query:
Espressif IDF Component Manager dependencies.lock commit lock file managed registry dependencies version resolution💡 Result:
The dependencies.lock file is a critical component of the Espressif IDF Component Manager, designed to ensure reproducible builds by locking project dependencies to exact, verified versions [1]. Key functions and behavior of the dependencies.lock file include: 1. Version Resolution: The IDF Component Manager uses the PubGrub algorithm to resolve component dependencies defined in manifest files (e.g., idf_component.yml) into a set of specific, compatible versions [2][3]. 2. Reproducibility: Once resolved, these exact versions are recorded in the dependencies.lock file. This ensures that every developer and build environment uses the same component versions, preventing unexpected updates or inconsistencies [1]. 3. Automated Management: The file is generated automatically by the component manager when it runs (e.g., during idf.py reconfigure) [4]. Users should not manually edit it; it is updated only by the version solver [1][4]. 4. Triggers for Updates: The solver recalculates dependencies and updates the lock file if: - The dependencies.lock file is missing [2][3]. - The hash of the project manifests (idf_component.yml) has changed [2][3]. - The build target (e.g., ESP32 vs. ESP32-S3) specified in the lock file no longer matches the current target [2][3]. 5. Version Control Best Practices: For projects using ESP Component Registry or Git dependencies, it is recommended to check the dependencies.lock file into version control [1]. However, it should be excluded from version control if the project includes Kconfig Options or local paths, as these may contain environment-specific information that is not portable [1]. The component manager automatically downloads dependencies to a managed_components directory in the project root based on the resolved versions in the lock file [4]. If the lock file or the managed_components directory are accidentally modified or deleted, they can be restored by re-running the component manager via the build system (e.g., idf.py reconfigure) [4].
Citations:
Commit
moonbase/dependencies.lockfor the managed dependency.moonbase/main/idf_component.ymldeclares the registry dependencyjoltwallet/littlefs(^1.16.0). Because.gitignoreexcludes the generated lock file, builds without a local lock can resolve different component versions. Remove the ignore entry and commit the generated lock file.🤖 Prompt for AI Agents