<?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 sbc8349_defconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>6e7adf7037c76f081b149685fa5e978e2ddf2a22 - 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/sbc8349_defconfig#6e7adf7037c76f081b149685fa5e978e2ddf2a22</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-net

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_defconfig</description>
        <pubDate>Mon, 07 Aug 2017 21:37:56 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>3146f0c017df2231d03dff09cee31f7bd63db3e5 - Move PHYLIB to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/sbc8349_defconfig#3146f0c017df2231d03dff09cee31f7bd63db3e5</link>
        <description>Move PHYLIB to KconfigSigned-off-by: Alexandru Gagniuc &lt;alex.g@adaptrum.com&gt;Acked-by: Joe Hershberger &lt;joe.hershberger@ni.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_defconfig</description>
        <pubDate>Wed, 02 Aug 2017 00:19:59 +0000</pubDate>
        <dc:creator>Alexandru Gagniuc &lt;alex.g@adaptrum.com&gt;</dc:creator>
    </item>
<item>
        <title>8728c97eff5bd95f58320f886ae305f17931a374 - configs: Re-sync</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/sbc8349_defconfig#8728c97eff5bd95f58320f886ae305f17931a374</link>
        <description>configs: Re-syncSigned-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_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/sbc8349_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/sbc8349_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>c27269953b94d19b3fc7a21a1c3e19985507b94d - mmc: complete unfinished move of CONFIG_MMC</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/sbc8349_defconfig#c27269953b94d19b3fc7a21a1c3e19985507b94d</link>
        <description>mmc: complete unfinished move of CONFIG_MMCCommit 7a777f6d6f35 (&quot;mmc: Add generic Kconfig option&quot;) createda Kconfig entry for this option without any actual moves, thencommit 44c798799f66 (&quot;sunxi: Use Kconfig CONFIG_MMC&quot;) movedinstances only for SUNXI.We generally do not like such partial moves.  This kind of workis automated by tools/moveconfig.py, so it is pretty easy tocomplete this move.I am adding &quot;default ARM || PPC || SANDBOX&quot; (suggested by Tom).This shortens the configs and will ease new board porting.This commit was created as follows:[1] Edit Kconfig (remove the &quot;depends on&quot;, add the &quot;default&quot;,    copy the prompt and help message from Linux)[2] Run &apos;tools/moveconfig.py -y -s -r HEAD MMC&apos;Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Reviewed-by: Jaehoon Chung &lt;jh80.chung@samsung.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_defconfig</description>
        <pubDate>Wed, 07 Dec 2016 13:10:26 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>af27382e2d6f7b4966e6932c9820939259498c1b - drivers/pci/Kconfig: Add PCI</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/sbc8349_defconfig#af27382e2d6f7b4966e6932c9820939259498c1b</link>
        <description>drivers/pci/Kconfig: Add PCIAdd &apos;PCI&apos; as a menu option and migrate all existing users.Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;Acked-by: Stephen Warren &lt;swarren@nvidia.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_defconfig</description>
        <pubDate>Wed, 26 Oct 2016 21:15:37 +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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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>adad96e60d0eb1bbc4d0b96c89decf385a426e42 - configs: Re-sync HUSH options</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/sbc8349_defconfig#adad96e60d0eb1bbc4d0b96c89decf385a426e42</link>
        <description>configs: Re-sync HUSH optionsMove all cases of CONFIG_SYS_HUSH_PARSER out of the config.h files.  Removeall cases of CONFIG_SYS_PROMPT_HUSH_PS2 as everyone uses the default.Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_defconfig</description>
        <pubDate>Fri, 22 Apr 2016 01:37:19 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>73223f0e1bd0e37925ae1b7f21b51733145571dc - Kconfig: Move CONFIG_FIT and related options to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/sbc8349_defconfig#73223f0e1bd0e37925ae1b7f21b51733145571dc</link>
        <description>Kconfig: Move CONFIG_FIT and related options to KconfigThere are already two FIT options in Kconfig but the CONFIG options arestill in the header files. We need to do a proper move to fix this.Move these options to Kconfig and tidy up board configuration:   CONFIG_FIT   CONFIG_OF_BOARD_SETUP   CONFIG_OF_SYSTEM_SETUP   CONFIG_FIT_SIGNATURE   CONFIG_FIT_BEST_MATCH   CONFIG_FIT_VERBOSE   CONFIG_OF_STDOUT_VIA_ALIAS   CONFIG_RSAUnfortunately the first one is a little complicated. We need to make surethis option is not enabled in SPL by this change. Also this option isenabled automatically in the host builds by defining CONFIG_FIT in theimage.h file. To solve this, add a new IMAGE_USE_FIT #define which canbe used in files that are built on the host but must also build for U-Bootand SPL.Note: Masahiro&apos;s moveconfig.py script is amazing.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;[trini: Add microblaze change, various configs/ re-applies]Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_defconfig</description>
        <pubDate>Tue, 23 Feb 2016 05:55:43 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>69e173eb57d1f4848f070c83456096ba5d2ba1b4 - Move CONFIG_OF_LIBFDT to Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/sbc8349_defconfig#69e173eb57d1f4848f070c83456096ba5d2ba1b4</link>
        <description>Move CONFIG_OF_LIBFDT to KconfigMove this option to Kconfig and tidy up existing boards.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_defconfig</description>
        <pubDate>Tue, 23 Feb 2016 05:55:42 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&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/sbc8349_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/sbc8349_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>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/sbc8349_defconfig#1254ff97abb7606ccd0d7bdcd9f22581c50fe535</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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/sbc8349_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>e82abaeb7f2a0833fccf90460c48b9f2100258f8 - Merge branch &apos;master&apos; of git://git.denx.de/u-boot-arm</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/sbc8349_defconfig#e82abaeb7f2a0833fccf90460c48b9f2100258f8</link>
        <description>Merge branch &apos;master&apos; of git://git.denx.de/u-boot-armConflicts:	boards.cfgSigned-off-by: Stefano Babic &lt;sbabic@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/sbc8349_defconfig</description>
        <pubDate>Mon, 11 Aug 2014 08:21:03 +0000</pubDate>
        <dc:creator>Stefano Babic &lt;sbabic@denx.de&gt;</dc:creator>
    </item>
</channel>
</rss>
