<?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 M5329AFEE_defconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>88663126a009d0c354d832e005a5b3b511e5c7fb - configs: Resync with savedefconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#88663126a009d0c354d832e005a5b3b511e5c7fb</link>
        <description>configs: Resync with savedefconfigRsync all defconfig files using moveconfig.pySigned-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Mon, 14 Aug 2017 23:58:53 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>8f1a80e99e4a838d1540cdb1d59ccc7785fe4618 - configs: Migrate CMD_NAND*</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#8f1a80e99e4a838d1540cdb1d59ccc7785fe4618</link>
        <description>configs: Migrate CMD_NAND*Migrate all remaining instances of CMD_NAND, CMD_NAND_TRIMFFSCMD_NAND_LOCK_UNLOCK and CMD_NAND_TORTURE from the headers into thedefconfig files.Tested-by: Adam Ford &lt;aford173@gmail.com&gt;Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;Reviewed-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Sat, 29 Jul 2017 01:31:42 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>4f66e09bb9fbc47b73f67c3cc08ee2663e8fcdb1 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#4f66e09bb9fbc47b73f67c3cc08ee2663e8fcdb1</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/configs/M5329AFEE_defconfig</description>
        <pubDate>Tue, 09 May 2017 16:03:44 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>c9032ce168c1344fe8ffe8604825ec343ec14adf - cmd: add Kconfig option for &apos;date&apos; command</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#c9032ce168c1344fe8ffe8604825ec343ec14adf</link>
        <description>cmd: add Kconfig option for &apos;date&apos; commandSigned-off-by: Chris Packham &lt;judge.packham@gmail.com&gt;[trini: default y if DM_RTC, re-sync]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Sat, 29 Apr 2017 03:20:28 +0000</pubDate>
        <dc:creator>Chris Packham &lt;judge.packham@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>8728c97eff5bd95f58320f886ae305f17931a374 - configs: Re-sync</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#8728c97eff5bd95f58320f886ae305f17931a374</link>
        <description>configs: Re-syncSigned-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Mon, 13 Mar 2017 17:48:42 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>e856bdcfb49291d30b19603fc101bea096c48196 - flash: complete CONFIG_SYS_NO_FLASH move with renaming</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#e856bdcfb49291d30b19603fc101bea096c48196</link>
        <description>flash: complete CONFIG_SYS_NO_FLASH move with renamingWe repeated partial moves for CONFIG_SYS_NO_FLASH, but this isnot completed. Finish this work by the tool.During this move, let&apos;s rename it to CONFIG_MTD_NOR_FLASH.Actually, we have more instances of &quot;#ifndef CONFIG_SYS_NO_FLASH&quot;than those of &quot;#ifdef CONFIG_SYS_NO_FLASH&quot;.  Flipping the logic willmake the code more readable.  Besides, negative meaning symbols donot fit in obj-$(CONFIG_...) style Makefiles.This commit was created as follows:[1] Edit &quot;default n&quot; to &quot;default y&quot; in the config entry in    common/Kconfig.[2] Run &quot;tools/moveconfig.py -y -r HEAD SYS_NO_FLASH&quot;[3] Rename the instances in defconfigs by the following:  find . -path &apos;./configs/*_defconfig&apos; | xargs sed -i \  -e &apos;/CONFIG_SYS_NO_FLASH=y/d&apos; \  -e &apos;s/# CONFIG_SYS_NO_FLASH is not set/CONFIG_MTD_NOR_FLASH=y/&apos;[4] Change the conditionals by the following:  find . -name &apos;*.[ch]&apos; | xargs sed -i \  -e &apos;s/ifndef CONFIG_SYS_NO_FLASH/ifdef CONFIG_MTD_NOR_FLASH/&apos; \  -e &apos;s/ifdef CONFIG_SYS_NO_FLASH/ifndef CONFIG_MTD_NOR_FLASH/&apos; \  -e &apos;s/!defined(CONFIG_SYS_NO_FLASH)/defined(CONFIG_MTD_NOR_FLASH)/&apos; \  -e &apos;s/defined(CONFIG_SYS_NO_FLASH)/!defined(CONFIG_MTD_NOR_FLASH)/&apos;[5] Modify the following manually  - Rename the rest of instances  - Remove the description from README  - Create the new Kconfig entry in drivers/mtd/Kconfig  - Remove the old Kconfig entry from common/Kconfig  - Remove the garbage comments from include/configs/*.hSigned-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Sat, 11 Feb 2017 13:43:54 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>8435179271106ec6fe9a9a5679b897755b1db8dd - common: Add DISPLAY_BOARDINFO</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#8435179271106ec6fe9a9a5679b897755b1db8dd</link>
        <description>common: Add DISPLAY_BOARDINFOCreate a Kconfig entry for DISPLAY_BOARDINFO and make it be the defaultin certain architectures.  Migrate all config files.Signed-off-by: Lokesh Vutla &lt;lokeshvutla@ti.com&gt;Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Wed, 12 Oct 2016 01:33:46 +0000</pubDate>
        <dc:creator>Lokesh Vutla &lt;lokeshvutla@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>7802ce910ba17a962d90b60b5e998e40d5a08067 - configs: Re-sync BOOTDELAY changes</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#7802ce910ba17a962d90b60b5e998e40d5a08067</link>
        <description>configs: Re-sync BOOTDELAY changesWith updated moveconfig.py and an better default, re-generatethe migration of BOOTDELAY to the defconfig.Reviewed-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Mon, 13 Jun 2016 13:45:14 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>89cb2b5f8be4f6d04bd87220aa8f72eb0850edc4 - configs: Re-sync with cmd/Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#89cb2b5f8be4f6d04bd87220aa8f72eb0850edc4</link>
        <description>configs: Re-sync with cmd/KconfigUpdate the config.h and defconfig files for the commands that 8e3c036converted over to KconfigSigned-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Sun, 24 Apr 2016 21:29:26 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>78d1e1d0a157c8b48ea19be6170b992745d30f38 - configs: Re-sync almost all of cmd/Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#78d1e1d0a157c8b48ea19be6170b992745d30f38</link>
        <description>configs: Re-sync almost all of cmd/KconfigThis syncs up the current cmd/Kconfig and include/configs/ files with theonly exception being CMD_NAND.  Due to how we have used this historicallywe need to take further care here when converting.Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Fri, 22 Apr 2016 20:41:25 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>c6e18144b69231192a2722dbf5a0be9d18d60fcd - m68k: move CONFIG_SYS_TEXT_BASE to defconfig files</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#c6e18144b69231192a2722dbf5a0be9d18d60fcd</link>
        <description>m68k: move CONFIG_SYS_TEXT_BASE to defconfig filesFor historical reason, CONFIG_SYS_TEXT_BASE has been specifiedin various ways:[1] by board/${VENDOR}/${BOARD}/config.mk[2] by CONFIG_SYS_EXTRA_OPTIONS    (This was &quot;options&quot; field of boards.cfg before Kconfig conversion)[3] by include/configs/${BOARD}.h[4] by configs/${BOARD}_defconfigMost of M68K boards use either [1] or [2], both of which we want todeprecate.  Switch them into [4], which is the newest way (Kconfig).We still allow [3] too, because it is still used by many boards andwe expect much time for conversion.Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Acked-by: Angelo Dureghello &lt;angelo at sysam.it&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Fri, 11 Dec 2015 03:22:24 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>13a3972585af60ec367d209cedbd3601e0c77467 - Merge remote-tracking branch &apos;u-boot/master&apos;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#13a3972585af60ec367d209cedbd3601e0c77467</link>
        <description>Merge remote-tracking branch &apos;u-boot/master&apos;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Wed, 14 Oct 2015 08:46:36 +0000</pubDate>
        <dc:creator>Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;</dc:creator>
    </item>
