<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/common/Kconfig, branch v2023.10</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/common/Kconfig?h=v2023.10</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/common/Kconfig?h=v2023.10'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2023-08-07T17:41:44Z</updated>
<entry>
<title>common: Drop duplicate space in SPL_BMP description</title>
<updated>2023-08-07T17:41:44Z</updated>
<author>
<name>Marek Vasut</name>
<email>marex@denx.de</email>
</author>
<published>2023-07-29T13:34:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=fa96774d2925443363aa2a5da8a12ced28e158a1'/>
<id>urn:sha1:fa96774d2925443363aa2a5da8a12ced28e158a1</id>
<content type='text'>
Drop duplicate space in Kconfig symbol description.

Signed-off-by: Marek Vasut &lt;marex@denx.de&gt;
</content>
</entry>
<entry>
<title>bloblist: Enforce CRC32</title>
<updated>2023-08-07T17:41:44Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2023-08-07T16:32:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a536b2fdb10c6eb678fda6f239eb16414caf0496'/>
<id>urn:sha1:a536b2fdb10c6eb678fda6f239eb16414caf0496</id>
<content type='text'>
In the common bloblist code we call crc32 to get a checksum for the
data.  Ensure we will have the CRC32 code via select.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>console: kconfig: Drop the redundant VIDEO dependency</title>
<updated>2023-08-02T08:31:58Z</updated>
<author>
<name>Bin Meng</name>
<email>bmeng@tinylab.org</email>
</author>
<published>2023-07-23T04:40:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=142276ce51ba97eade1b70c7c7c91e0ada428284'/>
<id>urn:sha1:142276ce51ba97eade1b70c7c7c91e0ada428284</id>
<content type='text'>
The VIDEO dependency is described twice in CONSOLE_MUX.

Signed-off-by: Bin Meng &lt;bmeng@tinylab.org&gt;
Reviewed-by: Heinrich Schuchardt &lt;xypron.glpk@gmx.de&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>common: Kconfig: Fix CMD_BMP/BMP dependency</title>
<updated>2023-07-21T19:32:12Z</updated>
<author>
<name>Samuel Dionne-Riel</name>
<email>samuel@dionne-riel.com</email>
</author>
<published>2023-07-18T08:57:36Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=373991d6939b01c47b352b1f620ef772419a9cf4'/>
<id>urn:sha1:373991d6939b01c47b352b1f620ef772419a9cf4</id>
<content type='text'>
Using `default y` will not select BMP when CMD_BMP has been enabled, if
it was already configured.

By using `select`, if `CMD_BMP` is turned on, it will force the presence
of `BMP`.

Fixes: 072b0e16c4 ("common: Kconfig: Add BMP configs")
Signed-off-by: Samuel Dionne-Riel &lt;samuel@dionne-riel.com&gt;
Signed-off-by: Nikhil M Jain &lt;n-jain1@ti.com&gt;
</content>
</entry>
<entry>
<title>android_ab: Try backup booloader_message</title>
<updated>2023-07-17T20:20:08Z</updated>
<author>
<name>Joshua Watt</name>
<email>jpewhacker@gmail.com</email>
</author>
<published>2023-07-03T15:07:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=3430f24bc69d61eadf5b09999d58c468ac67c9fe'/>
<id>urn:sha1:3430f24bc69d61eadf5b09999d58c468ac67c9fe</id>
<content type='text'>
Some devices keep 2 copies of the bootloader_message in the misc
partition and write each in sequence when updating. This ensures that
there is always one valid copy of the bootloader_message. Teach u-boot
to optionally try a backup bootloader_message from a specified offset if
the primary one fails its CRC check.

Signed-off-by: Joshua Watt &lt;JPEWhacker@gmail.com&gt;
</content>
</entry>
<entry>
<title>common: Kconfig: SYS_CONSOLE_ENV_OVERWRITE depends on SYS_CONSOLE_IS_IN_ENV</title>
<updated>2023-07-07T20:25:56Z</updated>
<author>
<name>Ying Sun</name>
<email>sunying@nj.iscas.ac.cn</email>
</author>
<published>2023-06-25T08:52:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=29f925d8f9c7d0e1aea340e537e2423f659f851d'/>
<id>urn:sha1:29f925d8f9c7d0e1aea340e537e2423f659f851d</id>
<content type='text'>
CONFIG_SYS_CONSOLE_ENV_OVERWRITE is implemented in common/console.c
when "#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)" is met.

