<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/tools, branch v2011.09-rc2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/'/>
<entry>
<title>mkimage: Fix 'Unknown OMAP image type - 5'</title>
<updated>2011-09-04T09:34:00+00:00</updated>
<author>
<name>Dirk Behme</name>
<email>dirk.behme@googlemail.com</email>
</author>
<published>2011-08-09T07:52:57+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=8fcf5959a8dcd92ef01d5e909a5c14581488df93'/>
<id>8fcf5959a8dcd92ef01d5e909a5c14581488df93</id>
<content type='text'>
Using mkimage with e.g.

tools/mkimage -A arm -T firmware -O u-boot -d u-boot.bin foo.img

gives a warning

"Unknown OMAP image type - 5"

while it seems that the image itself is created successfully.

This does come from the patch "mkimage: Add OMAP boot image support".

The method check_image_type in image_type_params is supposed to just
return success or failure.  However, for omap it also calls fprintf:

static int omapimage_check_image_types(uint8_t type)
{
	if (type == IH_TYPE_OMAPIMAGE)
		return EXIT_SUCCESS;
	else {
		fprintf(stderr, "Unknown OMAP image type - %x", type);
		return EXIT_FAILURE;
	}
}

All the other image checkers and no others have this, so the fix is to
simply remove the fprintf.

Signed-off-by: Dirk Behme &lt;dirk.behme@googlemail.com&gt;
CC: John Rigby &lt;john.rigby@linaro.org&gt;
CC: Aneesh V &lt;aneesh@ti.com&gt;
CC: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Using mkimage with e.g.

tools/mkimage -A arm -T firmware -O u-boot -d u-boot.bin foo.img

gives a warning

"Unknown OMAP image type - 5"

while it seems that the image itself is created successfully.

This does come from the patch "mkimage: Add OMAP boot image support".

The method check_image_type in image_type_params is supposed to just
return success or failure.  However, for omap it also calls fprintf:

static int omapimage_check_image_types(uint8_t type)
{
	if (type == IH_TYPE_OMAPIMAGE)
		return EXIT_SUCCESS;
	else {
		fprintf(stderr, "Unknown OMAP image type - %x", type);
		return EXIT_FAILURE;
	}
}

All the other image checkers and no others have this, so the fix is to
simply remove the fprintf.

Signed-off-by: Dirk Behme &lt;dirk.behme@googlemail.com&gt;
CC: John Rigby &lt;john.rigby@linaro.org&gt;
CC: Aneesh V &lt;aneesh@ti.com&gt;
CC: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>mkimage: Add OMAP boot image support</title>
<updated>2011-08-03T10:49:20+00:00</updated>
<author>
<name>John Rigby</name>
<email>john.rigby@linaro.org</email>
</author>
<published>2011-07-21T13:10:30+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=3decb14abe76d244ba98fd158ef95f89e7e37d70'/>
<id>3decb14abe76d244ba98fd158ef95f89e7e37d70</id>
<content type='text'>
- Add mkimage support for OMAP boot image
- Add support for OMAP boot image(MLO) generation in the new
  SPL framework

Signed-off-by: John Rigby &lt;john.rigby@linaro.org&gt;
Signed-off-by: Aneesh V &lt;aneesh@ti.com&gt;
Signed-off-by: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Add mkimage support for OMAP boot image
- Add support for OMAP boot image(MLO) generation in the new
  SPL framework

Signed-off-by: John Rigby &lt;john.rigby@linaro.org&gt;
Signed-off-by: Aneesh V &lt;aneesh@ti.com&gt;
Signed-off-by: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>omap4: add clock support</title>
<updated>2011-08-03T10:49:19+00:00</updated>
<author>
<name>Aneesh V</name>
<email>aneesh@ti.com</email>
</author>
<published>2011-07-21T13:10:07+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=3776801d0ae4c147cba3110f71441edefe46a02c'/>
<id>3776801d0ae4c147cba3110f71441edefe46a02c</id>
<content type='text'>
Add support for:
1. DPLL locking
2. Initialization of clock domains and clock modules
3. Setting up the right voltage on voltage rails

This work draws upon previous work done for x-loader by:
	Santosh Shilimkar &lt;santosh.shilimkar@ti.com&gt;
	Rajendra Nayak &lt;rnayak@ti.com&gt;

