<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/tools, branch v2012.07-rc2</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>tools: clean up mingw ifdefs</title>
<updated>2012-07-20T06:53:34+00:00</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2012-07-18T16:59:45+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4f7136e7c55e95aa3a5c6b99f9ef9f32c906612c'/>
<id>4f7136e7c55e95aa3a5c6b99f9ef9f32c906612c</id>
<content type='text'>
We have a header file specifically for mingw cruft, so keep it there
to avoid crap spreading into the main tools.  This lets our devs just
worry about *nix systems.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We have a header file specifically for mingw cruft, so keep it there
to avoid crap spreading into the main tools.  This lets our devs just
worry about *nix systems.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tools: Fix mingw tools build</title>
<updated>2012-07-08T20:41:19+00:00</updated>
<author>
<name>Vladimir Yakovlev</name>
<email>nagos@inbox.ru</email>
</author>
<published>2012-07-07T10:05:06+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=8b6a4952e6064dc558cb7d5d375990b17491f26f'/>
<id>8b6a4952e6064dc558cb7d5d375990b17491f26f</id>
<content type='text'>
mkenvimage does not build due to missed os_support.o and unsupported
file modes S_IRGRP S_IWGRP.
Tested with mingw 4.2.1 on ubuntu 12.04.

Signed-off-by: Vladimir Yakovlev &lt;nagos@inbox.ru&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
mkenvimage does not build due to missed os_support.o and unsupported
file modes S_IRGRP S_IWGRP.
Tested with mingw 4.2.1 on ubuntu 12.04.

Signed-off-by: Vladimir Yakovlev &lt;nagos@inbox.ru&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>kwboot: boot kirkwood SoCs over a serial link</title>
<updated>2012-07-07T12:07:32+00:00</updated>
<author>
<name>Luka Perkov</name>
<email>uboot@lukaperkov.net</email>
</author>
<published>2012-05-27T11:44:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d131ad68c6566749df10154d2a6fa93df5865495'/>
<id>d131ad68c6566749df10154d2a6fa93df5865495</id>
<content type='text'>
The kwboot program boots boards based on Marvell's Kirkwood platform
via Xmodem over their integrated UART.

Signed-off-by: Daniel Stodden &lt;daniel.stodden@googlemail.com&gt;
Acked-by: Luka Perkov &lt;uboot@lukaperkov.net&gt;
Tested-By: Holger Brunck &lt;holger.brunck@keymile.com&gt;
Tested-By: David Purdy &lt;david.c.purdy@gmail.com&gt;
Tested-by: Simon Guinot &lt;simon.guinot@sequanux.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The kwboot program boots boards based on Marvell's Kirkwood platform
via Xmodem over their integrated UART.

Signed-off-by: Daniel Stodden &lt;daniel.stodden@googlemail.com&gt;
Acked-by: Luka Perkov &lt;uboot@lukaperkov.net&gt;
Tested-By: Holger Brunck &lt;holger.brunck@keymile.com&gt;
Tested-By: David Purdy &lt;david.c.purdy@gmail.com&gt;
Tested-by: Simon Guinot &lt;simon.guinot@sequanux.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tools/mkenvimage.c: fix basename(3) usage</title>
<updated>2012-07-02T18:21:49+00:00</updated>
<author>
<name>Andreas Bießmann</name>
<email>andreas.devel@googlemail.com</email>
</author>
<published>2012-06-28T06:01:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=558cd995d6d3eaa94fb342d142289a1fa2f76ba3'/>
<id>558cd995d6d3eaa94fb342d142289a1fa2f76ba3</id>
<content type='text'>
Use the POSIX variant of basename due to BSD systems (e.g. OS X) do not provide
GNU version of basename(3). It is save to use the POSIX variant here cause we do
never use argv[0] later on which may be modified by the basename(3) POSIX
variant.
On systems providing GNU variant the GNU variant should be used since string.h
is included before libgen.h. Therefore let the _GNU_SOURCE as is.

This patch fixes following warning (on OS X):
---8&lt;---
mkenvimage.c: In function ‘main’:
mkenvimage.c:105: warning: implicit declaration of function ‘basename’
mkenvimage.c:105: warning: assignment makes pointer from integer without a cast
---&gt;8---

Signed-off-by: Andreas Bießmann &lt;andreas.devel@googlemail.com&gt;
cc: Keith Mok &lt;ek9852@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the POSIX variant of basename due to BSD systems (e.g. OS X) do not provide
GNU version of basename(3). It is save to use the POSIX variant here cause we do
never use argv[0] later on which may be modified by the basename(3) POSIX
variant.
On systems providing GNU variant the GNU variant should be used since string.h
is included before libgen.h. Therefore let the _GNU_SOURCE as is.

This patch fixes following warning (on OS X):
---8&lt;---
mkenvimage.c: In function ‘main’:
mkenvimage.c:105: warning: implicit declaration of function ‘basename’
mkenvimage.c:105: warning: assignment makes pointer from integer without a cast
---&gt;8---

