<?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>f58ad98a621ce5059d9608a9b41cfabac277094a - usb: net: migrate USB Ethernet adapters to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#f58ad98a621ce5059d9608a9b41cfabac277094a</link>
        <description>usb: net: migrate USB Ethernet adapters to KconfigThis migrates ASIX, ASIX88179, MCS7830, RTL8152 and SMSC95XX to Kconfig.Update defconfigs.Signed-off-by: Chris Packham &lt;judge.packham@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Mon, 28 Aug 2017 08:50:46 +0000</pubDate>
        <dc:creator>Chris Packham &lt;judge.packham@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c1c3fe23070ac924e65208abbf8d2396bcc08008 - env: Convert CONFIG_ENV_IS_IN... to a choice</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#c1c3fe23070ac924e65208abbf8d2396bcc08008</link>
        <description>env: Convert CONFIG_ENV_IS_IN... to a choiceAt present we support multiple environment drivers but there is not way toselect between them at run time. Also settings related to the position andsize of the environment area are global (i.e. apply to all locations).Until these limitations are removed we cannot really support more than oneenvironment location. Adjust the location to be a choice so that only onecan be selected. By default the environment is &apos;nowhere&apos;, meaning that theenvironment exists only in memory and cannot be saved.Also expand the help for the &apos;nowhere&apos; option and move it to the top sinceit is the default.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;[trini: Move all of the imply logic to default X if Y so it works again]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Thu, 03 Aug 2017 18:21:59 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>c1b62ba9ca0e41fdd548cb3bb9af3b3f90d4a393 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-rockchip</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#c1b62ba9ca0e41fdd548cb3bb9af3b3f90d4a393</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-rockchip

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Mon, 14 Aug 2017 14:40:01 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>b529993e0222ce8c97d3e8fe41e4a2e7878e281e - spl: add hierarchical defaults for SPL_LDSCRIPT</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#b529993e0222ce8c97d3e8fe41e4a2e7878e281e</link>
        <description>spl: add hierarchical defaults for SPL_LDSCRIPTWith SPL_LDSCRIPT moved to Kconfig (and this being a &apos;string&apos; confignode), all the lingering definitions in header files will causewarnings/errors due to the redefinition of the configuration item.As we don&apos;t want to pollute the defconfig files (and values shouldusually be identical for entire architectures), the defaults are movedinto Kconfig.  Kconfig will always pick the first default thatmatches, so please keep these values at the end of each file (to allowany board-specific Kconfig, which will be included earlier) tooverride with an unconditional default setting.Signed-off-by: Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Thu, 03 Aug 2017 21:23:55 +0000</pubDate>
        <dc:creator>Philipp Tomsich &lt;philipp.tomsich@theobroma-systems.com&gt;</dc:creator>
    </item>