Signed-off-by: Aneesh V &lt;aneesh@ti.com&gt;
Signed-off-by: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add support for:
1. DPLL locking
2. Initialization of clock domains and clock modules
3. Setting up the right voltage on voltage rails

This work draws upon previous work done for x-loader by:
	Santosh Shilimkar &lt;santosh.shilimkar@ti.com&gt;
	Rajendra Nayak &lt;rnayak@ti.com&gt;

Signed-off-by: Aneesh V &lt;aneesh@ti.com&gt;
Signed-off-by: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>MIPS: INCA-IP: rename inca-swap-bytes host tool</title>
<updated>2011-07-31T14:25:41+00:00</updated>
<author>
<name>Daniel Schwierzeck</name>
<email>daniel.schwierzeck@googlemail.com</email>
</author>
<published>2011-07-27T11:22:36+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=60b74bde9280e85f4423c05a50ecc41de56ad980'/>
<id>60b74bde9280e85f4423c05a50ecc41de56ad980</id>
<content type='text'>
The INCA-IP SoC belongs to the Lantiq XWAY SoC product portfolio.
For the upcoming support of other Lantiq SoC devices this tool should
not solely depend on the INCA-IP board.

Rename the tool to xway-swap-bytes and add an config option
to enable compilation optionally.

Signed-off-by: Daniel Schwierzeck &lt;daniel.schwierzeck@googlemail.com&gt;
Acked-by: Thomas Langer &lt;thomas.langer@lantiq.com&gt;
Signed-off-by: Shinya Kuribayashi &lt;skuribay@pobox.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The INCA-IP SoC belongs to the Lantiq XWAY SoC product portfolio.
For the upcoming support of other Lantiq SoC devices this tool should
not solely depend on the INCA-IP board.

Rename the tool to xway-swap-bytes and add an config option
to enable compilation optionally.

Signed-off-by: Daniel Schwierzeck &lt;daniel.schwierzeck@googlemail.com&gt;
Acked-by: Thomas Langer &lt;thomas.langer@lantiq.com&gt;
Signed-off-by: Shinya Kuribayashi &lt;skuribay@pobox.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>mkimage: add UBL header support for booting davinci cpus</title>
<updated>2011-07-28T14:52:41+00:00</updated>
<author>
<name>Heiko Schocher</name>
<email>hs@denx.de</email>
</author>
<published>2011-07-16T00:06:42+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=7816f2cf813326505970922021b3ed6490863e78'/>
<id>7816f2cf813326505970922021b3ed6490863e78</id>
<content type='text'>
creating an u-boot.ubl file, which contains the UBL Header
needed for booting from NAND with the RBL from TI. For more
information read doc/README.ublimage.

Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
creating an u-boot.ubl file, which contains the UBL Header
needed for booting from NAND with the RBL from TI. For more
information read doc/README.ublimage.

Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>digsy_mtc: move board into vendor dir and add vendor logo</title>
<updated>2011-07-27T21:27:07+00:00</updated>
<author>
<name>Anatolij Gustschin</name>
<email>agust@denx.de</email>
</author>
<published>2011-07-16T10:26:50+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=348de314be28e942c914a9815acc3e0746124137'/>
<id>348de314be28e942c914a9815acc3e0746124137</id>
<content type='text'>
Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>env: allow people to force envcrc building</title>
<updated>2011-07-26T14:33:49+00:00</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2011-07-08T10:44:25+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=c3eb3fe490daeb3746e5b1fe354ff1a19eb3e3a8'/>
<id>c3eb3fe490daeb3746e5b1fe354ff1a19eb3e3a8</id>
<content type='text'>
For people who want to manually extract the embedded environment so that
it can be manually packed into the final u-boot image, add a config opt
to force building of the envcrc tool.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For people who want to manually extract the embedded environment so that
it can be manually packed into the final u-boot image, add a config opt
to force building of the envcrc tool.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tools: make it possible to build tools unconfigured</title>
<updated>2011-06-22T18:03:13+00:00</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2011-06-19T08:27:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=2ad6e27dcdbd694de8e3823d2b52b250b1a59219'/>
<id>2ad6e27dcdbd694de8e3823d2b52b250b1a59219</id>
<content type='text'>
On Sunday, June 19, 2011 13:55:13 Ilya Yanok wrote:
&gt; On 18.06.2011 23:03, Mike Frysinger wrote:
&gt; &gt;&gt;  - tools/Makefile put common/env_embedded.o and envcrc.o to object list
&gt; &gt;&gt;
&gt; &gt;&gt; conditionally. This fixes errors during dependency generation.
&gt; &gt;
&gt; &gt; pretty sure this breaks board builds.  if the only thing this fixes is a
&gt;
&gt; I'm sorry but I can't see how this can break the builds. Could you
&gt; please be more specific? I've tried to build some boards, it actually
&gt; works...

