<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>4700eff16121332601631d377187c7ae4a505051 - UPSTREAM: lib: rational: copy the rational fraction lib routines from Linux</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#4700eff16121332601631d377187c7ae4a505051</link>
        <description>UPSTREAM: lib: rational: copy the rational fraction lib routines from LinuxCopy the best rational approximation calculation routines from Linux.Typical usecase for these routines is to calculate the M/N dividervalues for PLLs to reach a specific clock rate.This is based on linux kernel commit:&quot;lib/math/rational.c: fix possible incorrect result from rationalfractions helper&quot;(sha1: 323dd2c3ed0641f49e89b4e420f9eef5d3d5a881)Signed-off-by: Tero Kristo &lt;t-kristo@ti.com&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;Signed-off-by: Tero Kristo &lt;kristo@kernel.org&gt;(cherry picked from commit 7d0f3fbb93cfebd7b5dc5635166e48ab998c4f82)Change-Id: Ia0b04dcde2e0ed208ae10f2f3ed8648564bd5220Signed-off-by: Wyon Bi &lt;bivvy.bi@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Fri, 11 Jun 2021 08:45:02 +0000</pubDate>
        <dc:creator>Tero Kristo &lt;t-kristo@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>4425319b6748b4e9d21ac7fac0569fcbb8851c5e - lib: Add CONFIG_SPL_LZMA option</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#4425319b6748b4e9d21ac7fac0569fcbb8851c5e</link>
        <description>lib: Add CONFIG_SPL_LZMA optionSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: I258a738157ecbc4f754098c9faf6aface57847be

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Thu, 13 Jan 2022 03:16:56 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>b11db21efa2d08fcc73fe38d4ddb3faa0465a722 - Kconfig: add depends on for SPL options</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#b11db21efa2d08fcc73fe38d4ddb3faa0465a722</link>
        <description>Kconfig: add depends on for SPL optionsSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: I066114702ef6442434969096cdc4e4156887c164

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Wed, 12 Jan 2022 02:47:21 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>f93178ae1e66403ffee11e75d56a89659c32e108 - lib: add libxbc support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#f93178ae1e66403ffee11e75d56a89659c32e108</link>
        <description>lib: add libxbc supportPick from google U-Boot commit.Signed-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;Change-Id: I5241db252789249cfc72b1017065c9e3ed3fc695

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Mon, 06 Sep 2021 06:46:38 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>2227535d492f86d17eadea9543cd39061b66f194 - lib: add sha512 support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#2227535d492f86d17eadea9543cd39061b66f194</link>
        <description>lib: add sha512 supportPorting from: https://tls.mbed.org/sha-512-source-code.Update and follow sha1/256.c function name and coding style.Change-Id: Idbe70b71e54e0e56a88aac5ec306c75fb2237f4fSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Thu, 11 Jul 2019 07:45:33 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>28386b6dc69ba6ece0345798f08ef0aed9fb0691 - UPSTREAM: lib: Add hexdump</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#28386b6dc69ba6ece0345798f08ef0aed9fb0691</link>
        <description>UPSTREAM: lib: Add hexdumpOften during debugging session it&apos;s very interesting to seewhat data we were dealing with. For example what we write or readto/from memory or peripherals.This change introduces functions that allow to dump binarydata with one simple function invocation like:-------------------&gt;8----------------print_hex_dump_bytes(&quot;&quot;, DUMP_PREFIX_OFFSET, buf, len);-------------------&gt;8----------------which gives us the following:-------------------&gt;8----------------00000000: f2 b7 c9 88 62 61 75 64 72 61 74 65 3d 31 31 35  ....baudrate=11500000010: 32 30 30 00 62 6f 6f 74 61 72 67 73 3d 63 6f 6e  200.bootargs=con00000020: 73 6f 6c 65 3d 74 74 79 53 33 2c 31 31 35 32 30  sole=ttyS3,1152000000030: 30 6e 38 00 62 6f 6f 74 64 65 6c 61 79 3d 33 00  0n8.bootdelay=3.00000040: 62 6f 6f 74 66 69 6c 65 3d 75 49 6d 61 67 65 00  bootfile=uImage.00000050: 66 64 74 63 6f 6e 74 72 6f 6c 61 64 64 72 3d 39  fdtcontroladdr=900000060: 66 66 62 31 62 61 30 00 6c 6f 61 64 61 64 64 72  ffb1ba0.loadaddr00000070: 3d 30 78 38 32 30 30 30 30 30 30 00 73 74 64 65  =0x82000000.stde00000080: 72 72 3d 73 65 72 69 61 6c 30 40 65 30 30 32 32  rr=serial0@e002200000090: 30 30 30 00 73 74 64 69 6e 3d 73 65 72 69 61 6c  000.stdin=serial000000a0: 30 40 65 30 30 32 32 30 30 30 00 73 74 64 6f 75  0@e0022000.stdou000000b0: 74 3d 73 65 72 69 61 6c 30 40 65 30 30 32 32 30  t=serial0@e00220000000c0: 30 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00  00.................-------------------&gt;8----------------Source of hexdump.c was copied from Linux kernel v4.7-rc2.Signed-off-by: Alexey Brodkin &lt;abrodkin@synopsys.com&gt;Cc: Anatolij Gustschin &lt;agust@denx.de&gt;Cc: Mario Six &lt;mario.six@gdsys.cc&gt;Cc: Simon Glass &lt;sjg@chromium.org&gt;Cc: Tom Rini &lt;trini@konsulko.com&gt;Cc: Stefan Roese &lt;sr@denx.de&gt;Change-Id: I038b41f51d45d1b853da499578bf8ef384a63730Signed-off-by: Jon Lin &lt;jon.lin@rock-chips.com&gt;(cherry picked from commit f8c987f8f127f867d96ca74bcd1fcb11d8265b67)

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Tue, 05 Jun 2018 14:17:57 +0000</pubDate>
        <dc:creator>Alexey Brodkin &lt;Alexey.Brodkin@synopsys.com&gt;</dc:creator>
    </item>
