<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/u-boot/include/configs/P2041RDB.h, 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>2019-05-26T18:40:50Z</updated>
<entry>
<title>configs: Migrate CONFIG_FMAN_ENET and some related options to Kconfig</title>
<updated>2019-05-26T18:40:50Z</updated>
<author>
<name>Tom Rini</name>
</author>
<published>2019-05-12T11:59:12Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=cc1e98b559e46630c3421a7762d02a58e5480926'/>
<id>urn:sha1:cc1e98b559e46630c3421a7762d02a58e5480926</id>
<content type='text'>
Move the main symbol for Freescale Fman Ethernet controller option to
Kconfig.  Also migrate the CONFIG_SYS_QE_FMAN_FW_IN_xxx macros and
rename the SPIFLASH one to follow the same format as all of the others.
To do this fully we need to migrate CONFIG_QC, do so.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_ENV_SPI_* to Kconfig</title>
<updated>2019-03-25T21:36:59Z</updated>
<author>
<name>Patrick Delaunay</name>
</author>
<published>2019-02-27T14:20:38Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=abe66b1b5decf9cc2fb5daad42c9e870e5b99b67'/>
<id>urn:sha1:abe66b1b5decf9cc2fb5daad42c9e870e5b99b67</id>
<content type='text'>
This converts the following to Kconfig:
  CONFIG_ENV_SPI_BUS
  CONFIG_ENV_SPI_CS
  CONFIG_ENV_SPI_MAX_HZ
  CONFIG_ENV_SPI_MODE

Most of time these value are not needed, CONFIG_SF_DEFAULT
with same value is used, so I introduced CONFIG_USE_ENV_SPI_*
to force the associated value for the environment.

Signed-off-by: Patrick Delaunay &lt;patrick.delaunay@st.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_SF_DEFAULT_* to Kconfig</title>
<updated>2019-03-25T21:36:53Z</updated>
<author>
<name>Patrick Delaunay</name>
</author>
<published>2019-02-27T14:20:36Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=14453fbfadc2f98ca35d6033140466c7a4b4947a'/>
<id>urn:sha1:14453fbfadc2f98ca35d6033140466c7a4b4947a</id>
<content type='text'>
This converts the following to Kconfig:
  CONFIG_SF_DEFAULT_BUS
  CONFIG_SF_DEFAULT_CS
  CONFIG_SF_DEFAULT_MODE
  CONFIG_SF_DEFAULT_SPEED

I use moveconfig script and then manual check on generated u-boot.cfg
to solve the remaining issue.

Signed-off-by: Patrick Delaunay &lt;patrick.delaunay@st.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_FLASH_CFI_DRIVER et al to Kconfig</title>
<updated>2018-10-19T23:19:50Z</updated>
<author>
<name>Adam Ford</name>
</author>
<published>2018-10-14T20:10:50Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=2fe88d452268d61b5ca9cb0b1dda2974cc43faeb'/>
<id>urn:sha1:2fe88d452268d61b5ca9cb0b1dda2974cc43faeb</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_FLASH_CFI_DRIVER
   CONFIG_SYS_FLASH_USE_BUFFER_WRITE
   CONFIG_FLASH_CFI_MTD
   CONFIG_SYS_FLASH_PROTECTION
   CONFIG_SYS_FLASH_CFI

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
[trini: Re-migrate]
Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>configs: drop CONFIG_SYS_EXTRA_ENV_RELOC</title>
<updated>2018-10-06T13:04:18Z</updated>
<author>
<name>Simon Goldschmidt</name>
</author>
<published>2018-09-27T10:38:34Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=6c6add602970ee6b542b38ad6daf4f8e1e9f39d4'/>
<id>urn:sha1:6c6add602970ee6b542b38ad6daf4f8e1e9f39d4</id>
<content type='text'>
Instead of manually specifying CONFIG_SYS_EXTRA_ENV_RELOC
for every board that needs it, it shouldn't hurt to let
initr_reloc_global_data() always relocate gd-&gt;env_addr
unless we know this pointer is outside the initial binary.

To achieve this, the relocation is omitted if
CONFIG_ENV_ADDR is defined (and ENV_IS_EMBEDDED is not).

Signed-off-by: Simon Goldschmidt &lt;simon.k.r.goldschmidt@gmail.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_MISC_INIT_R to Kconfig</title>
<updated>2018-08-17T17:04:00Z</updated>
<author>
<name>Adam Ford</name>
</author>
<published>2018-07-29T18:13:29Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=8ccf98b1cfd2811e3121c719e294bdd8ebab1c45'/>
<id>urn:sha1:8ccf98b1cfd2811e3121c719e294bdd8ebab1c45</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_MISC_INIT_R

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
[trini: Update the defaults logic slightly]
Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_MII et al to Kconfig</title>
<updated>2018-08-17T17:03:54Z</updated>
<author>
<name>Adam Ford</name>
</author>
<published>2018-07-21T04:03:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=d7869b2183d2b786e5410b97a5a6b2e630e7825e'/>
<id>urn:sha1:d7869b2183d2b786e5410b97a5a6b2e630e7825e</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_MII
   CONFIG_DRIVER_TI_EMAC

Signed-off-by: Adam Ford &lt;aford173@gmail.com&gt;
Acked-by: Jagan Teki &lt;jagan@amarulasolutions.com&gt;
Acked-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;
</content>
</entry>
<entry>
<title>cmd: Kconfig: Move CONFIG_MP to Kconfig</title>
<updated>2018-07-10T20:55:59Z</updated>
<author>
<name>Siva Durga Prasad Paladugu</name>
</author>
<published>2018-06-19T10:24:23Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=0fd2290cfc3b5c907783772ded82a8dfad4eb0e8'/>
<id>urn:sha1:0fd2290cfc3b5c907783772ded82a8dfad4eb0e8</id>
<content type='text'>
This patch moves CONFIG_MP to Kconfig

Signed-off-by: Siva Durga Prasad Paladugu &lt;sivadur@xilinx.com&gt;
Signed-off-by: Michal Simek &lt;michal.simek@xilinx.com&gt;
</content>
</entry>
<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>treewide: Migrate CONFIG_FSL_ESDHC to Kconfig</title>
<updated>2018-04-08T22:31:05Z</updated>
<author>
<name>Mario Six</name>
</author>
<published>2018-03-28T12:38:19Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=07dea2e737f78ee70e81c27d976811f0e9fdbad8'/>
<id>urn:sha1:07dea2e737f78ee70e81c27d976811f0e9fdbad8</id>
<content type='text'>
Migrate the CONFIG_FSL_ESDHC option to Kconfig.

Signed-off-by: Mario Six &lt;mario.six@gdsys.cc&gt;
</content>
</entry>
</feed>
