<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/configs/devkit3250_defconfig, branch v2022.10</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/configs/devkit3250_defconfig?h=v2022.10</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/configs/devkit3250_defconfig?h=v2022.10'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2022-08-04T20:18:47Z</updated>
<entry>
<title>Convert CONFIG_SYS_MAX_FLASH_SECT to Kconfig</title>
<updated>2022-08-04T20:18:47Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-07-23T17:05:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1db251bdd5750e89bdb3c0707f51de0029cc0f0e'/>
<id>urn:sha1:1db251bdd5750e89bdb3c0707f51de0029cc0f0e</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_SYS_MAX_FLASH_SECT

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_USB_OHCI_NEW et al to Kconfig</title>
<updated>2022-07-07T13:29:08Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-06-25T15:02:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=cd6a45a41fb2c19884ac87afade87b4d53601929'/>
<id>urn:sha1:cd6a45a41fb2c19884ac87afade87b4d53601929</id>
<content type='text'>
This converts the following to Kconfig:
    CONFIG_SYS_OHCI_SWAP_REG_ACCESS
    CONFIG_SYS_USB_OHCI_CPU_INIT
    CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS
    CONFIG_SYS_USB_OHCI_SLOT_NAME
    CONFIG_USB_ATMEL
    CONFIG_USB_ATMEL_CLK_SEL_PLLB
    CONFIG_USB_ATMEL_CLK_SEL_UPLL
    CONFIG_USB_OHCI_LPC32XX
    CONFIG_USB_OHCI_NEW

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Rename CONFIG_SYS_AUTOLAOD to CONFIG_SYS_DISABLE_AUTOLOAD</title>
<updated>2022-06-28T21:11:49Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-06-14T02:57:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=bf904ea41883d7dacd77a1c257d10cc89a0ec394'/>
<id>urn:sha1:bf904ea41883d7dacd77a1c257d10cc89a0ec394</id>
<content type='text'>
The "autoload" environment variable is always checked with env_get_yesno
as it can be set to any form of no.  The default behavior of
env_get_yesno is to return -1 on variables that are not set, which acts
as true in general (we test for non-zero return).  To convert
CONFIG_SYS_AUTOLOAD to Kconfig, given that it was almost always used to
set autoload to no, first rename to CONFIG_SYS_DISABLE_AUTOLOAD for
consistency sake.  Then, make it so that if enabled we set autoload=0 in
the default environment.  Migrate all platforms which set
CONFIG_SYS_AUTOLOAD to non-true or that set autoload to false in their
default environment to using CONFIG_SYS_DISABLE_AUTOLOAD

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_SPL_STACK to Kconfig</title>
<updated>2022-06-06T16:09:27Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-05-26T17:13:21Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f113d7d3034672de7d074506a05a7055f1f0dcae'/>
<id>urn:sha1:f113d7d3034672de7d074506a05a7055f1f0dcae</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_SPL_STACK

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Migrate CUSTOM_SYS_INIT_SP_ADDR to Kconfig using system-constants.h</title>
<updated>2022-06-06T16:09:19Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-05-25T16:16:03Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=eaf6ea6a1dc10d49cdcbcad0f8b0abb6c1eb1db1'/>
<id>urn:sha1:eaf6ea6a1dc10d49cdcbcad0f8b0abb6c1eb1db1</id>
<content type='text'>
- Make all users of CUSTOM_SYS_INIT_SP_ADDR reference SYS_INIT_SP_ADDR
- Introduce HAS_CUSTOM_SYS_INIT_SP_ADDR to allow for setting the stack
  pointer directly, otherwise we use the common calculation.
- On some platforms that were using the standard calculation but did not
  set CONFIG_SYS_INIT_RAM_SIZE / CONFIG_SYS_INIT_RAM_ADDR, set them.
- On a small number of platforms that were not subtracting
  GENERATED_GBL_DATA_SIZE do so now via the standard calculation.