<item>
        <title>483d0493217503c55708e8f9261c25d700fb87cb - lib: introduce bidram for GD board bi_dram[] memory management</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#483d0493217503c55708e8f9261c25d700fb87cb</link>
        <description>lib: introduce bidram for GD board bi_dram[] memory managementSome platform provides more than one dram banks and reserved firmwareregions (eg. ATF, OP-TEE, etc) by pre-loader dynamically. It meansthere are memory holes in board dram layout. What&apos;s more, U-Boot willreserved regions at the late bootflow(eg. firmware reserved for AMP).So we introduce bidram mechanism to manage GD board bi_dram[], whichprovides a way to easily manage memory holes and update bi_dram[]. Itdpends on LMB which provides a good algorithm to manage memory blocks.What&apos;s different from sysmem?- bidram manage and pass the avaliable memory blocks to kernel;- sysmem is only for U-Boot memory management to avoid ram overlap,  it doesn&apos;t matter about kernel avaliable memory.Change-Id: I697cbb80bdc961e4ad5ab94548e2dc93feefde6fSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Thu, 14 Mar 2019 10:34:30 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>595f057c4e84a39938ae345246bdfc1b8520debf - lib: Kconfig: set SYS_STACK_SIZE 2MB size</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#595f057c4e84a39938ae345246bdfc1b8520debf</link>
        <description>lib: Kconfig: set SYS_STACK_SIZE 2MB size128KB maybe not enough at sometimes.Change-Id: I06746b98e005955d4b88904c04ed0af753db6acfSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Tue, 19 Feb 2019 04:58:20 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>7f28cbb61ee8de46a34ac30e2ef249f9e095026a - lib: Kconfig: add CONFIG_SYS_STACK_SIZE</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#7f28cbb61ee8de46a34ac30e2ef249f9e095026a</link>
        <description>lib: Kconfig: add CONFIG_SYS_STACK_SIZEChange-Id: I37cb4ffea5ef6aa2475a3ca7a87f58f23fcff76aSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Fri, 25 Jan 2019 11:48:42 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>ffa8f8b76ea89ab65082d036dfb58c7fb136d861 - lib: introduce sysmem for permanent memory management</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#ffa8f8b76ea89ab65082d036dfb58c7fb136d861</link>
        <description>lib: introduce sysmem for permanent memory managementU-Boot provides MALLOC for runtime temporary memory management andLMB for bootm memory management. There is not a mechanism for permanentmemory management. so that the memory blocks are easy to overlap witheach other.What does permanent memory mean ? - The memory can&apos;t be touched by U-Boot(ATF/OPTEE/SHM/kernel-reserved, etc); - The memory occupied even in kernel, such as some firmware load buffer;This patch introduces sysmem to do permanent memory management, whichimplements base on LMB. It provides memory block (pool): - init; - add; - alloc; - free; - reserve; - stat; - overflow check;Here is an example for RK3399 sysmem boot stat(assume the &quot;fdt&quot; region is Overflow)called by sysmem_dump_all():sysmem_dump_all:    ------------------------------------------------------    memory.rgn[0].base     = 0x00000000                 .size     = 0x00000000    memory.rgn[1].base     = 0x00200000                 .size     = 0x08200000    memory.rgn[2].base     = 0x0a200000                 .size     = 0x75e00000    memory.total           = 0x7e000000 (2016 MiB. 0 KiB)    ------------------------------------------------------    reserved.rgn[0].name   = &quot;ATF&quot;                   .base   = 0x00000000                   .size   = 0x00100000    reserved.rgn[1].name   = &quot;PSTORE/ATAGS/SHM&quot;                   .base   = 0x00100000                   .size   = 0x00100000    reserved.rgn[2].name   = &quot;OP-TEE&quot;                   .base   = 0x08400000                   .size   = 0x01e00000    reserved.rgn[3].name   = &quot;U-Boot&quot;                   .base   = 0x71be03c0                   .size   = 0x0e41fc40    reserved.rgn[4].name   = &quot;secure-memory@20000000&quot;                   .base   = 0x20000000                   .size   = 0x10000000    reserved.total         = 0x2041fc40 (516 MiB. 127 KiB)    ------------------------------------------------------    allocated.rgn[0].name  = &quot;fdt&quot;      (Overflow)                    .base  = 0x01f00000                    .size  = 0x00009704    allocated.rgn[1].name  = &quot;kernel&quot;                    .base  = 0x0027c000                    .size  = 0x0129da04    allocated.rgn[2].name  = &quot;ramdisk&quot;                    .base  = 0x0a200000                    .size  = 0x001e6c04    allocated.total        = 0x0148dd0c (20 MiB. 567 KiB)    ------------------------------------------------------    LMB.reserved[0].base   = 0x00000000                   .size   = 0x00200000    LMB.reserved[1].base   = 0x0027c000                   .size   = 0x0129da04    LMB.reserved[2].base   = 0x01f00000                   .size   = 0x00009704    LMB.reserved[3].base   = 0x08400000                   .size   = 0x01fe6c04    LMB.reserved[4].base   = 0x20000000                   .size   = 0x10000000    LMB.reserved[5].base   = 0x71be03c0                   .size   = 0x0e41fc40    reserved.core.total    = 0x218ad94c (536 MiB. 694 KiB)    ------------------------------------------------------Change-Id: If63b7abed2cdd3c054719511fcceed733ddf606dSigned-off-by: Joseph Chen &lt;chenjh@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Sun, 13 Jan 2019 09:56:44 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>37a7bc39c0a3beca986e8c1c85d1dd6b9921e313 - lib: avb: update and modify the avb library</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#37a7bc39c0a3beca986e8c1c85d1dd6b9921e313</link>
        <description>lib: avb: update and modify the avb libraryThe commit point is updated to google external/avb/which commit point is cf8c56208d2d9643804a7f123b196c7ebc9af276.Change-Id: I5a10a8a45d3e9e2c9d20d9b3d44946073c9a49ffSigned-off-by: Jason Zhu &lt;jason.zhu@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Fri, 26 Jan 2018 08:38:05 +0000</pubDate>
        <dc:creator>Jason Zhu &lt;jason.zhu@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>0e13c182e0b4ee5b7e5efee72614cd23f8a5e6fc - Move CONFIG_PANIC_HANG to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#0e13c182e0b4ee5b7e5efee72614cd23f8a5e6fc</link>
        <description>Move CONFIG_PANIC_HANG to KconfigFreescale (NXP) boards have lots of defconfig files per board.I used &quot;imply PANIC_HANG&quot; for them.Change-Id: I56347810ee33ccd8bb3553b0ee95b858e827ce9bSigned-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Reviewed-by: York Sun &lt;york.sun@nxp.com&gt;Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;(cherry picked from commit 7e3caa81e0e9cc5e2beed4a3a1c334e2119f4498)

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Mon, 04 Dec 2017 03:37:00 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>205ac79efb3a9aca5ebabc7ddcf2d5da4aaa6ab1 - UPSTREAM: lib: allow building lzo for the SPL</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#205ac79efb3a9aca5ebabc7ddcf2d5da4aaa6ab1</link>
        <description>UPSTREAM: lib: allow building lzo for the SPLChange-Id: If6ccf36b13632f5450f700b8931975a4742a698eSigned-off-by: Jean-Jacques Hiblot &lt;jjhiblot@ti.com&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;(cherry picked from commit f52bdf4b678defea2341aa4b68736e6978180222)

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Fri, 15 Sep 2017 10:57:30 +0000</pubDate>
        <dc:creator>Jean-Jacques Hiblot &lt;jjhiblot@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>92193ef7346ae7bb0de4c531eaa9a2703dcc2573 - UPSTREAM: lib: Add CRC32-C</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#92193ef7346ae7bb0de4c531eaa9a2703dcc2573</link>
        <description>UPSTREAM: lib: Add CRC32-CThis is needed for BTRFS.Change-Id: I7415e99a6f06aef89f3520ebe9a9ba92a9189059Signed-off-by: Marek Behun &lt;marek.behun@nic.cz&gt;Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;(cherry picked from commit 85d8bf57131a21424b50e50884372e813345f09a)

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Sun, 03 Sep 2017 15:00:23 +0000</pubDate>
        <dc:creator>Marek Beh&#250;n &lt;marek.behun@nic.cz&gt;</dc:creator>
    </item>
