Add NDIS65_ndprot683_fix for several kits#857
Conversation
Signed-off-by: Kostiantyn Kostiuk <kkostiuk@redhat.com>
Summary of ChangesHello @kostyanf14, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request integrates a specific NDIS (Network Driver Interface Specification) fix, Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request adds NDIS65_ndprot683_fix as extra software for several HLK kits. While the changes to the JSON configuration files are correct, the pull request seems to be incomplete. It's missing the necessary configuration files for the newly added NDIS65_ndprot683_fix software. Without these files, the application will fail at runtime when it tries to prepare the extra software packages. I've added comments to each modified file pointing out this critical issue.
| "extra_software": [ | ||
| "winfsp" | ||
| "winfsp", | ||
| "NDIS65_ndprot683_fix" |
There was a problem hiding this comment.
Adding "NDIS65_ndprot683_fix" to extra_software requires a corresponding configuration for it. The ExtraSoftwareManager will look for a configuration file (e.g., config.json) in a directory named NDIS65_ndprot683_fix under the extra_software path. This PR appears to be missing this configuration, which will likely cause a runtime failure when read_config in lib/auxiliary/extra_software/manager.rb is called. Please add the necessary configuration for this new software.
| "extra_software": [ | ||
| "winfsp" | ||
| "winfsp", | ||
| "NDIS65_ndprot683_fix" |
There was a problem hiding this comment.
Adding "NDIS65_ndprot683_fix" to extra_software requires a corresponding configuration for it. The ExtraSoftwareManager will look for a configuration file (e.g., config.json) in a directory named NDIS65_ndprot683_fix under the extra_software path. This PR appears to be missing this configuration, which will likely cause a runtime failure when read_config in lib/auxiliary/extra_software/manager.rb is called. Please add the necessary configuration for this new software.
| "winfsp", | ||
| "RoMetadataDll" | ||
| "RoMetadataDll", | ||
| "NDIS65_ndprot683_fix" |
There was a problem hiding this comment.
Adding "NDIS65_ndprot683_fix" to extra_software requires a corresponding configuration for it. The ExtraSoftwareManager will look for a configuration file (e.g., config.json) in a directory named NDIS65_ndprot683_fix under the extra_software path. This PR appears to be missing this configuration, which will likely cause a runtime failure when read_config in lib/auxiliary/extra_software/manager.rb is called. Please add the necessary configuration for this new software.
There was a problem hiding this comment.
Pull request overview
This PR adds the NDIS65_ndprot683_fix extra software package to selected HLK 2025/Win11 kits so that the corresponding NDIS 6.5 protocol fix is automatically prepared and installed alongside existing extras.
Changes:
- Update
HLK2025kit configuration to includeNDIS65_ndprot683_fixin itsextra_softwarelist. - Update
HLK11_25H2kit configuration to includeNDIS65_ndprot683_fixin itsextra_softwarelist afterwinfsp. - Update
HLK11_24H2kit configuration to includeNDIS65_ndprot683_fixin itsextra_softwarelist afterwinfsp.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| lib/engines/hckinstall/kits/HLK2025.json | Adds NDIS65_ndprot683_fix to the HLK2025 kit’s extra_software array, ensuring this fix is prepared and copied to setup scripts for that kit. |
| lib/engines/hckinstall/kits/HLK11_25H2.json | Extends the extra_software list for HLK11_25H2 to include NDIS65_ndprot683_fix alongside winfsp. |
| lib/engines/hckinstall/kits/HLK11_24H2.json | Extends the extra_software list for HLK11_24H2 to include NDIS65_ndprot683_fix alongside winfsp. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
No description provided.