<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/common/cmd_bootm.c, branch v2013.07-rc1</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/common/cmd_bootm.c?h=v2013.07-rc1</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/common/cmd_bootm.c?h=v2013.07-rc1'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2013-06-04T20:06:31Z</updated>
<entry>
<title>image: Use fit_image_load() to load kernel</title>
<updated>2013-06-04T20:06:31Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2013-05-16T13:53:25Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4651800d51f7714c7e54c51af52a8ff5ee4461de'/>
<id>urn:sha1:4651800d51f7714c7e54c51af52a8ff5ee4461de</id>
<content type='text'>
Use the new common code to load a kernel. The functionality should not
change.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>sandbox: Adjust bootm command to work with sandbox</title>
<updated>2013-06-04T20:06:31Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2013-05-16T13:53:24Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=aed161e5fe86e75e732f22ba1f82711d8d257c5a'/>
<id>urn:sha1:aed161e5fe86e75e732f22ba1f82711d8d257c5a</id>
<content type='text'>
Use map_sysmem() when converting from addresses to pointers, so that
bootm can be used with sandbox.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>image: Use fit_image_load() to load FDT</title>
<updated>2013-06-04T20:06:31Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2013-05-16T13:53:23Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=53f375fa819c656eec32ac779456a612836ae006'/>
<id>urn:sha1:53f375fa819c656eec32ac779456a612836ae006</id>
<content type='text'>
Use the new common code to load a flat device tree. Also fix up a few casts
so that this code works with sandbox. Other than that the functionality
should not change.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>bootm: Avoid 256-byte overflow in fixup_silent_linux()</title>
<updated>2013-05-17T18:43:29Z</updated>
<author>
<name>Doug Anderson</name>
<email>dianders@chromium.org</email>
</author>
<published>2012-01-17T09:37:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a558ad71132fa6061ff950b9d3a12b0dad01b129'/>
<id>urn:sha1:a558ad71132fa6061ff950b9d3a12b0dad01b129</id>
<content type='text'>
This makes fixup_silent_linux() use malloc() to allocate its
working space, meaning that our maximum kernel command line
should only be limited by malloc().  Previously it was silently
overflowing the stack.

Note that nothing about this change increases the kernel's maximum
command line length.  If you have a command line that is &gt;256
bytes it's up to you to make sure that kernel can handle it.

Signed-off-by: Doug Anderson &lt;dianders@chromium.org&gt;
Acked-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
</entry>
<entry>
<title>arm: Refactor bootm to reduce #ifdefs</title>
<updated>2013-05-14T19:37:25Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2013-05-08T08:06:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c19d13b030e93c6b30f61743e940da8d4418e714'/>
<id>urn:sha1:c19d13b030e93c6b30f61743e940da8d4418e714</id>
<content type='text'>
With fewer #ifdefs the code is more readable and more of the code is
compiled for all boards. Add defines in the header file to control
what features are enabled, and then use if() instead of #ifdef.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>sandbox: image: Add support for booting images in sandbox</title>
<updated>2013-05-14T19:37:25Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2013-05-07T06:12:03Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=35e7b0f1790b5e620041348aec04c1e51d9d649b'/>
<id>urn:sha1:35e7b0f1790b5e620041348aec04c1e51d9d649b</id>
<content type='text'>
Much of the image code uses addresses as ulongs and pointers interchangeably,
casting between the two forms as needed.

This doesn't work with sandbox, which has a U-Boot RAM buffer which is
separate from the host machine's memory.

Adjust the cost so that translating from a U-Boot address to a pointer uses
map_sysmem(). This allows bootm to work correctly on sandbox.

Note that there are no exhaustive tests for this code on sandbox, so it is
possible that some dark corners remain.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Marek Vasut &lt;marex@denx.de&gt; (v1)
</content>
</entry>
<entry>
<title>image: Rename fit_image_check_hashes() to fit_image_verify()</title>
<updated>2013-05-14T19:37:25Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2013-05-07T06:11:57Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=b8da8366500f7a88f1f5117f22f713fe920bcdd9'/>
<id>urn:sha1:b8da8366500f7a88f1f5117f22f713fe920bcdd9</id>
<content type='text'>
This is the main entry point to the FIT image verification code. We will
be using it to handle image verification with signatures, so rename the
function.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Marek Vasut &lt;marex@denx.de&gt;
</content>
</entry>
<entry>
<title>image: Add support for Plan 9</title>
<updated>2013-03-27T19:30:11Z</updated>
<author>
<name>Steven Stallion</name>
<email>sstallion@gmail.com</email>
</author>
<published>2013-03-20T06:31:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=04d414090c71f986b54838f791430fabaa57ca7c'/>
<id>urn:sha1:04d414090c71f986b54838f791430fabaa57ca7c</id>
<content type='text'>
Signed-off-by: Steven Stallion &lt;sstallion@gmail.com&gt;
Cc: Tom Rini &lt;trini@ti.com&gt;
Reviewed-by: Tom Rini &lt;trini@ti.com&gt;
</content>
</entry>
<entry>
<title>Allow u-boot to be silent without forcing Linux to be</title>
<updated>2013-03-11T21:01:02Z</updated>
<author>
<name>Joe Hershberger</name>
<email>joe.hershberger@ni.com</email>
</author>
<published>2013-02-27T10:20:59Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=be2e5a09e63baaaec345c6d74744fa7401ba1ca0'/>
<id>urn:sha1:be2e5a09e63baaaec345c6d74744fa7401ba1ca0</id>
<content type='text'>
That's a bit presumptuous of you, u-boot!

Signed-off-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;
</content>
</entry>
<entry>
<title>bootm: fix conditional compilation for bootm ramdisk subcommand</title>
<updated>2013-03-04T19:19:56Z</updated>
<author>
<name>Daniel Schwierzeck</name>
<email>daniel.schwierzeck@gmail.com</email>
</author>
<published>2013-02-26T04:54:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=59af76d9ccccea43b9e07d78291bdf99e759c59a'/>
<id>urn:sha1:59af76d9ccccea43b9e07d78291bdf99e759c59a</id>
<content type='text'>
All code related to the bootm ramdisk subcommand is conditionally
enabled by CONFIG_SYS_BOOT_RAMDISK_HIGH except for the help message.
Replace the CONFIG_ARCH defines by CONFIG_SYS_BOOT_RAMDISK_HIGH
to fix this.

Signed-off-by: Daniel Schwierzeck &lt;daniel.schwierzeck@gmail.com&gt;
</content>
</entry>
</feed>