<item>
        <title>b81c4739f4f34317a5e3ae5c06b14446b9e3c18e - UPSTREAM: spl: fit: Eanble GZIP support for image decompression</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#b81c4739f4f34317a5e3ae5c06b14446b9e3c18e</link>
        <description>UPSTREAM: spl: fit: Eanble GZIP support for image decompressionAdd Kconfig option SPL_GZIP and SPL_ZLIB to enable gunzip support forSPL boot, eg. falcon boot compressed kernel image.Change-Id: I68f64aca8ecad26478f2ce25676253cee7e57d30Signed-off-by: York Sun &lt;york.sun@nxp.com&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Signed-off-by: Kever Yang &lt;kever.yang@rock-chips.com&gt;(cherry picked from commit 7264f2928b46c5f5685e39ed607652c8991e47b6)

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Tue, 15 Aug 2017 18:14:43 +0000</pubDate>
        <dc:creator>York Sun &lt;york.sun@nxp.com&gt;</dc:creator>
    </item>
<item>
        <title>6c551138ca32fe8065f37a7a1dc1a0f3491313f1 - avb: create avb function for user use</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#6c551138ca32fe8065f37a7a1dc1a0f3491313f1</link>
        <description>avb: create avb function for user useThe libavb_user provide some fuctions to geta/b and avb information from misc or vbmetapartitions, which can be use in libavb...It also can use to enable or disable the verificationfunction by using avb_user_verity_set in the fileavb_user_verify.c.Since we use fastboot to program our firmware,some necessary function is provided to fastbootto get useful information, like slot number, currentslot and so on.Some functions in the avb_ops_user.c, like read_rollback_index,depend on the OpteeClientTest.h.Change-Id: I94f77db30d5c7896724b5da3d218041ebdc1f46aSigned-off-by: Jason Zhu &lt;jason.zhu@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Thu, 14 Sep 2017 01:29:35 +0000</pubDate>
        <dc:creator>Jason Zhu &lt;jason.zhu@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>abdd24375050db7ce121b48477cc332d6c8c40f6 - lib: add tipc functions</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#abdd24375050db7ce121b48477cc332d6c8c40f6</link>
        <description>lib: add tipc functionstipc functions is used for uboot communicatewith TEE. uboot can request service for securestore or secure algorithm.Change-Id: Ie44095aff4c044feceb5f362abf6e3d24ceb8d4cSigned-off-by: Hisping Lin &lt;hisping.lin@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Thu, 24 Aug 2017 09:15:26 +0000</pubDate>
        <dc:creator>hisping &lt;hisping.lin@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>3ccd4bb0b4c2a2e49ccce6f2748cdcff4bb293b6 - avb: support vbmeta key_pub verify</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#3ccd4bb0b4c2a2e49ccce6f2748cdcff4bb293b6</link>
        <description>avb: support vbmeta key_pub verifyAndroid Things requires specific public keymetadata and verification logic to correctlyverify vbmeta public keys.This commit provide fuction avb_atx_validate_vbmeta_public_keyto verify the vbmeta.Change-Id: I227e93b342671b4395cbaa7dea2121cbf0d7234bSigned-off-by: Jason Zhu &lt;jason.zhu@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Wed, 13 Sep 2017 05:21:18 +0000</pubDate>
        <dc:creator>Jason Zhu &lt;jason.zhu@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>cf7c71c1bf6a7af45601b778885a81aaada5967e - avb: add functions to choose a/b system</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#cf7c71c1bf6a7af45601b778885a81aaada5967e</link>
        <description>avb: add functions to choose a/b systemThis commit is based on google avb, and itcan be getted by https://android.googlesource.com/platform/external/avb.This new rk_libavb_ab depend on rk_libavb.This commit provide some useful functions.The function of avb_ab_flow can be use tochose a/b system and flow.The other functionscan be used to debug.Change-Id: I768272286898b36e9a64749ff30bc6ff0cb019a1Signed-off-by: Jason Zhu &lt;jason.zhu@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Wed, 13 Sep 2017 03:32:58 +0000</pubDate>
        <dc:creator>Jason Zhu &lt;jason.zhu@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>5b69db0720b90f33ecb7fb666b196bfc90404185 - avb: add the google avb to lib</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/lib/Kconfig#5b69db0720b90f33ecb7fb666b196bfc90404185</link>
        <description>avb: add the google avb to libThe avb lib is provided by google, and it must beused in the android things to boot and verifyandroid system. It can be getted inhttps://android.googlesource.com/platform/external/avb.Then we can use the functions suported by avb to programthe a/b and avb code.Change-Id: I09371fe53cd50233a69533cfa09d5ebca5b10871Signed-off-by: Jason Zhu &lt;jason.zhu@rock-chips.com&gt;

            List of files:
            /rk3399_rockchip-uboot/lib/Kconfig</description>
        <pubDate>Wed, 13 Sep 2017 01:41:53 +0000</pubDate>
        <dc:creator>Jason Zhu &lt;jason.zhu@rock-chips.com&gt;</dc:creator>
    </item>
</channel>
</rss>
