<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/lib_generic, branch u-boot-2009.11.y</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<entry>
<title>zlib.c: avoid build conflicts for cradle board</title>
<updated>2009-12-07T20:50:18+00:00</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2009-12-05T23:53:18+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a9f99ab44b473fb394169ba365f8b4380f981584'/>
<id>a9f99ab44b473fb394169ba365f8b4380f981584</id>
<content type='text'>
Commit dce3d79710 updated the zlib code to v0.95; this caused
conflicts when building for the "cradle" board, because the (pretty
generic) preprocessor variable "OFF" was used in multiple files.
Make sure to avoid further conflicts by #undef'ing it in zlib.c
before redefining it.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
cc: Giuseppe Condorelli &lt;giuseppe.condorelli@st.com&gt;
cc: Angelo Castello &lt;angelo.castello@st.com&gt;
cc: Alessandro Rubini &lt;rubini-list@gnudd.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Commit dce3d79710 updated the zlib code to v0.95; this caused
conflicts when building for the "cradle" board, because the (pretty
generic) preprocessor variable "OFF" was used in multiple files.
Make sure to avoid further conflicts by #undef'ing it in zlib.c
before redefining it.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
cc: Giuseppe Condorelli &lt;giuseppe.condorelli@st.com&gt;
cc: Angelo Castello &lt;angelo.castello@st.com&gt;
cc: Alessandro Rubini &lt;rubini-list@gnudd.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lzma: ignore unset filesizes</title>
<updated>2009-12-05T00:49:52+00:00</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2009-12-04T10:35:15+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f68ab43de67f59925542efb6bcec30f4a84fe695'/>
<id>f68ab43de67f59925542efb6bcec30f4a84fe695</id>
<content type='text'>
The Linux kernel build system changed how it compresses things with LZMA
such that the header no longer contains the filesize (it is instead set to
all F's).  So if we get a LZMA image that has -1 for the 64bit field,
let's just assume that the decompressed size is unknown and continue on.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The Linux kernel build system changed how it compresses things with LZMA
such that the header no longer contains the filesize (it is instead set to
all F's).  So if we get a LZMA image that has -1 for the 64bit field,
let's just assume that the decompressed size is unknown and continue on.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>circbuf: Move to lib_generic and conditionally compile</title>
<updated>2009-12-02T22:19:32+00:00</updated>
<author>
<name>Peter Tyser</name>
<email>ptyser@xes-inc.com</email>
</author>
<published>2009-11-09T21:17:50+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9ef78511cda39987e5fc10febf386fd19f58ecf7'/>
<id>9ef78511cda39987e5fc10febf386fd19f58ecf7</id>
<content type='text'>
circbuf could be used as a generic library and is only currently
needed when CONFIG_USB_TTY is defined.

Signed-off-by: Peter Tyser &lt;ptyser@xes-inc.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
circbuf could be used as a generic library and is only currently
needed when CONFIG_USB_TTY is defined.

Signed-off-by: Peter Tyser &lt;ptyser@xes-inc.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib_generic memset: fill one word at a time if possible</title>
<updated>2009-10-18T21:10:40+00:00</updated>
<author>
<name>Alessandro Rubini</name>
<email>rubini@unipv.it</email>
</author>
<published>2009-10-10T09:51:16+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e3ea948d4588e7efddbf0ee92147d93f827d7cea'/>
<id>e3ea948d4588e7efddbf0ee92147d93f827d7cea</id>
<content type='text'>
If the destination is aligned, fill ulong values until possible.
Then fill remaining part by byte.

Signed-off-by: Alessandro Rubini &lt;rubini@unipv.it&gt;
Acked-by: Andrea Gallo &lt;andrea.gallo@stericsson.com&gt;
Acked-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the destination is aligned, fill ulong values until possible.
Then fill remaining part by byte.

Signed-off-by: Alessandro Rubini &lt;rubini@unipv.it&gt;
Acked-by: Andrea Gallo &lt;andrea.gallo@stericsson.com&gt;
Acked-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lib_generic memcpy: copy one word at a time if possible</title>
<updated>2009-10-18T21:10:37+00:00</updated>
<author>
<name>Alessandro Rubini</name>
<email>rubini@unipv.it</email>
</author>
<published>2009-10-10T09:51:05+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ecd830b863e5c6ac5d804d3b3a92453a98d526fc'/>
<id>ecd830b863e5c6ac5d804d3b3a92453a98d526fc</id>
<content type='text'>
If source and destination are aligned, this copies ulong values
until possible, trailing part is copied by byte. Thanks for the details
to Wolfgang Denk, Mike Frysinger, Peter Tyser, Chris Moore.

Signed-off-by: Alessandro Rubini &lt;rubini@unipv.it&gt;
Acked-by: Andrea Gallo &lt;andrea.gallo@stericsson.com&gt;
Acked-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If source and destination are aligned, this copies ulong values
until possible, trailing part is copied by byte. Thanks for the details
to Wolfgang Denk, Mike Frysinger, Peter Tyser, Chris Moore.

Signed-off-by: Alessandro Rubini &lt;rubini@unipv.it&gt;
Acked-by: Andrea Gallo &lt;andrea.gallo@stericsson.com&gt;
Acked-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>zlib: fix code when DEBUG is defined</title>
<updated>2009-09-04T21:04:20+00:00</updated>
<author>
<name>Giuseppe CONDORELLI</name>
<email>giuseppe.condorelli@st.com</email>
</author>
<published>2009-09-03T11:37:46+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7662eb2b9d6fbc95ecb1fb3e5b5147215e251e7d'/>
<id>7662eb2b9d6fbc95ecb1fb3e5b5147215e251e7d</id>
<content type='text'>
Removed stdio.h inclusion and moved trace macros to use printf avoiding to
write debug informations to standard error.

Signed-off-by: Giuseppe Condorelli &lt;giuseppe.condorelli@st.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removed stdio.h inclusion and moved trace macros to use printf avoiding to
write debug informations to standard error.

Signed-off-by: Giuseppe Condorelli &lt;giuseppe.condorelli@st.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>zlib: add watchdog reset call</title>
<updated>2009-08-11T20:15:18+00:00</updated>
<author>
<name>Giuseppe CONDORELLI</name>
<email>giuseppe.condorelli@st.com</email>
</author>
<published>2009-07-29T10:05:20+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=253cb831f5861358a7fa673305cdf7ded1096f44'/>
<id>253cb831f5861358a7fa673305cdf7ded1096f44</id>
<content type='text'>
This patch adds watchdog reset call to allow its invokation during decompression
phase. This control was present on old zlib version and here it is
backported for those relevant routines. This patch is sent as a zlib separate
one beacuse it was not tested due to specific board lack.
zlib patches will be unified just in one when this will be validated through
tests.

Signed-off-by: Giuseppe Condorelli &lt;giuseppe.condorelli@st.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds watchdog reset call to allow its invokation during decompression
phase. This control was present on old zlib version and here it is
backported for those relevant routines. This patch is sent as a zlib separate
one beacuse it was not tested due to specific board lack.
zlib patches will be unified just in one when this will be validated through
tests.

Signed-off-by: Giuseppe Condorelli &lt;giuseppe.condorelli@st.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>zlib: updated to v.1.2.3</title>
<updated>2009-08-11T20:14:29+00:00</updated>
<author>
<name>Giuseppe CONDORELLI</name>
<email>giuseppe.condorelli@st.com</email>
</author>
<published>2009-07-29T12:05:08+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=dce3d797102b6618e8bdd4a09cfd35969f165d86'/>
<id>dce3d797102b6618e8bdd4a09cfd35969f165d86</id>
<content type='text'>
This patch updates zlib to the latest stable version.
Only relevant zlib parts were ported to u-boot tree, as already did for the
current zlib (0.95). New zlib guarantees a faster inflate performances
other then others improvements as explained at www.zlib.net.
It also includes Alessandro Rubini's patches to allow 0 as destination pointer
and to call watchdog reset if required by architecture.

Signed-off-by: Giuseppe Condorelli &lt;giuseppe.condorelli@st.com&gt;
Reviewed-by: Angelo Castello &lt;angelo.castello@st.com&gt;
Reviewed-by: Alessandro Rubini &lt;rubini-list@gnudd.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch updates zlib to the latest stable version.
Only relevant zlib parts were ported to u-boot tree, as already did for the
current zlib (0.95). New zlib guarantees a faster inflate performances
other then others improvements as explained at www.zlib.net.
It also includes Alessandro Rubini's patches to allow 0 as destination pointer
and to call watchdog reset if required by architecture.

Signed-off-by: Giuseppe Condorelli &lt;giuseppe.condorelli@st.com&gt;
Reviewed-by: Angelo Castello &lt;angelo.castello@st.com&gt;
Reviewed-by: Alessandro Rubini &lt;rubini-list@gnudd.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix LZMA string.h header inclusion issue and remove unused variables.</title>
<updated>2009-08-09T20:51:53+00:00</updated>
<author>
<name>Luigi 'Comio' Mantellini</name>
<email>luigi.mantellini@idf-hit.com</email>
</author>
<published>2009-07-28T07:33:17+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=3f1649fb0dfb1e5c8890de154c332c394db5cdb5'/>
<id>3f1649fb0dfb1e5c8890de154c332c394db5cdb5</id>
<content type='text'>
Signed-off-by: Luigi 'Comio' Mantellini &lt;luigi.mantellini@idf-hit.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Luigi 'Comio' Mantellini &lt;luigi.mantellini@idf-hit.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>add WATCHDOG_RESET to allow LZMA kernel decompression on slow machines</title>
<updated>2009-07-26T22:16:36+00:00</updated>
<author>
<name>rhabarber1848@web.de</name>
<email>rhabarber1848@web.de</email>
</author>
<published>2009-07-24T06:16:30+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22'/>
<id>fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22</id>
<content type='text'>
Signed-off-by: rhabarber1848@web.de
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: rhabarber1848@web.de
</pre>
</div>
</content>
</entry>
</feed>