Signed-off-by: Andreas Bießmann &lt;andreas.devel@googlemail.com&gt;
cc: Keith Mok &lt;ek9852@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>checkpatch: add check for whitespace before semicolon at end-of-line</title>
<updated>2012-06-21T19:30:02+00:00</updated>
<author>
<name>Eric Nelson</name>
<email>eric.nelson@boundarydevices.com</email>
</author>
<published>2012-05-03T03:32:18+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=172a3a82afd042b8cf43a0cd9720195985a46e3c'/>
<id>172a3a82afd042b8cf43a0cd9720195985a46e3c</id>
<content type='text'>
This tests for a bad habits of mine like this:

	return 0 ;

Signed-off-by: Eric Nelson &lt;eric.nelson@boundarydevices.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This tests for a bad habits of mine like this:

	return 0 ;

Signed-off-by: Eric Nelson &lt;eric.nelson@boundarydevices.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Strip fw_printenv like the other tools</title>
<updated>2012-06-21T18:28:28+00:00</updated>
<author>
<name>Loïc Minier</name>
<email>lool@debian.org</email>
</author>
<published>2012-03-11T15:43:02+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=3648ff2d9d352b175008dd5637c9e8b85b85e844'/>
<id>3648ff2d9d352b175008dd5637c9e8b85b85e844</id>
<content type='text'>
Signed-off-by: Loïc Minier &lt;lool@debian.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Loïc Minier &lt;lool@debian.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>patman: Handle creation of patman config file</title>
<updated>2012-06-19T20:51:55+00:00</updated>
<author>
<name>Vikram Narayanan</name>
<email>vikram186@gmail.com</email>
</author>
<published>2012-05-23T09:01:06+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=87d65558efe50bb2cc3617bafd8399695212c0e5'/>
<id>87d65558efe50bb2cc3617bafd8399695212c0e5</id>
<content type='text'>
patman shouts when it couldn't find a $(HOME)/.patman file.
Handle it in a sane way by creating a new one for the user.
It looks for a user.name and user.email in the global .gitconfig
file, waits for the user input if it can't find there. Update the
same in the README

Signed-off-by: Vikram Narayanan &lt;vikram186@gmail.com&gt;
Acked-by: Simon Glass &lt;sjg@chromium.org&gt;
Cc: Simon Glass &lt;sjg@chromium.org&gt;
Cc: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
patman shouts when it couldn't find a $(HOME)/.patman file.
Handle it in a sane way by creating a new one for the user.
It looks for a user.name and user.email in the global .gitconfig
file, waits for the user input if it can't find there. Update the
same in the README

Signed-off-by: Vikram Narayanan &lt;vikram186@gmail.com&gt;
Acked-by: Simon Glass &lt;sjg@chromium.org&gt;
Cc: Simon Glass &lt;sjg@chromium.org&gt;
Cc: Wolfgang Denk &lt;wd@denx.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>patman: Change the location of patman config file</title>
<updated>2012-06-19T20:51:36+00:00</updated>
<author>
<name>Vikram Narayanan</name>
<email>vikram186@gmail.com</email>
</author>
<published>2012-05-23T08:58:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=2b36c75d7b930a860ec17f2af3321faa5811593b'/>
<id>2b36c75d7b930a860ec17f2af3321faa5811593b</id>
<content type='text'>
Move the config file from ~/.config/patman to ~/.patman as it is
more appropriate to have it there. Update the same in the README.

Signed-off-by: Vikram Narayanan &lt;vikram186@gmail.com&gt;
Cc: Simon Glass &lt;sjg@chromium.org&gt;
Cc: Wolfgang Denk &lt;wd@denx.de&gt;
Acked-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move the config file from ~/.config/patman to ~/.patman as it is
more appropriate to have it there. Update the same in the README.

Signed-off-by: Vikram Narayanan &lt;vikram186@gmail.com&gt;
Cc: Simon Glass &lt;sjg@chromium.org&gt;
Cc: Wolfgang Denk &lt;wd@denx.de&gt;
Acked-by: Simon Glass &lt;sjg@chromium.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>easylogo: add lzma support</title>
<updated>2012-06-19T20:33:55+00:00</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2012-02-03T16:16:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1a3cb4ad649607aa8bf1df33a4ce7f5b9e0a5e59'/>
<id>1a3cb4ad649607aa8bf1df33a4ce7f5b9e0a5e59</id>
<content type='text'>
Compressing the logos with lzma rather than gzip saves ~9kb with the
Blackfin 24bit images and ~3kb with the 16bit images.

Add a new -l option to easylogo so people can pick lzma as their
decompression routine.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Compressing the logos with lzma rather than gzip saves ~9kb with the
Blackfin 24bit images and ~3kb with the 16bit images.

Add a new -l option to easylogo so people can pick lzma as their
decompression routine.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tools, config.mk: Add gcc-version.sh, cc-version test from Linux</title>
<updated>2012-05-15T06:31:26+00:00</updated>
<author>
<name>Tom Rini</name>
<email>trini@ti.com</email>
</author>
<published>2012-03-16T05:27:47+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=19a695f84bb15e1a9203121f9dd4d1787d9a7757'/>
<id>19a695f84bb15e1a9203121f9dd4d1787d9a7757</id>
<content type='text'>
Added from Linux - commit fde7d9049e55ab85a390be7f415d74c9f62dd0f9

Signed-off-by: Tom Rini &lt;trini@ti.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added from Linux - commit fde7d9049e55ab85a390be7f415d74c9f62dd0f9

Signed-off-by: Tom Rini &lt;trini@ti.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