- CONFIG_SYS_INIT_SP_OFFSET is now widely unused, so remove it from most
  board config header files.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_SPL_BSS_MAX_SIZE et al to Kconfig</title>
<updated>2022-06-06T16:09:10Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-05-19T19:09:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9b5f9aeb3b48dbc059272168635a397ea5096a31'/>
<id>urn:sha1:9b5f9aeb3b48dbc059272168635a397ea5096a31</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_SPL_BSS_MAX_SIZE
   CONFIG_SPL_MAX_FOOTPRINT

Note that the da850evm platforms were violating the "only use one" rule
here, and so now hard-code their BSS limit.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_SPL_PAD_TO et al to Kconfig</title>
<updated>2022-06-06T16:09:06Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-05-16T21:20:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ca8a329a1b7f3195ee56fee4c0906ee883383dfa'/>
<id>urn:sha1:ca8a329a1b7f3195ee56fee4c0906ee883383dfa</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_SPL_PAD_TO
   CONFIG_SPL_MAX_SIZE
   CONFIG_TPL_PAD_TO
   CONFIG_TPL_MAX_SIZE

Note that we need to make TPL_MAX_SIZE be hex, and so move and convert the
existing places.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_SPL_NAND_RAW_ONLY et al to Kconfig</title>
<updated>2022-06-06T16:09:00Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-05-13T16:46:23Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=bab1b35c617a339da8f859bfea90ec304859b354'/>
<id>urn:sha1:bab1b35c617a339da8f859bfea90ec304859b354</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_SPL_NAND_RAW_ONLY
   CONFIG_SPL_NAND_SOFTECC

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>Kconfig: Change SYS_MALLOC_F_LEN default to 0x2000</title>
<updated>2022-04-20T15:14:39Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-04-07T16:33:23Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e056892422386be3bc00d2b243570b558ac770a1'/>
<id>urn:sha1:e056892422386be3bc00d2b243570b558ac770a1</id>
<content type='text'>
The most commonly used value today is 0x2000 and not 0x400.  Rework the
Kconfig logic to use this more frequently used value as the default.

