linux-firmware-rpidistro: Fix wireless error message on RPi #1408
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.
- What I did
Fix an error message generated when creating an image with brcmfmac enabled.
As #1396 describes, the brcmfmac driver generates an error message during boot, which can be seen by inspecting the log of the device.
This error happens because several files in linux-firmware-rpidistro links to non-existing files.
By updating the link of these files to the valid files in the target, this error message is fixed.
- How I did it
Create a patch file for the linux-firmware-rpidistro recipe, that changes the links of different rpi board firmware files from linking to non-existing files, to link to the file which exists in the system.
A similar change was already implemented for the base file - this PR do the same fix for all the rest of the RPi files, so no error message will be generated.
Fixes: #1396