<?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 vct_premium_defconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>5dc4dfd2a94744a6df0d3f84c98b30d1962d4beb - configs: Resync with savedefconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/vct_premium_defconfig#5dc4dfd2a94744a6df0d3f84c98b30d1962d4beb</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/vct_premium_defconfig</description>
        <pubDate>Mon, 28 Aug 2017 11:16:32 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>85fc970d74d09f33fcdcc649e73c5dc4f5334605 - Convert CONFIG_ENV_IS_IN_FLASH to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/vct_premium_defconfig#85fc970d74d09f33fcdcc649e73c5dc4f5334605</link>
        <description>Convert CONFIG_ENV_IS_IN_FLASH to KconfigThis converts the following to Kconfig:   CONFIG_ENV_IS_IN_FLASHSigned-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_defconfig</description>
        <pubDate>Mon, 24 Jul 2017 03:19:41 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>a1dc980d88a5c9c2b99251c8d8299b0c8948de73 - Convert CONFIG_CMD_EEPROM et al to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/vct_premium_defconfig#a1dc980d88a5c9c2b99251c8d8299b0c8948de73</link>
        <description>Convert CONFIG_CMD_EEPROM et al to KconfigThis converts the following to Kconfig:   CONFIG_CMD_EEPROM   CONFIG_CMD_EEPROM_LAYOUT   CONFIG_EEPROM_LAYOUT_HELP_STRINGSigned-off-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;[trini: Rework Kconfig logic slightly, define EEPROM location on TI evalplatforms]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_defconfig</description>
        <pubDate>Wed, 17 May 2017 09:25:10 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>64d6ac5bc4a9bf8839e516959b35150ac8a0eb84 - Kconfig: USB: Migrate CONFIG_USB_EHCI_HCD users to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/vct_premium_defconfig#64d6ac5bc4a9bf8839e516959b35150ac8a0eb84</link>
        <description>Kconfig: USB: Migrate CONFIG_USB_EHCI_HCD users to KconfigMigrate the rest of the users of CONFIG_USB_EHCI_HCD over to Kconfig.For a few SoCs, imply or default y this if USB is enabled.  In somecases we had not already migrated to CONFIG_USB so do that as well.Cc: Marek Vasut &lt;marex@denx.de&gt;Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;Reviewed-by: Marek Vasut &lt;marex@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_defconfig</description>
        <pubDate>Sat, 13 May 2017 02:33:28 +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/vct_premium_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/vct_premium_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>f3f3efff91f13df022f0c19f346cd74ac864bd85 - Convert CONFIG_SYS_CONSOLE_INFO_QUIET to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/vct_premium_defconfig#f3f3efff91f13df022f0c19f346cd74ac864bd85</link>
        <description>Convert CONFIG_SYS_CONSOLE_INFO_QUIET to KconfigThis converts the following to Kconfig:   CONFIG_SYS_CONSOLE_INFO_QUIETSigned-off-by: Simon Glass &lt;sjg@chromium.org&gt;[trini: Make this default n, re-run the migration]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_defconfig</description>
        <pubDate>Tue, 18 Oct 2016 02:13:00 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>645176d1d5c37c91ddb06c366678fbe302550387 - configs: Migrate CONFIG_USB_STORAGE</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/vct_premium_defconfig#645176d1d5c37c91ddb06c366678fbe302550387</link>
        <description>configs: Migrate CONFIG_USB_STORAGEIn some cases we were missing CONFIG_USB=y so enable that when needed.Reviewed-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_defconfig</description>
        <pubDate>Thu, 08 Sep 2016 20:31:26 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&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/configs/vct_premium_defconfig#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/configs/vct_premium_defconfig</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>bb597c0eeb7ee2f6e983577d993c76a30dd3c2b4 - common: bootdelay: move CONFIG_BOOTDELAY into a Kconfig option</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/vct_premium_defconfig#bb597c0eeb7ee2f6e983577d993c76a30dd3c2b4</link>
        <description>common: bootdelay: move CONFIG_BOOTDELAY into a Kconfig optionmove CONFIG_BOOTDELAY into a Kconfig option. Used for thispurpose the moveconfig.py tool in tools.Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;Reviewed-by: Tom Rini &lt;trini@konsulko.com&gt;Acked-by: Viresh Kumar &lt;viresh.kumar@linaro.org&gt;Acked-by: Igor Grinberg &lt;grinberg@compulab.co.il&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_defconfig</description>
        <pubDate>Tue, 07 Jun 2016 06:31:14 +0000</pubDate>
        <dc:creator>Heiko Schocher &lt;hs@denx.de&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/vct_premium_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/vct_premium_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/vct_premium_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/vct_premium_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>9e39003e7ffa327adaef468840196de2e8820d2f - ns16550: move CONFIG_SYS_NS16550 to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/vct_premium_defconfig#9e39003e7ffa327adaef468840196de2e8820d2f</link>
        <description>ns16550: move CONFIG_SYS_NS16550 to KconfigMove CONFIG_SYS_NS16550 to Kconfig, and run moveconfig.py.Signed-off-by: Thomas Chou &lt;thomas@wytron.com.tw&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_defconfig</description>
        <pubDate>Thu, 19 Nov 2015 13:48:14 +0000</pubDate>
        <dc:creator>Thomas Chou &lt;thomas@wytron.com.tw&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/vct_premium_defconfig#13a3972585af60ec367d209cedbd3601e0c77467</link>
        <description>Merge remote-tracking branch &apos;u-boot/master&apos;

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_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/vct_premium_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/vct_premium_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/vct_premium_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/vct_premium_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/vct_premium_defconfig#1254ff97abb7606ccd0d7bdcd9f22581c50fe535</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_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/vct_premium_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/vct_premium_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/vct_premium_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/vct_premium_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>c9bb942e2f91d9f8e5f25ed1961eba2d64f65b8d - Move default y configs out of arch/board Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/vct_premium_defconfig#c9bb942e2f91d9f8e5f25ed1961eba2d64f65b8d</link>
        <description>Move default y configs out of arch/board KconfigSome archs/boards specify their own default by pre-defining the configwhich causes the Kconfig system to mix up the order of the configs inthe defconfigs... This will cause merge pain if allowed to proliferate.Remove the configs that behave this way from the archs.A few configs still remain, but that is because they only exist asdefaults and do not have a proper Kconfig entry. Those appear to be:SPIFLASHDISPLAY_BOARDINFOSigned-off-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;[trini: rastaban, am43xx_evm_usbhost_boot, am43xx_evm_ethboot updates,drop DM_USB from MSI_Primo81 as USB_MUSB_SUNXI isn&apos;t converted yet to DM]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/vct_premium_defconfig</description>
        <pubDate>Mon, 22 Jun 2015 21:15:29 +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/vct_premium_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/vct_premium_defconfig</description>
        <pubDate>Mon, 01 Jun 2015 20:47:23 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
</channel>
</rss>