It is recommended to add dependency constraints to its definition.

Suggested-by: Yanjie Ren &lt;renyanjie01@gmail.com&gt;
Signed-off-by: Ying Sun &lt;sunying@nj.iscas.ac.cn&gt;
</content>
</entry>
<entry>
<title>Merge tag 'video-for-v2023.07-rc2' of https://source.denx.de/u-boot/custodians/u-boot-video</title>
<updated>2023-05-05T13:36:08Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2023-05-05T13:36:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ab75996ba49c140c529f14b5c40d0d16430feefb'/>
<id>urn:sha1:ab75996ba49c140c529f14b5c40d0d16430feefb</id>
<content type='text'>
 - enable video support in SPL
 - support splash screen for TI am62x
 - replace #ifdef and #if with if's in bmp/splash
 - add lm3533 backlight driver
 - add Solomon SSD2825 DSI/LVDS bridge driver
 - add Renesas R61307 and R69328 MIPI DSI panel drivers
 - add tegra DC based PWM backlight driver
 - add generic endeavoru (HTC One X) panel driver
</content>
</entry>
<entry>
<title>common/Kconfig: fix comments syntax error</title>
<updated>2023-05-03T22:30:46Z</updated>
<author>
<name>Hugo Villeneuve</name>
<email>hvilleneuve@dimonoff.com</email>
</author>
<published>2023-04-25T18:34:45Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a7989a7cc2ee8dd61805dff62fac80659daf5c66'/>
<id>urn:sha1:a7989a7cc2ee8dd61805dff62fac80659daf5c66</id>
<content type='text'>
Fix comments error in EVENT_DEBUG description:
    this get usefui -&gt; this to get useful

Signed-off-by: Hugo Villeneuve &lt;hvilleneuve@dimonoff.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>imx: support i.MX8QM DMSSE20 a1 board</title>
<updated>2023-05-02T08:57:32Z</updated>
<author>
<name>Oliver Graute</name>
<email>oliver.graute@kococonnector.com</email>
</author>
<published>2023-04-21T10:11:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=3bc6257e8048bccec95b369fd3c946ac5d8ee9ea'/>
<id>urn:sha1:3bc6257e8048bccec95b369fd3c946ac5d8ee9ea</id>
<content type='text'>
Add i.MX8QM DMSSE20 a1 board support

U-Boot 2023.04-00030-g7be2f547b2 (Apr 21 2023 - 11:11:43 +0200)

Model: Advantech iMX8QM DMSSE20
Board: DMS-SE20A1 8GB
Build: SCFW 549b1e18, SECO-FW c9de51c0, ATF 5782363
Boot:  USB
DRAM:  8 GiB
Core:  100 devices, 19 uclasses, devicetree: separate
MMC:   FSL_SDHC: 0, FSL_SDHC: 1, FSL_SDHC: 2
Loading Environment from MMC... OK
In:    serial@5a060000
Out:   serial@5a060000
Err:   serial@5a060000
Net:   eth0: ethernet@5b040000
Warning: ethernet@5b050000 (eth1) using random MAC address - 32:05:0c:f9:5e:10
, eth1: ethernet@5b050000
Hit any key to stop autoboot:  0

Signed-off-by: Oliver Graute &lt;oliver.graute@kococonnector.com&gt;
</content>
</entry>
<entry>
<title>common: Kconfig: Add BMP configs</title>
<updated>2023-04-24T19:37:45Z</updated>
<author>
<name>Nikhil M Jain</name>
<email>n-jain1@ti.com</email>
</author>
<published>2023-04-20T12:11:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=072b0e16c482114d242580dd7a3197db5966705f'/>
<id>urn:sha1:072b0e16c482114d242580dd7a3197db5966705f</id>
<content type='text'>
Add CONFIG_BMP and CONFIG_SPL_BMP which enable displaying bmp images at
u-boot proper and SPL.

Signed-off-by: Nikhil M Jain &lt;n-jain1@ti.com&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
Reviewed-by: Devarsh Thakkar &lt;devarsht@ti.com&gt;
</content>
</entry>
</feed>
