<?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 edison_defconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>1a4f6af8bfd44c8ae6e87a81ff125eed47042cc5 - Merge branch &apos;next-dev&apos; into thunder-boot</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#1a4f6af8bfd44c8ae6e87a81ff125eed47042cc5</link>
        <description>Merge branch &apos;next-dev&apos; into thunder-boot

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Mon, 02 Mar 2020 01:43:23 +0000</pubDate>
        <dc:creator>Joseph Chen &lt;chenjh@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>473221da5a5a767b650f97c0a6e63b0854c2221a - UPSTREAM: usb: gadget: Make g_dnl USB settings common</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#473221da5a5a767b650f97c0a6e63b0854c2221a</link>
        <description>UPSTREAM: usb: gadget: Make g_dnl USB settings commonThe g_dnl USB settings for the vendor ID, product ID and manufacturer areactually common settings that can and should be shared by all the gadgets.Make them common by renaming them, and convert all the users.Conflicts:	configs/cgtqmx6eval_defconfig	configs/dms-ba16-1g_defconfig	configs/evb-rk3036_defconfig	configs/evb-rk3229_defconfig	configs/evb-rv1108_defconfig	configs/fennec-rk3288_defconfig	configs/stih410-b2260_defconfigChange-Id: Ib855d37af9f539ef794a2519c75c027e67bd091cReviewed-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Lukasz Majewski &lt;lukma@denx.de&gt;Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Signed-off-by: Frank Wang &lt;frank.wang@rock-chips.com&gt;(cherry picked from commit a95aee6af70d8815547b81329125f2800c8ee37c)

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Thu, 07 Sep 2017 06:58:08 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
<item>
        <title>4ccceefb7f0bbbcde849a1886dfb0c45cc2c746e - edison: Disable CONFIG_USB_HOST_ETHER</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#4ccceefb7f0bbbcde849a1886dfb0c45cc2c746e</link>
        <description>edison: Disable CONFIG_USB_HOST_ETHERThis board does dwc3 gadget, not host, so we cannot have host support orwe will fail to link.Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Fri, 08 Sep 2017 20:43:24 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>0031af9ce7b1c2d98ce77cc20bd7546d64e334fe - Merge git://git.denx.de/u-boot-x86</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#0031af9ce7b1c2d98ce77cc20bd7546d64e334fe</link>
        <description>Merge git://git.denx.de/u-boot-x86

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Sat, 26 Aug 2017 19:10:40 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>c11b17c6bf6c4bf2aa0f9a6f5de2c527e398ad63 - x86: kconfig: Imply CMD_PCI</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#c11b17c6bf6c4bf2aa0f9a6f5de2c527e398ad63</link>
        <description>x86: kconfig: Imply CMD_PCILet&apos;s imply the &apos;pci&apos; command to access the de facto interconnectbus in an x86 system.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Stefan Roese &lt;sr@denx.de&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Wed, 16 Aug 2017 12:46:49 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@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/configs/edison_defconfig#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/configs/edison_defconfig</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>88663126a009d0c354d832e005a5b3b511e5c7fb - configs: Resync with savedefconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_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/edison_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>07d778382200a05a8b86cc135f79ec48e386f25a - Merge git://git.denx.de/u-boot-x86</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#07d778382200a05a8b86cc135f79ec48e386f25a</link>
        <description>Merge git://git.denx.de/u-boot-x86

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Tue, 01 Aug 2017 19:38:32 +0000</pubDate>
        <dc:creator>Tom Rini &lt;trini@konsulko.com&gt;</dc:creator>
    </item>