<item>
        <title>80df6913499a93bfa9529b6f0f8113bfe3b0d734 - Reorder defconfigs with &apos;savedefconfig&apos;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#80df6913499a93bfa9529b6f0f8113bfe3b0d734</link>
        <description>Reorder defconfigs with &apos;savedefconfig&apos;Some boards&apos; defconfigs are disordered. Reorder them.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Mon, 28 Sep 2015 12:14:15 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>181bd9dc61d2da88b78f1c1138a685dae39354d6 - kconfig: add config option for shell prompt</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#181bd9dc61d2da88b78f1c1138a685dae39354d6</link>
        <description>kconfig: add config option for shell promptAdd option to set shell prompt string from menuconfig and migrateboards globally.The migration is done as follows:- Boards that explicitly and unconditionally set CONFIG_SYS_PROMPT had the  entry moved to their defconfig files.- Boards that defined some kind of #ifdef logic which selects the  CONFIG_SYS_PROMPT (for example qemu-mips) got an #undef CONFIG_SYS_PROMPT  right before the #ifdef logic and were left alone.- This change forces CONFIG_SYS_PROMPT to be a per board decision, and thus  CONFIG_SYS_PROMPT was removed from all &lt;soc&gt;_common.h and &lt;arch&gt;_common.h  files. This results in a streamlined default value across platforms, and  includes the following files: spear-common, sunxi-common, mv-common,  ti_armv7_common, tegra-common, at91-sama5_common, and zynq-common.- Boards that relied on &lt;arch/soc&gt;_common.h values of CONFIG_SYS_PROMPT were  not updated in their respective defconfig files under the assumption that  since they did not explicitly define a value, they&apos;re fine with whatever  the default is.- On the other hand, boards that relied on a value defined in some  &lt;boards&gt;_common.h file such as woodburn_common, rpi-common,  bur_am335x_common, ls2085a_common, siemens_am33x_common, and  omap3_evm_common, had their values moved to the respective defconfig files.- The define V_PROMPT was removed, since it is not used anywhere except for  assigning a value for CONFIG_SYS_PROMPT.Cc: Tom Rini &lt;trini@konsulko.com&gt;Cc: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;Cc: Stefano Babic &lt;sbabic@denx.de&gt;Cc: Igor Grinberg &lt;grinberg@compulab.co.il&gt;Signed-off-by: Nikita Kiryanov &lt;nikita@compulab.co.il&gt;[trini: Add spring, sniper, smartweb to conversion]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Mon, 03 Aug 2015 09:36:58 +0000</pubDate>
        <dc:creator>Nikita Kiryanov &lt;nikita@compulab.co.il&gt;</dc:creator>
    </item>