i might be thinking of a different env_embedded situation.  a different
problem with your patch to tools/Makefile: you copied the same logic multiple
times which means more bitrot.

why dont you do something like:

&gt; &gt; harmless warning when generating dependency files, then i say ignore it.
&gt; &gt; after all, this is how it has always worked in the past and no one really
&gt; &gt; cared.
&gt;
&gt; Yep, they are harmless but they are not warnings but rather scary errors
&gt; actually. ;) I think it's better to fix them.

i guess my threshold for being scared is a bit higher :p
-mike
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On Sunday, June 19, 2011 13:55:13 Ilya Yanok wrote:
&gt; On 18.06.2011 23:03, Mike Frysinger wrote:
&gt; &gt;&gt;  - tools/Makefile put common/env_embedded.o and envcrc.o to object list
&gt; &gt;&gt;
&gt; &gt;&gt; conditionally. This fixes errors during dependency generation.
&gt; &gt;
&gt; &gt; pretty sure this breaks board builds.  if the only thing this fixes is a
&gt;
&gt; I'm sorry but I can't see how this can break the builds. Could you
&gt; please be more specific? I've tried to build some boards, it actually
&gt; works...

i might be thinking of a different env_embedded situation.  a different
problem with your patch to tools/Makefile: you copied the same logic multiple
times which means more bitrot.

why dont you do something like:

&gt; &gt; harmless warning when generating dependency files, then i say ignore it.
&gt; &gt; after all, this is how it has always worked in the past and no one really
&gt; &gt; cared.
&gt;
&gt; Yep, they are harmless but they are not warnings but rather scary errors
&gt; actually. ;) I think it's better to fix them.

i guess my threshold for being scared is a bit higher :p
-mike
</pre>
</div>
</content>
</entry>
<entry>
<title>ARM: drop unsupported 'trab' board</title>
<updated>2011-06-22T18:00:51+00:00</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2011-05-01T18:44:23+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=566e5cf451ae7e33e31bb62ae5b9b258e33f8609'/>
<id>566e5cf451ae7e33e31bb62ae5b9b258e33f8609</id>
<content type='text'>
The 'trab' board configuration is broken, and there is nobody who is
interested and willing to fix it.  Drop it.

This includes support for VFD displays which have always been used by
this board only.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The 'trab' board configuration is broken, and there is nobody who is
interested and willing to fix it.  Drop it.

This includes support for VFD displays which have always been used by
this board only.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Fix building tools alone with host compiler"</title>
<updated>2011-05-13T11:37:20+00:00</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2011-05-13T11:36:32+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=91081e01b10d64e99dc485e477e6ae3b1171e8ce'/>
<id>91081e01b10d64e99dc485e477e6ae3b1171e8ce</id>
<content type='text'>
This reverts commit bbc6353c740064c8e0741b772376a1a67a1c3f01.
It breaks building on many systems:
...
.../common/env_embedded.c:28:20: fatal error: config.h: No such file or directory
compilation terminated.
.../common/image.c:27:20: fatal error: common.h: No such file or directory
compilation terminated.
.../lib/crc32.c:12:20: fatal error: common.h: No such file or directory
compilation terminated.
.../lib/md5.c:28:22: fatal error: compiler.h: No such file or directory
compilation terminated.
.../lib/sha1.c:33:20: fatal error: common.h: No such file or directory
compilation terminated.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit bbc6353c740064c8e0741b772376a1a67a1c3f01.
It breaks building on many systems:
...
.../common/env_embedded.c:28:20: fatal error: config.h: No such file or directory
compilation terminated.
.../common/image.c:27:20: fatal error: common.h: No such file or directory
compilation terminated.
.../lib/crc32.c:12:20: fatal error: common.h: No such file or directory
compilation terminated.
.../lib/md5.c:28:22: fatal error: compiler.h: No such file or directory
compilation terminated.
.../lib/sha1.c:33:20: fatal error: common.h: No such file or directory
compilation terminated.
</pre>
</div>
</content>
</entry>
</feed>
