<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/firmware, branch v2.6.28.6</title>
<subtitle>Linux kernel source tree</subtitle>
<id>https://git.amat.us/linux/atom/firmware?h=v2.6.28.6</id>
<link rel='self' href='https://git.amat.us/linux/atom/firmware?h=v2.6.28.6'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/'/>
<updated>2008-09-23T02:27:10Z</updated>
<entry>
<title>cassini: use request_firmware</title>
<updated>2008-09-23T02:27:10Z</updated>
<author>
<name>Jaswinder Singh</name>
<email>jaswinder@infradead.org</email>
</author>
<published>2008-09-23T02:27:10Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=fcaa40669cd798ca2ac0d15441e8a1d1145f2b16'/>
<id>urn:sha1:fcaa40669cd798ca2ac0d15441e8a1d1145f2b16</id>
<content type='text'>
Firmware blob looks like this...
        __le16 load_address
        unsigned char data[]

[akpm@linux-foundation.org: include vmalloc.h]
Signed-off-by: Jaswinder Singh &lt;jaswinder@infradead.org&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
<entry>
<title>Fix modules_install on RO nfs-exported trees.</title>
<updated>2008-09-02T08:28:59Z</updated>
<author>
<name>David Woodhouse</name>
<email>David.Woodhouse@intel.com</email>
</author>
<published>2008-09-01T09:54:46Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=1cede1affb3cc5a9520fdbc75b3fbaa6432cbc5a'/>
<id>urn:sha1:1cede1affb3cc5a9520fdbc75b3fbaa6432cbc5a</id>
<content type='text'>
Fixes http://bugzilla.kernel.org/show_bug.cgi?id=11355 by avoiding a
needless rebuild of the firmware/ihex2fw tool.

Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
</entry>
<entry>
<title>Fix IHEX firmware generation/loading</title>
<updated>2008-08-02T17:36:10Z</updated>
<author>
<name>Marc Zyngier</name>
<email>maz@misterjones.org</email>
</author>
<published>2008-08-02T17:12:23Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=85ebd00334099fd5d296bcae74a66c943d46686d'/>
<id>urn:sha1:85ebd00334099fd5d296bcae74a66c943d46686d</id>
<content type='text'>
Fix both the IHEX firmware generation (len field always null, and EOF
marker a byte too short) and loading (struct ihex_binrec needs to be
packed to reflect the on-disk structure).

Signed-off-by: Marc Zyngier &lt;maz@misterjones.org&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
</entry>
<entry>
<title>Fix 'make clean' and .gitignore for firmware/ directory.</title>
<updated>2008-07-16T14:34:18Z</updated>
<author>
<name>David Woodhouse</name>
<email>dwmw2@infradead.org</email>
</author>
<published>2008-07-16T05:54:04Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=d25dc7fd4740decf4c66e2f17dbaa288448fabd5'/>
<id>urn:sha1:d25dc7fd4740decf4c66e2f17dbaa288448fabd5</id>
<content type='text'>
Provide a .gitignore file, and fix a typo which prevented some of the
generated binary files from being removed on 'make clean'.

Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
Reported-and-tested-by: Alexey Dobriyan &lt;adobriyan@gmail.com&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>Fix accidental reference to tg3 firmware</title>
<updated>2008-07-15T03:40:39Z</updated>
<author>
<name>David Woodhouse</name>
<email>dwmw2@infradead.org</email>
</author>
<published>2008-07-15T01:13:10Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=ad1f8bf073e1c1996bb37b669352e3d7b1eb2b1f'/>
<id>urn:sha1:ad1f8bf073e1c1996bb37b669352e3d7b1eb2b1f</id>
<content type='text'>
We're not updating the tg3 driver to use request_firmware() yet, but a
reference to its firmware accidentally slipped in as part of commit
c4667746 ("dabusb: use request_firmware()"). Remove it again.

Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
Reported-by: Yinghai Lu &lt;yhlu.kernel@gmail.com&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>firmware: Correct dependency on CONFIG_EXTRA_FIRMWARE_DIR</title>
<updated>2008-07-15T01:04:55Z</updated>
<author>
<name>David Woodhouse</name>
<email>dwmw2@infradead.org</email>
</author>
<published>2008-07-15T00:50:24Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=50515af207d410c9f228380e529c56f43c3de0bd'/>
<id>urn:sha1:50515af207d410c9f228380e529c56f43c3de0bd</id>
<content type='text'>
When CONFIG_EXTRA_FIRMWARE_DIR gets changed, the filename in the .S file
(which uses .incbin to include the binary) needs to change. When we
renamed the BUILTIN_FIRMWARE_DIR option to EXTRA_FIRMWARE_DIR, we forgot
to update the manual dependency in firmware/Makefile, so it was
depending on a non-existent file in include/config/

Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>firmware: convert sb16_csp driver to use firmware loader exclusively</title>
<updated>2008-07-14T21:45:46Z</updated>
<author>
<name>Jaswinder Singh</name>
<email>jaswinder@infradead.org</email>
</author>
<published>2008-07-05T12:35:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=d71792ac3d48df6693f7b339e02494efc27036c3'/>
<id>urn:sha1:d71792ac3d48df6693f7b339e02494efc27036c3</id>
<content type='text'>
Signed-off-by: Jaswinder Singh &lt;jaswinder@infradead.org&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
</entry>
<entry>
<title>dsp56k: use request_firmware</title>
<updated>2008-07-14T21:45:32Z</updated>
<author>
<name>Jaswinder Singh</name>
<email>jaswinder@infradead.org</email>
</author>
<published>2008-07-05T09:58:30Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=7f127d5ed0da66053482a3e18014c439da3c41d1'/>
<id>urn:sha1:7f127d5ed0da66053482a3e18014c439da3c41d1</id>
<content type='text'>
Signed-off-by: Jaswinder Singh &lt;jaswinder@infradead.org&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
</entry>
<entry>
<title>edgeport-ti: use request_firmware()</title>
<updated>2008-07-14T21:44:39Z</updated>
<author>
<name>Jaswinder Singh</name>
<email>jaswinder@infradead.org</email>
</author>
<published>2008-07-04T17:36:09Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=d12b219a228efe92f0778ed3af21305e65fbb052'/>
<id>urn:sha1:d12b219a228efe92f0778ed3af21305e65fbb052</id>
<content type='text'>
Firmware blob looks like this...
        uint8_t  MajorVersion
        uint8_t  MinorVersion
        __le16   BuildNumber
        uint8_t  data[]

Signed-off-by: Jaswinder Singh &lt;jaswinder@infradead.org&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
</entry>
<entry>
<title>edgeport: use request_firmware()</title>
<updated>2008-07-14T21:44:37Z</updated>
<author>
<name>Jaswinder Singh</name>
<email>jaswinder@infradead.org</email>
</author>
<published>2008-07-03T11:30:23Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=5b9ea9322605da09d6f7119f03f71cc52b044911'/>
<id>urn:sha1:5b9ea9322605da09d6f7119f03f71cc52b044911</id>
<content type='text'>
Version number provided in first HEX record.

Signed-off-by: Jaswinder Singh &lt;jaswinder@infradead.org&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
</entry>
</feed>