<item>
        <title>b7c6baef2891ce8978cbfddb66e944943473ac21 - x86: Convert MMC to driver model</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#b7c6baef2891ce8978cbfddb66e944943473ac21</link>
        <description>x86: Convert MMC to driver modelConvert the pci_mmc driver over to driver model and migrate all x86 boardsthat use it.Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;Reviewed-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Tested-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;[bmeng: remove DM_MMC from edison_defconfig]Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Mon, 31 Jul 2017 02:24:01 +0000</pubDate>
        <dc:creator>Simon Glass &lt;sjg@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>71305b44788dcb8f66a706ae303463852f3df5f8 - x86: tangier: kconfig: Imply platform specific drivers</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#71305b44788dcb8f66a706ae303463852f3df5f8</link>
        <description>x86: tangier: kconfig: Imply platform specific driversImply Tangier-specific drivers in the platform Kconfig.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Sun, 30 Jul 2017 13:23:22 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4f0faacb42145e34cb56c8b2d7867a1ec15f63ac - x86: kconfig: Imply DM uclass drivers</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#4f0faacb42145e34cb56c8b2d7867a1ec15f63ac</link>
        <description>x86: kconfig: Imply DM uclass driversNow that all x86 boards have been converted to use DM, we can implythese uclass drivers (DM_ETH, DM_RTC, DM_USB, DM_VIDEO) from thetop level.Previously DM_GPIO, DM_KEYBOARD, DM_SERIAL, DM_SPI, DM_SPI_FLASHare selected. Change to use &apos;imply&apos; to allow them to be removed.Note with this change, chromebook_link64 build fails:common/built-in.o:(.data.env_htab+0xc): undefined reference to &apos;env_flags_validate&apos;lib/built-in.o: In function `hsearch_r&apos;:lib/hashtable.c:380: undefined reference to &apos;env_callback_init&apos;lib/hashtable.c:382: undefined reference to &apos;env_flags_init&apos;make[1]: *** [spl/u-boot-spl] Error 1CONFIG_SPL_ENV_SUPPORT is required for chromebook_link64 to buildagain. This is just a workaround as it is not needed at all. Seecommit bda40d5 &quot;x86: qemu: Add a config for 64-bit U-Boot&quot; forthe same issue seen on QEMU 64-bit target.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Sun, 30 Jul 2017 13:23:16 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>263252c762c43fd968c924dfd6e1c3db930a35a2 - x86: kconfig: Select OF_CONTROL</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#263252c762c43fd968c924dfd6e1c3db930a35a2</link>
        <description>x86: kconfig: Select OF_CONTROLThis is a must have for all x86 boards.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Sun, 30 Jul 2017 13:23:15 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5d89b37f71ff1833bdd34eeba6dbac6bec1c9fb2 - x86: kconfig: Select ARCH_EARLY_INIT_R in the platform Kconfig</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#5d89b37f71ff1833bdd34eeba6dbac6bec1c9fb2</link>
        <description>x86: kconfig: Select ARCH_EARLY_INIT_R in the platform KconfigThis is architecture-dependent early initialization hence shouldbe put in the platform Kconfig.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Sun, 30 Jul 2017 13:23:13 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>30b1ecd26533fdd680b66c0ed6767cc4b875fbc6 - x86: kconfig: Let board select BOARD_EARLY_INIT_F</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#30b1ecd26533fdd680b66c0ed6767cc4b875fbc6</link>
        <description>x86: kconfig: Let board select BOARD_EARLY_INIT_FCONFIG_BOARD_EARLY_INIT_F literally indicates board-specific codesand should be not &apos;default y&apos; for all x86 boards.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Sun, 30 Jul 2017 13:23:11 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6bf89de7e1189a61522dd1f8880d8d2be8d3ba57 - x86: kconfig: Select PCI and DM_PCI</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#6bf89de7e1189a61522dd1f8880d8d2be8d3ba57</link>
        <description>x86: kconfig: Select PCI and DM_PCIPCI is the de facto interconnect bus in an x86 system.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Sun, 30 Jul 2017 13:23:09 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e28497bf4a13cbc2b260b8ae8164ca97cf636e61 - x86: kconfig: Select USE_PRIVATE_LIBGCC</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#e28497bf4a13cbc2b260b8ae8164ca97cf636e61</link>
        <description>x86: kconfig: Select USE_PRIVATE_LIBGCCx86 is using the built-in libgcc implementation and this cannot beturned off.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Sun, 30 Jul 2017 13:23:08 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0ce9c57620a375bf58ae8d9a20698fb295bd1584 - x86: kconfig: Select TIMER and X86_TSC_TIMER</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#0ce9c57620a375bf58ae8d9a20698fb295bd1584</link>
        <description>x86: kconfig: Select TIMER and X86_TSC_TIMERWithout a timer, U-Boot just doesn&apos;t boot. This is not somethingwe can turn off.Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Sun, 30 Jul 2017 13:23:07 +0000</pubDate>
        <dc:creator>Bin Meng &lt;bmeng.cn@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>495f3774be68e44a85b7e4b4f7964f8312bd8fc8 - x86: Add Intel Edison board files</title>
        <link>http://opengrok.muzhidianzi.cn:8080/history/rk3399_rockchip-uboot/configs/edison_defconfig#495f3774be68e44a85b7e4b4f7964f8312bd8fc8</link>
        <description>x86: Add Intel Edison board filesAdd Intel Edison board which is using U-Boot.The patch is based on work done by the following people (in alphabeticalorder):	Aiden Park &lt;aiden.park@intel.com&gt;	Dukjoon Jeon &lt;dukjoon.jeon@intel.com&gt;	eric.park &lt;eric.park@intel.com&gt;	Fabien Chereau &lt;fabien.chereau@intel.com&gt;	Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;	Scott D Phillips &lt;scott.d.phillips@intel.com&gt;	Sebastien Colleur &lt;sebastienx.colleur@intel.com&gt;	Steve Sakoman &lt;steve.sakoman@intel.com&gt;	Vincent Tinelli &lt;vincent.tinelli@intel.com&gt;In case we&apos;re building for Intel Edison, we must have 4096 bytes ofzeroes in the beginning on u-boot.bin. This is done inboard/intel/edison/config.mk.First run sets hardware_id environment variable which is read fromSystem Controller Unit (SCU).Serial number (serial# environment variable) is generated based on eMMCCID.MAC address on USB network interface is unique to the board but kept thesame all over the time.Set mac address from U-Boot using following scheme:	OUI = 02:00:86	next 3 bytes of MAC address set from eMMC serial numberThis allows to have a unique mac address across reboot and flashing.Signed-off-by: Vincent Tinelli &lt;vincent.tinelli@intel.com&gt;Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Reviewed-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;[bmeng: Add MAINTAINERS file for Intel Edison board]Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;

            List of files:
            /rk3399_rockchip-uboot/configs/edison_defconfig</description>
        <pubDate>Thu, 06 Jul 2017 11:41:53 +0000</pubDate>
        <dc:creator>Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
