forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge git://git.infradead.org/~dwmw2/firmware-2.6
* git://git.infradead.org/~dwmw2/firmware-2.6: qla1280: Fix off-by-some error in firmware loading. Add README.AddingFirmware file. Basically telling people not to. firmware: Remove newly-added slicoss and sxg firmware images firmware/WHENCE: Add missing origin information for Ambassador atmsar11.fw ALSA: wavefront - Always use request_firmware() Remove fdump tool for av7110 firmware firmware: convert av7110 driver to request_firmware() Partially revert "V4L/DVB (9533): cx88: Add support for TurboSight TBS8910 DVB-S PCI card" Revert "fix modules_install via NFS" Add-add conflicts in firmware/WHENCE fixed manually
- Loading branch information
Showing
27 changed files
with
1,238 additions
and
26,986 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 was deleted.
Oops, something went wrong.
This file contains 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
*.bin | ||
*.csp | ||
*.dsp | ||
ihex2fw |
This file contains 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
DO NOT ADD FIRMWARE TO THIS DIRECTORY. | ||
====================================== | ||
|
||
This directory is only here to contain firmware images extracted from old | ||
device drivers which predate the common use of request_firmware(). | ||
|
||
As we update those drivers to use request_firmware() and keep a clean | ||
separation between code and firmware, we put the extracted firmware | ||
here. | ||
|
||
This directory is _NOT_ for adding arbitrary new firmware images. The | ||
place to add those is the separate linux-firmware repository: | ||
|
||
git://git.kernel.org/pub/scm/linux/kernel/git/dwmw2/linux-firmware.git | ||
|
||
That repository contains all these firmware images which have been | ||
extracted from older drivers, as well various new firmware images which | ||
we were never permitted to include in a GPL'd work, but which we _have_ | ||
been permitted to redistribute under separate cover. | ||
|
||
To submit firmware to that repository, please send either a git binary | ||
diff or preferably a git pull request to: | ||
David Woodhouse <[email protected]> | ||
|
||
Your commit should include an update to the WHENCE file clearly | ||
identifying the licence under which the firmware is available, and | ||
that it is redistributable. If the licence is long and involved, it's | ||
permitted to include it in a separate file and refer to it from the | ||
WHENCE file. | ||
|
||
Ideally, your commit should contain a Signed-Off-By: from someone | ||
authoritative on the licensing of the firmware in question (i.e. from | ||
within the company that owns the code). |
Oops, something went wrong.