<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/u-boot/arch/m68k/lib, branch master</title>
<subtitle>Broadcom-s U-Boot</subtitle>
<id>https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/'/>
<updated>2018-05-07T13:34:12Z</updated>
<entry>
<title>SPDX: Convert all of our single license tags to Linux Kernel style</title>
<updated>2018-05-07T13:34:12Z</updated>
<author>
<name>Tom Rini</name>
</author>
<published>2018-05-06T21:58:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=83d290c56fab2d38cd1ab4c4cc7099559c1d5046'/>
<id>urn:sha1:83d290c56fab2d38cd1ab4c4cc7099559c1d5046</id>
<content type='text'>
When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borrow from.  So we picked the
area of the file that usually had a full license text and replaced it
with an appropriate SPDX-License-Identifier: entry.  Since then, the
Linux Kernel has adopted SPDX tags and they place it as the very first
line in a file (except where shebangs are used, then it's second line)
and with slightly different comment styles than us.

In part due to community overlap, in part due to better tag visibility
and in part for other minor reasons, switch over to that style.

This commit changes all instances where we have a single declared
license in the tag as both the before and after are identical in tag
contents.  There's also a few places where I found we did not have a tag
and have introduced one.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>m68k: fix cache.c for Coldfire V4E</title>
<updated>2017-08-17T23:26:17Z</updated>
<author>
<name>Angelo Dureghello</name>
</author>
<published>2017-05-31T19:32:48Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=c533cfcd93ba6c8b30b3e10b5abf41fda90f9cf8'/>
<id>urn:sha1:c533cfcd93ba6c8b30b3e10b5abf41fda90f9cf8</id>
<content type='text'>
- fix cache.c CONFIG_CF_V4e to CONFIG_CF_V4E
- fix cache.c to properly enable/disable cache for V4E

Signed-off-by: Angelo Dureghello &lt;angelo@sysam.it&gt;
</content>
</entry>
<entry>
<title>env: Rename getenv/_f() to env_get()</title>
<updated>2017-08-16T12:30:24Z</updated>
<author>
<name>Simon Glass</name>
</author>
<published>2017-08-03T18:22:12Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=00caae6d47645e68d6e5277aceb69592b49381a6'/>
<id>urn:sha1:00caae6d47645e68d6e5277aceb69592b49381a6</id>
<content type='text'>
We are now using an env_ prefix for environment functions. Rename these
two functions for consistency. Also add function comments in common.h.

Quite a few places use getenv() in a condition context, provoking a
warning from checkpatch. These are fixed up in this patch also.

Suggested-by: Wolfgang Denk &lt;wd@denx.de&gt;
Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>arch, board: squash lines for immediate return</title>
<updated>2016-09-23T21:53:53Z</updated>
<author>
<name>Masahiro Yamada</name>
</author>
<published>2016-09-06T13:17:38Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4'/>
<id>urn:sha1:63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4</id>
<content type='text'>
Remove unneeded variables and assignments.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Reviewed-by: Minkyu Kang &lt;mk7.kang@samsung.com&gt;
Reviewed-by: Angelo Dureghello &lt;angelo@sysam.it&gt;
</content>
</entry>
<entry>
<title>m68k: add private libgcc</title>
<updated>2015-12-14T01:22:00Z</updated>
<author>
<name>angelo@sysam.it</name>
</author>
<published>2015-12-06T16:47:59Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=6463fd8f952df9e4bb448f0aff5d16873f8dfdb2'/>
<id>urn:sha1:6463fd8f952df9e4bb448f0aff5d16873f8dfdb2</id>
<content type='text'>
Add private libgcc

Signed-off-by: Angelo Dureghello &lt;angelo@sysam.it&gt;
</content>
</entry>
<entry>
<title>m68k: cache: add an empty stub functions for invalidate/flush dcache</title>
<updated>2015-08-13T00:47:46Z</updated>
<author>
<name>Wu, Josh</name>
</author>
<published>2015-07-27T03:40:15Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=4dbe4b168bd3b315930bf65bb6c95eac10170026'/>
<id>urn:sha1:4dbe4b168bd3b315930bf65bb6c95eac10170026</id>
<content type='text'>
Since some driver like ohci, lcd used dcache functions. But m68k don't
implement the invalidate_dcache_range()/flush_dcache_range() functions.

To avoid compiling errors this patch adds an weak empty stub function
for all m68k cpu.

Also each cpu can implement its own implementation. If not implemented
then by default is using an empty function.

Signed-off-by: Josh Wu &lt;josh.wu@atmel.com&gt;
Acked-by: Angelo Dureghello &lt;angelo@sysam.it&gt;
</content>
</entry>
<entry>
<title>m68k: remove arch/m68k/lib/board.c</title>
<updated>2015-03-28T13:03:08Z</updated>
<author>
<name>Masahiro Yamada</name>
</author>
<published>2015-03-19T10:42:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=6eb6f132e6dbeeb0ce41202ba42e0496a5d2438b'/>
<id>urn:sha1:6eb6f132e6dbeeb0ce41202ba42e0496a5d2438b</id>
<content type='text'>
All the M68000 boards have switched to Generic Board.
This file is no longer necessary.

Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Cc: Huan Wang &lt;alison.wang@freescale.com&gt;
Cc: Angelo Dureghello &lt;angelo@sysam.it&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>m68k: add generic-board support</title>
<updated>2015-03-06T01:13:21Z</updated>
<author>
<name>angelo@sysam.it</name>
</author>
<published>2015-02-12T00:40:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=e310b93ec1f7db77c1bb91841f7b73d47f43b561'/>
<id>urn:sha1:e310b93ec1f7db77c1bb91841f7b73d47f43b561</id>
<content type='text'>
Add generic-board support for the m68k architecture.

Signed-off-by: Angelo Dureghello &lt;angelo@sysam.it&gt;
</content>
</entry>
<entry>
<title>m68k: Remove CONFIG_CMD_BEDBUG related code</title>
<updated>2014-06-19T15:19:06Z</updated>
<author>
<name>Vasili Galka</name>
</author>
<published>2014-06-15T15:41:16Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=7fae9e249367172d225b7fc9e62d9f3e96fcd8e5'/>
<id>urn:sha1:7fae9e249367172d225b7fc9e62d9f3e96fcd8e5</id>
<content type='text'>
This flag does not compile on m68k since 2003 (8bde7f7) when a
required "cmd_bedbug.h" header was removed. Eleven years passed,
lets clean up a little...

Signed-off-by: Vasili Galka &lt;vvv444@gmail.com&gt;
</content>
</entry>
<entry>
<title>m68k: Fix warnings with gcc 4.6</title>
<updated>2014-06-11T20:27:05Z</updated>
<author>
<name>Simon Glass</name>
</author>
<published>2014-06-08T04:07:58Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=ddc94378db9fe0c9076512768b3576e0fdc580dd'/>
<id>urn:sha1:ddc94378db9fe0c9076512768b3576e0fdc580dd</id>
<content type='text'>
Most of the warnings seem to be related to using 'int' for size_t. Change
this and fix up the remaining warnings and problems. For bootm, the warning
was masked by others, and there is an actual bug in the code.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
</feed>