Cc: Andrew F. Davis &lt;afd@ti.com&gt;
Cc: Alex Nemirovsky &lt;alex.nemirovsky@cortina-access.com&gt;
Cc: Alexey Brodkin &lt;abrodkin@synopsys.com&gt;
Cc: Alison Wang &lt;alison.wang@nxp.com&gt;
Cc: Anastasiia Lukianenko &lt;anastasiia_lukianenko@epam.com&gt;
Cc: Andes &lt;uboot@andestech.com&gt;
Cc: Andre Przywara &lt;andre.przywara@arm.com&gt;
Cc: Bharat Gooty &lt;bharat.gooty@broadcom.com&gt;
Cc: David Lechner &lt;david@lechnology.com&gt;
Cc: Dzmitry Sankouski &lt;dsankouski@gmail.com&gt;
Cc: Enric Balletbo i Serra &lt;eballetbo@gmail.com&gt;
Cc: Eugeniy Paltsev &lt;paltsev@synopsys.com&gt;
Cc: Fabio Estevam &lt;festevam@gmail.com&gt;
Cc: Gerald Kerma &lt;dreagle@doukki.net&gt;
Cc: Gregory CLEMENT &lt;gregory.clement@bootlin.com&gt;
Cc: Holger Brunck &lt;holger.brunck@hitachienergy.com&gt;
Cc: Jaehoon Chung &lt;jh80.chung@samsung.com&gt;
Cc: Jassi Brar &lt;jaswinder.singh@linaro.org&gt;
Cc: Kristian Amlie &lt;kristian.amlie@northern.tech&gt;
Cc: Krzysztof Kozlowski &lt;krzk@kernel.org&gt;
Cc: Liviu Dudau &lt;liviu.dudau@foss.arm.com&gt;
Cc: Luka Perkov &lt;luka.perkov@sartura.hr&gt;
Cc: Lukasz Majewski &lt;lukma@denx.de&gt;
Cc: Marek Vasut &lt;marex@denx.de&gt;
Cc: Masami Hiramatsu &lt;masami.hiramatsu@linaro.org&gt;
Cc: Matthias Brugger &lt;mbrugger@suse.com&gt;
Cc: Max Filippov &lt;jcmvbkbc@gmail.com&gt;
Cc: Michael Walle &lt;michael@walle.cc&gt;
Cc: Michal Simek &lt;michal.simek@xilinx.com&gt;
Cc: Minkyu Kang &lt;mk7.kang@samsung.com&gt;
Cc: Nikita Kiryanov &lt;nikita@compulab.co.il&gt;
Cc: Nobuhiro Iwamatsu &lt;nobuhiro.iwamatsu.yj@renesas.com&gt;
Cc: Oleksandr Andrushchenko &lt;oleksandr_andrushchenko@epam.com&gt;
Cc: Otavio Salvador &lt;otavio@ossystems.com.br&gt;
Cc: Patrice Chotard &lt;patrice.chotard@foss.st.com&gt;
Cc: Paul Burton &lt;paul.burton@mips.com&gt;
Cc: Paul Kocialkowski &lt;contact@paulk.fr&gt;
Cc: Priyanka Jain &lt;priyanka.jain@nxp.com&gt;
Cc: Rajesh Bhagat &lt;rajesh.bhagat@nxp.com&gt;
Cc: Rayagonda Kokatanur &lt;rayagonda.kokatanur@broadcom.com&gt;
Cc: Sergey Temerkhanov &lt;s.temerkhanov@gmail.com&gt;
Cc: Simon Glass &lt;sjg@chromium.org&gt;
Cc: Stefan Bosch &lt;stefan_b@posteo.net&gt;
Cc: Stephan Gerhold &lt;stephan@gerhold.net&gt;
Cc: Tetsuyuki Kobayashi &lt;koba@kmckk.co.jp&gt;
Cc: Thomas Chou &lt;thomas@wytron.com.tw&gt;
Cc: Thomas Fitzsimmons &lt;fitzsim@fitzsim.org&gt;
Cc: Thomas Weber &lt;weber@corscience.de&gt;
Cc: Tony Dinh &lt;mibodhi@gmail.com&gt;
Cc: Trevor Woerner &lt;twoerner@gmail.com&gt;
Cc: Vitaly Andrianov &lt;vitalya@ti.com&gt;
Cc: Vladimir Zapolskiy &lt;vz@mleia.com&gt;
Cc: liuhao &lt;liuhao@phytium.com.cn&gt;
Cc: lixinde &lt;lixinde@phytium.com.cn&gt;
Cc: shuyiqi &lt;shuyiqi@phytium.com.cn&gt;
Cc: weichangzheng &lt;weichangzheng@phytium.com.cn&gt;
Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
Reviewed-by: Thomas Chou &lt;thomas@wytron.com.tw&gt;
Reviewed-by: Masami Hiramatsu &lt;masami.hiramatsu@linaro.org&gt;
Reviewed-by: Tony Dinh &lt;mibodhi@gmail.com&gt;
Reviewed-by: Patrice Chotard &lt;patrice.chotard@foss.st.com&gt;
Reviewed-by: Kristian Amlie &lt;kristian.amlie@northern.tech&gt;
</content>
</entry>
<entry>
<title>Convert CONFIG_RMII to Kconfig</title>
<updated>2022-03-25T12:01:15Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2022-03-18T12:38:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=03d14ccdf6c4ae56e3351ca828d9b1ac6467aea5'/>
<id>urn:sha1:03d14ccdf6c4ae56e3351ca828d9b1ac6467aea5</id>
<content type='text'>
This converts the following to Kconfig:
   CONFIG_RMII

Cc: Ramon Fried &lt;rfried.dev@gmail.com&gt;
Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
</feed>