<item>
        <title>2be296538e2e9d2893dc495b3fc8f9f6acb1454c - Convert CONFIG_ENV_IS_IN_MMC/NAND/UBI and NOWHERE to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#2be296538e2e9d2893dc495b3fc8f9f6acb1454c</link>
        <description>Convert CONFIG_ENV_IS_IN_MMC/NAND/UBI and NOWHERE to KconfigThis converts the following to Kconfig:   CONFIG_ENV_IS_IN_MMC   CONFIG_ENV_IS_IN_NAND   CONFIG_ENV_IS_IN_UBI   CONFIG_ENV_IS_NOWHEREIn fact this already exists for sunxi as a &apos;choice&apos; config. However notall the choices are available in Kconfig yet so we cannot use that. Itwould lead to more than one option being set.In addition, one purpose of this series is to allow the environment to bestored in more than one place. So the existing choice is converted to anormal config allowing each option to be set independently.There are not many opportunities for Kconfig updates to reduce the size ofthis patch. This was tested with   ./tools/moveconfig.py -i CONFIG_ENV_IS_IN_MMCAnd then manual updates.  This is because for CHAIN_OF_TRUST boards theycan only have ENV_IS_NOWHERE set, so we enforce that via Kconfig logicnow.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Mon, 24 Jul 2017 03:19:39 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>221a949eb6cf9077abc1e7ee28331987042b9b08 - Kconfig: Finish migration of hashing commands</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#221a949eb6cf9077abc1e7ee28331987042b9b08</link>
        <description>Kconfig: Finish migration of hashing commandsCurrently these (board agnostic) commands cannot be selected usingmenuconfig and friends. Fix this the obvious way.  As part of this,don&apos;t muddle the meaning of CONFIG_HASH_VERIFY to mean both &apos;hash -v&apos;and &quot;we have a hashing command&quot; as this makes the Kconfig logic odd.Signed-off-by: Daniel Thompson &lt;daniel.thompson@linaro.org&gt;[trini: Re-apply, add imply for a few cases, run moveconfig.py, also        migrate CRC32_VERIFY]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Fri, 19 May 2017 16:26:58 +0000</pubDate>
        <dc:creator>Daniel Thompson &lt;daniel.thompson@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>551c3934466503e6c8702df412e2a9ce574557e9 - Convert CONFIG_CMD_HASH to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#551c3934466503e6c8702df412e2a9ce574557e9</link>
        <description>Convert CONFIG_CMD_HASH to KconfigThis converts the following to Kconfig:   CONFIG_CMD_HASHSigned-off-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;[trini: Rework slightly, enable on some boards again]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Wed, 17 May 2017 09:25:25 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>089df18bfe9dd6e98f34807247ec77e0e1b5f7a2 - lib: move hash CONFIG options to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#089df18bfe9dd6e98f34807247ec77e0e1b5f7a2</link>
        <description>lib: move hash CONFIG options to KconfigCommit 94e3c8c4fd7b (&quot;crypto/fsl - Add progressive hashing supportusing hardware acceleration.&quot;) created entries for CONFIG_SHA1,CONFIG_SHA256, CONFIG_SHA_HW_ACCEL, and CONFIG_SHA_PROG_HW_ACCEL.However, no defconfig has migrated to it.  Complete the move by firstadding additional logic to various Kconfig files to select this whenrequired and then use the moveconfig tool.  In many cases we can selectthese because they are required to implement other drivers.  We alsocorrect how we include the various hashing algorithms in SPL.This commit was generated as follows (after Kconfig additions):[1] tools/moveconfig.py -y SHA1 SHA256 SHA_HW_ACCEL[2] tools/moveconfig.py -y SHA_PROG_HW_ACCELNote:We cannot move SHA_HW_ACCEL and SHA_PROG_HW_ACCEL simultaneouslybecause there is dependency between them.Cc: Poonam Aggrwal &lt;poonam.aggrwal@freescale.com&gt;Cc: Naveen Burmi &lt;NaveenBurmi@freescale.com&gt;Cc: Po Liu &lt;po.liu@freescale.com&gt;Cc: Shengzhou Liu &lt;Shengzhou.Liu@freescale.com&gt;Cc: Priyanka Jain &lt;Priyanka.Jain@freescale.com&gt;Cc: Shaohui Xie &lt;Shaohui.Xie@freescale.com&gt;Cc: Chunhe Lan &lt;Chunhe.Lan@freescale.com&gt;Cc: Chander Kashyap &lt;k.chander@samsung.com&gt;Cc: Steve Rae &lt;steve.rae@raedomain.com&gt;Cc: Dirk Eibach &lt;eibach@gdsys.de&gt;Cc: Feng Li &lt;feng.li_2@nxp.com&gt;Cc: Alison Wang &lt;alison.wang@freescale.com&gt;Cc: Sumit Garg &lt;sumit.garg@nxp.com&gt;Cc: Mingkai Hu &lt;Mingkai.Hu@freescale.com&gt;Cc: York Sun &lt;york.sun@nxp.com&gt;Cc: Prabhakar Kushwaha &lt;prabhakar.kushwaha@nxp.com&gt;Cc: Jaehoon Chung &lt;jh80.chung@samsung.com&gt;Cc: Akshay Saraswat &lt;akshay.s@samsung.com&gt;Cc: Heiko Schocher &lt;hs@denx.de&gt;Cc: Jagan Teki &lt;jagan@amarulasolutions.com&gt;Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Mon, 15 May 2017 16:17:49 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>8dda2e2f9e0976249f4a390e72f12533dbcb5ef4 - ARM: Migrate errata to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#8dda2e2f9e0976249f4a390e72f12533dbcb5ef4</link>
        <description>ARM: Migrate errata to KconfigThis moves all of the current ARM errata from various header files and in toKconfig.  This allows for a minor amount of cleanup as we had some instanceswhere both a general common header file was enabling errata as well as theboard config.  We now just select these once at the higher level in KconfigSigned-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Tue, 07 Mar 2017 12:13:42 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>a5d67547dd9c7a527dfda1967010e703a22441ff - Convert CONFIG_BOARD_EARLY_INIT_F to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#a5d67547dd9c7a527dfda1967010e703a22441ff</link>
        <description>Convert CONFIG_BOARD_EARLY_INIT_F to KconfigThis converts the following to Kconfig:   CONFIG_BOARD_EARLY_INIT_FSigned-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Mon, 23 Jan 2017 20:31:20 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>2d221489df021393654805536be7effcb9d39702 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#2d221489df021393654805536be7effcb9d39702</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-bootSigned-off-by: Stefano Babic &lt;sbabic@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Tue, 29 Nov 2016 15:28:28 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>ed77ccd014b4073c4d282028cfb22f8d1742fec1 - Merge git://git.denx.de/u-boot-fsl-qoriq</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#ed77ccd014b4073c4d282028cfb22f8d1742fec1</link>
        <description>Merge git://git.denx.de/u-boot-fsl-qoriqSigned-off-by: Tom Rini &lt;trini@konsulko.com&gt;Conflicts:	arch/arm/Kconfig

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Fri, 25 Nov 2016 22:39:54 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>95e74a3df75bf01eaf69f5c28f9aa2db6568e901 - arm: exynos7420: remove custome low level init function</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#95e74a3df75bf01eaf69f5c28f9aa2db6568e901</link>
        <description>arm: exynos7420: remove custome low level init functionRemove the custom low-level initialization function and reuse thedefault low-level initialization function. But this requires theARMV8_MULTIENTRY config option to be enabled for Exynos7420.On Exynos7420, the boot CPU belongs to the second cluster and sowith ARMV8_MULTIENTRY config option enabled, the &apos;branch_if_master&apos;macro fails to detect the CPU as boot CPU. As a temporary workaroundthe CPU_RELEASE_ADDR is set to point to &apos;_main&apos;.Cc: Minkyu Kang &lt;mk7.kang@samsung.com&gt;Cc: Alison Wang &lt;alison.wang@nxp.com&gt;Signed-off-by: Thomas Abraham &lt;thomas.ab@samsung.com&gt;Reviewed-by: Alison Wang &lt;alison.wang@nxp.com&gt;Reviewed-by: York Sun &lt;york.sun@nxp.com&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Wed, 16 Nov 2016 13:19:16 +0000</pubDate>
        <dc:creator>Thomas Abraham &lt;thomas.ab@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>cc4288ef42be5bf70e7dc0fa5eb977cb4a6e894e - Convert CONFIG_SPL_LIBGENERIC_SUPPORT to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#cc4288ef42be5bf70e7dc0fa5eb977cb4a6e894e</link>
        <description>Convert CONFIG_SPL_LIBGENERIC_SUPPORT to KconfigMove this option to Kconfig and tidy up existing uses.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Tue, 13 Sep 2016 05:18:43 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>77d2f7f5070c7def29d433096f4cee57eeddbd23 - Convert CONFIG_SPL_LIBCOMMON_SUPPORT to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#77d2f7f5070c7def29d433096f4cee57eeddbd23</link>
        <description>Convert CONFIG_SPL_LIBCOMMON_SUPPORT to KconfigMove this option to Kconfig and tidy up existing uses.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Tue, 13 Sep 2016 05:18:41 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>53b5bf3c1d24c3a0d92c7cf0824a51bde41ee321 - Convert CONFIG_SPL_GPIO_SUPPORT to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#53b5bf3c1d24c3a0d92c7cf0824a51bde41ee321</link>
        <description>Convert CONFIG_SPL_GPIO_SUPPORT to KconfigMove this option to Kconfig and tidy up existing uses.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Tue, 13 Sep 2016 05:18:39 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>dc557e9a1fe00ca9d884bd88feef5bebf23fede4 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#dc557e9a1fe00ca9d884bd88feef5bebf23fede4</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-bootSigned-off-by: Stefano Babic &lt;sbabic@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Sat, 18 Jun 2016 08:24:54 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>d77fa2ff766bbb4b867e791187f78b6033071613 - Merge http://git.denx.de/u-boot-samsung</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#d77fa2ff766bbb4b867e791187f78b6033071613</link>
        <description>Merge http://git.denx.de/u-boot-samsungSigned-off-by: Tom Rini &lt;trini@konsulko.com&gt;Conflicts:	configs/peach-pi_defconfig	configs/peach-pit_defconfig

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Mon, 06 Jun 2016 17:24:23 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>6c15a2a996214574e8145bff69d110a302edf277 - board: samsung: add initial Espresso7420 board support</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#6c15a2a996214574e8145bff69d110a302edf277</link>
        <description>board: samsung: add initial Espresso7420 board supportEspresso7420 is a development/evaluation board for Exynos7420 SoC. Itincludes multiple onboard compoments (EMMC/Codec) and variousinterconnects (USB/HDMI).Signed-off-by: Thomas Abraham &lt;thomas.ab@samsung.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Signed-off-by: Minkyu Kang &lt;mk7.kang@samsung.com&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Sat, 23 Apr 2016 16:48:14 +0000</pubDate>
        <dc:creator>Thomas Abraham &lt;thomas.ab@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>e39448e8be8389f5ddeabae0ec9c6a3b7b8a2ca6 - arm: exynos: add support for Exynos7420 SoC</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig#e39448e8be8389f5ddeabae0ec9c6a3b7b8a2ca6</link>
        <description>arm: exynos: add support for Exynos7420 SoCAdd support for Exynos7420 SoC. The Exynos7420 SoC has four Cortex-A57and four Cortex-A53 CPUs and includes various peripheral controllers.Signed-off-by: Thomas Abraham &lt;thomas.ab@samsung.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Signed-off-by: Minkyu Kang &lt;mk7.kang@samsung.com&gt;

            List of files:
            /rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig</description>
        <pubDate>Sat, 23 Apr 2016 16:48:13 +0000</pubDate>
        <dc:creator>Thomas Abraham &lt;thomas.ab@samsung.com&gt;</dc:creator>
    </item>
</channel>
</rss>
