SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So
SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So we picked thearea of the file that usually had a full license text and replaced itwith an appropriate SPDX-License-Identifier: entry. Since then, theLinux Kernel has adopted SPDX tags and they place it as the very firstline in a file (except where shebangs are used, then it's second line)and with slightly different comment styles than us.In part due to community overlap, in part due to better tag visibilityand in part for other minor reasons, switch over to that style.This commit changes all instances where we have a single declaredlicense in the tag as both the before and after are identical in tagcontents. There's also a few places where I found we did not have a tagand have introduced one.Signed-off-by: Tom Rini <trini@konsulko.com>
show more ...
Convert all of CONFIG_CONS_INDEX to KconfigThis converts the following to Kconfig: CONFIG_CONS_INDEXWe have existing entries for this option in a number of places, withdifferent guards on the
Convert all of CONFIG_CONS_INDEX to KconfigThis converts the following to Kconfig: CONFIG_CONS_INDEXWe have existing entries for this option in a number of places, withdifferent guards on them. They're also sometimes used for things notdirectly inside of the serial driver. First, introduce a new symbol toguard the use of CONFIG_CONS_INDEX, so that in the case where we don'tneed this for the serial driver, but for some other use, we can still doit. Next, consolidate all of these into the single entry indrivers/serial/Kconfig. Finally, introduce CONS_INDEX_[023456] so thatwe can imply a correct value here to make the defconfig side of thissmaller.Signed-off-by: Adam Ford <aford173@gmail.com>[trini: Rework a lot of the logic here, such that I took authorship fromAdam, but kept his S-o-B line]Signed-off-by: Tom Rini <trini@konsulko.com>
net: move Broadcom SF2 driver to Kconfigmove to Kconfig: CONFIG_BCM_SF2_ETH CONFIG_BCM_SF2_ETH_DEFAULT_PORT CONFIG_BCM_SF2_ETH_GMACAlso modified defconfigs of all platforms that use these conf
net: move Broadcom SF2 driver to Kconfigmove to Kconfig: CONFIG_BCM_SF2_ETH CONFIG_BCM_SF2_ETH_DEFAULT_PORT CONFIG_BCM_SF2_ETH_GMACAlso modified defconfigs of all platforms that use these configs.Signed-off-by: Suji Velupillai <suji.velupillai@broadcom.com>Tested-by: Suji Velupillai <suji.velupillai@broadcom.com>Reviewed-by: JD Zheng <jiandong.zheng@broadcom.com>Reviewed-by: Scott Branden <scott.branden@broadcom.com>Signed-off-by: Steve Rae <steve.rae@raedomain.com>Reviewed-by: Tom Rini <trini@konsulko.com>Acked-by: Joe Hershberger <joe.hershberger@ni.com>
configs: Re-sync with cmd/KconfigUpdate the config.h and defconfig files for the commands that 8e3c036converted over to KconfigSigned-off-by: Tom Rini <trini@konsulko.com>
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
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 <trini@konsulko.com>
arm: bcmcygnus: Enable Ethernet supportEnable BCM SF2 ethernet and PHY for BCM Cygnus SoCSigned-off-by: Jiandong Zheng <jdzheng@broadcom.com>Signed-off-by: Steve Rae <srae@broadcom.com>Acked-by
arm: bcmcygnus: Enable Ethernet supportEnable BCM SF2 ethernet and PHY for BCM Cygnus SoCSigned-off-by: Jiandong Zheng <jdzheng@broadcom.com>Signed-off-by: Steve Rae <srae@broadcom.com>Acked-by: Joe Hershberger <joe.hershberger@ni.com>
arm: add Cygnus and NSP boardsThe bcm_ep board configuration is used by a number of boardsincluding Cygnus and NSP.Add builds for the bcm958300k and the bcm958622hr boards.Signed-off-by: Scott
arm: add Cygnus and NSP boardsThe bcm_ep board configuration is used by a number of boardsincluding Cygnus and NSP.Add builds for the bcm958300k and the bcm958622hr boards.Signed-off-by: Scott Branden <sbranden@broadcom.com>Signed-off-by: Steve Rae <srae@broadcom.com>