<item>
        <title>1254ff97abb7606ccd0d7bdcd9f22581c50fe535 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#1254ff97abb7606ccd0d7bdcd9f22581c50fe535</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Fri, 10 Jul 2015 07:21:44 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>6f43ba70d15e15a08c25b3d956c70addb6740737 - Merge branch &apos;u-boot/master&apos; into &apos;u-boot-arm/master&apos;</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#6f43ba70d15e15a08c25b3d956c70addb6740737</link>
        <description>Merge branch &apos;u-boot/master&apos; into &apos;u-boot-arm/master&apos;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Tue, 07 Jul 2015 09:38:44 +0000</pubDate>
        <dc:creator>Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;</dc:creator>
    </item>
<item>
        <title>ef0f2f57524ec85fb9058a23298f2c4995e0d950 - Move defaults from config_cmd_default.h to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#ef0f2f57524ec85fb9058a23298f2c4995e0d950</link>
        <description>Move defaults from config_cmd_default.h to KconfigThis sets the default commands Kconfig to matchinclude/config_cmd_default.h commands in the common/Kconfig and removesthem from include/configs.Signed-off-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;[trini: rastaban, am43xx_evm_usbhost_boot, am43xx_evm_ethboot updates]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Mon, 22 Jun 2015 21:15:30 +0000</pubDate>
        <dc:creator>Joe Hershberger &lt;joe.hershberger@ni.com&gt;</dc:creator>
    </item>
<item>
        <title>563e53efaadd76def21612bcf9f0236d870b6e68 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-net</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#563e53efaadd76def21612bcf9f0236d870b6e68</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-netFixup include/configs/unipher.h to not set CONFIG_LIB_RANDSigned-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Mon, 01 Jun 2015 20:47:23 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>6eed3786c68c8a49d2986ac4f9f6e3071b769d41 - net: Move the CMD_NET config to defconfigs</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#6eed3786c68c8a49d2986ac4f9f6e3071b769d41</link>
        <description>net: Move the CMD_NET config to defconfigsThis also selects CONFIG_NET for any CONFIG_CMD_NET board.Remove the imx default for CONFIG_NET.This moves the config that was defined by 60296a8 (commands: add morecommand entries in Kconfig).Signed-off-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Sat, 30 May 2015 00:46:35 +0000</pubDate>
        <dc:creator>Joe Hershberger &lt;joe.hershberger@ni.com&gt;</dc:creator>
    </item>
<item>
        <title>bd328eb38274ffaf04caaa8a6ecc09b7e19a650e - Clean all defconfigs with savedefconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig#bd328eb38274ffaf04caaa8a6ecc09b7e19a650e</link>
        <description>Clean all defconfigs with savedefconfigIn order to reduce merge conflicts and to maintain the simplest possibledefconfig files, we should be using the savedefconfig feature of Kconfigevery time a new feature is added. This keeps the defconfig settings toa minimum (only those things not default) and keeps them in the sameorder as the Kconfig options.Signed-off-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;Cc: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Acked-by: Stephen Warren &lt;swarren@wwwdotorg.org&gt;Cc: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/M5329AFEE_defconfig</description>
        <pubDate>Tue, 12 May 2015 19:46:24 +0000</pubDate>
        <dc:creator>Joe Hershberger &lt;joe.hershberger@ni.com&gt;</dc:creator>
    </item>
</channel>
</rss>
