History log of /rk3399_rockchip-uboot/tools/ (Results 226 – 250 of 1450)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
f156b5b530-Mar-2017 George McCollister <george.mccollister@gmail.com>

dtoc: Decode val if it's a byte string

With Python 3.5.2 encode will throw an exception if val is a byte array.
Decode it to a string first. This assumes it's utf-8, if it's not valid
utf-8 it will

dtoc: Decode val if it's a byte string

With Python 3.5.2 encode will throw an exception if val is a byte array.
Decode it to a string first. This assumes it's utf-8, if it's not valid
utf-8 it will throw an exception.

Signed-off-by: George McCollister <george.mccollister@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

6db06f9430-Mar-2017 George McCollister <george.mccollister@gmail.com>

patman: Convert byte arrays to strings

os.read() returns a byte array in Python 3.5.2 and needs to be converted
into a string. Check if the returned value is an instance of bytes and
if it is decode

patman: Convert byte arrays to strings

os.read() returns a byte array in Python 3.5.2 and needs to be converted
into a string. Check if the returned value is an instance of bytes and
if it is decode it as a utf-8 string. If it is not a utf-8 encoded string
the decoding may fail with an exception.

Prior to this fix the comparisions check data == "" would fail when data
was b'' and would cause an infinite memory leaking loop. joins would
also fail with an exception below but due to the infinite loop it never
made it that far.

Signed-off-by: George McCollister <george.mccollister@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/.travis.yml
/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arc/lib/cache.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap5/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/ti-common/omap_wdt.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/config.mk
/rk3399_rockchip-uboot/arch/arm/mach-keystone/mon.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/clocks-common.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/config_secure.mk
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/include/asm/cpu.h
/rk3399_rockchip-uboot/arch/x86/include/asm/pmu.h
/rk3399_rockchip-uboot/arch/x86/include/asm/scu.h
/rk3399_rockchip-uboot/arch/x86/lib/Makefile
/rk3399_rockchip-uboot/arch/x86/lib/pmu.c
/rk3399_rockchip-uboot/arch/x86/lib/scu.c
/rk3399_rockchip-uboot/common/spl/spl_net.c
/rk3399_rockchip-uboot/configs/am335x_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2e_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2l_evm_defconfig
/rk3399_rockchip-uboot/configs/omapl138_lcdk_defconfig
/rk3399_rockchip-uboot/configs/rock_defconfig
/rk3399_rockchip-uboot/doc/README.ti-secure
/rk3399_rockchip-uboot/drivers/mtd/nand/am335x_spl_bch.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/ns16550.c
/rk3399_rockchip-uboot/drivers/serial/serial_intel_mid.c
/rk3399_rockchip-uboot/drivers/watchdog/omap_wdt.c
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/k2g_evm.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/environment/ti/mmc.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/lib/libfdt/fdt_overlay.c
/rk3399_rockchip-uboot/lib/libfdt/fdt_rw.c
/rk3399_rockchip-uboot/lib/libfdt/fdt_strerror.c
/rk3399_rockchip-uboot/lib/libfdt/setup.py
/rk3399_rockchip-uboot/scripts/Makefile.spl
patman/cros_subprocess.py
33f0086c05-Apr-2017 Stefano Babic <sbabic@denx.de>

env: fix memory leak in fw_env routines

fw_env_open allocates buffers to store the environment, but these
buffers are never freed. This becomes quite nasty using the fw_ tools as
library, because ea

env: fix memory leak in fw_env routines

fw_env_open allocates buffers to store the environment, but these
buffers are never freed. This becomes quite nasty using the fw_ tools as
library, because each access to the environment (even just reading a
variable) generates a memory leak equal to the size of the environment.

Fix this renaming fw_env_close() as fw_env_flush(), because the function
really flushes the environment from RAM to storage, and add a
fw_env_close function to free the allocated resources.

Signed-off-by: Stefano Babic <sbabic@denx.de>

show more ...

00c234f305-Apr-2017 Stefano Babic <sbabic@denx.de>

env: add a version number to check API

Changes in the environment library are difficult to tracked by programs
using the library. Add simply an API version number that must be
increased each time wh

env: add a version number to check API

Changes in the environment library are difficult to tracked by programs
using the library. Add simply an API version number that must be
increased each time when the API is changed.

This can be detected and a program can work with different versions of
the library.

Signed-off-by: Stefano Babic <sbabic@denx.de>

show more ...

9d80b49a05-Apr-2017 Stefano Babic <sbabic@denx.de>

env: split fw_env.h in public and private parts

Move U-Boot private data into a separate file. This
lets export fw_env.h to be used by external programs
that want to change the environment using the

env: split fw_env.h in public and private parts

Move U-Boot private data into a separate file. This
lets export fw_env.h to be used by external programs
that want to change the environment using the library
built in tools/env.

Signed-off-by: Stefano Babic <sbabic@denx.de>

show more ...

b80c0b9905-Apr-2017 Stefano Babic <sbabic@denx.de>

Rename aes.h to uboot_aes.h

aes.h is a too generic name if this file can
be exported and used by a program.
Rename it to avoid any conflicts with
other files (for example, from openSSL).

Signed-off

Rename aes.h to uboot_aes.h

aes.h is a too generic name if this file can
be exported and used by a program.
Rename it to avoid any conflicts with
other files (for example, from openSSL).

Signed-off-by: Stefano Babic <sbabic@denx.de>

show more ...


/rk3399_rockchip-uboot/.travis.yml
/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arc/lib/cache.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap5/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/ti-common/omap_wdt.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/config.mk
/rk3399_rockchip-uboot/arch/arm/mach-keystone/mon.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/clocks-common.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/config_secure.mk
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/crypto.c
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/include/asm/cpu.h
/rk3399_rockchip-uboot/arch/x86/include/asm/pmu.h
/rk3399_rockchip-uboot/arch/x86/include/asm/scu.h
/rk3399_rockchip-uboot/arch/x86/lib/Makefile
/rk3399_rockchip-uboot/arch/x86/lib/pmu.c
/rk3399_rockchip-uboot/arch/x86/lib/scu.c
/rk3399_rockchip-uboot/cmd/aes.c
/rk3399_rockchip-uboot/common/env_common.c
/rk3399_rockchip-uboot/common/spl/spl_net.c
/rk3399_rockchip-uboot/configs/am335x_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2e_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/k2l_evm_defconfig
/rk3399_rockchip-uboot/configs/omapl138_lcdk_defconfig
/rk3399_rockchip-uboot/doc/README.ti-secure
/rk3399_rockchip-uboot/drivers/mtd/nand/am335x_spl_bch.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial_intel_mid.c
/rk3399_rockchip-uboot/drivers/watchdog/omap_wdt.c
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/k2g_evm.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/environment/ti/mmc.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/uboot_aes.h
/rk3399_rockchip-uboot/lib/aes.c
/rk3399_rockchip-uboot/lib/libfdt/fdt_overlay.c
/rk3399_rockchip-uboot/lib/libfdt/fdt_rw.c
/rk3399_rockchip-uboot/lib/libfdt/fdt_strerror.c
/rk3399_rockchip-uboot/lib/libfdt/setup.py
/rk3399_rockchip-uboot/scripts/Makefile.spl
env/fw_env.h
ae5564d105-Apr-2017 Bin Meng <bmeng.cn@gmail.com>

tools: binman: Add missing filenames for various x86 rom tests

With recent changes, some x86-specific rom tests of binman fail to
run. Fix it by adding missing filenames in corresponding entries.

S

tools: binman: Add missing filenames for various x86 rom tests

With recent changes, some x86-specific rom tests of binman fail to
run. Fix it by adding missing filenames in corresponding entries.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...

2b4c652830-Mar-2017 Stefan Roese <sr@denx.de>

binman: Remove hard-coded file name for x86 flash-descriptor & intel-me

Now that we have added file names from Kconfig in x86 u-boot.dtsi,
update binman to avoid using hard-coded names.

Signed-off-

binman: Remove hard-coded file name for x86 flash-descriptor & intel-me

Now that we have added file names from Kconfig in x86 u-boot.dtsi,
update binman to avoid using hard-coded names.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Bin Meng <bmeng.cn@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

show more ...


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/api/api_storage.c
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/interrupts.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/s3c24x0/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/cache.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/zynqmp/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/sa1100/cpu.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/axp209.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/exynos4210-trats.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4412-odroid.dts
/rk3399_rockchip-uboot/arch/arm/dts/exynos4412-trats2.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun5i-gr8-chip-pro.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun5i-gr8.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/sun9i-a80-cx-a99.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun9i-a80.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/armv7m.h
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/lib/interrupts.c
/rk3399_rockchip-uboot/arch/arm/lib/stack.c
/rk3399_rockchip-uboot/arch/arm/lib/vectors.S
/rk3399_rockchip-uboot/arch/arm/mach-davinci/misc.c
/rk3399_rockchip-uboot/arch/arm/mach-keystone/cmd_ddr3.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f7/soc.c
/rk3399_rockchip-uboot/arch/avr32/cpu/exception.c
/rk3399_rockchip-uboot/arch/nds32/cpu/n1213/start.S
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/dts/u-boot.dtsi
/rk3399_rockchip-uboot/board/Barix/ipam390/ipam390.c
/rk3399_rockchip-uboot/board/davinci/da8xxevm/da850evm.c
/rk3399_rockchip-uboot/board/davinci/da8xxevm/omapl138_lcdk.c
/rk3399_rockchip-uboot/board/davinci/ea20/ea20.c
/rk3399_rockchip-uboot/board/lego/ev3/legoev3.c
/rk3399_rockchip-uboot/board/omicron/calimain/calimain.c
/rk3399_rockchip-uboot/board/samsung/trats/trats.c
/rk3399_rockchip-uboot/board/samsung/trats2/trats2.c
/rk3399_rockchip-uboot/board/st/stih410-b2260/board.c
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/README.nand
/rk3399_rockchip-uboot/board/ti/am335x/board.c
/rk3399_rockchip-uboot/board/ti/am57xx/mux_data.h
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/mtdparts.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/env_mmc.c
/rk3399_rockchip-uboot/common/image-fdt.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/common/xyzModem.c
/rk3399_rockchip-uboot/configs/CHIP_pro_defconfig
/rk3399_rockchip-uboot/configs/Sunchip_CX-A99_defconfig
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/blanche_defconfig
/rk3399_rockchip-uboot/configs/gose_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/porter_defconfig
/rk3399_rockchip-uboot/configs/salvator-x_defconfig
/rk3399_rockchip-uboot/configs/silk_defconfig
/rk3399_rockchip-uboot/configs/stout_defconfig
/rk3399_rockchip-uboot/configs/sun8i_a23_evb_defconfig
/rk3399_rockchip-uboot/configs/trats2_defconfig
/rk3399_rockchip-uboot/configs/trats_defconfig
/rk3399_rockchip-uboot/drivers/mtd/nand/Kconfig
/rk3399_rockchip-uboot/drivers/mtd/ubi/Kconfig
/rk3399_rockchip-uboot/drivers/net/enc28j60.c
/rk3399_rockchip-uboot/drivers/rtc/rtc-uclass.c
/rk3399_rockchip-uboot/include/configs/advantech_dms-ba16.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am335x_igep0033.h
/rk3399_rockchip-uboot/include/configs/aristainetos-common.h
/rk3399_rockchip-uboot/include/configs/atngw100.h
/rk3399_rockchip-uboot/include/configs/atngw100mkii.h
/rk3399_rockchip-uboot/include/configs/atstk1002.h
/rk3399_rockchip-uboot/include/configs/bcm23550_w1d.h
/rk3399_rockchip-uboot/include/configs/bcm28155_ap.h
/rk3399_rockchip-uboot/include/configs/bcm_ep_board.h
/rk3399_rockchip-uboot/include/configs/cm_fx6.h
/rk3399_rockchip-uboot/include/configs/colibri_imx7.h
/rk3399_rockchip-uboot/include/configs/colibri_vf.h
/rk3399_rockchip-uboot/include/configs/edb93xx.h
/rk3399_rockchip-uboot/include/configs/el6x_common.h
/rk3399_rockchip-uboot/include/configs/embestmx6boards.h
/rk3399_rockchip-uboot/include/configs/ge_bx50v3.h
/rk3399_rockchip-uboot/include/configs/grasshopper.h
/rk3399_rockchip-uboot/include/configs/k2e_evm.h
/rk3399_rockchip-uboot/include/configs/k2g_evm.h
/rk3399_rockchip-uboot/include/configs/k2hk_evm.h
/rk3399_rockchip-uboot/include/configs/k2l_evm.h
/rk3399_rockchip-uboot/include/configs/liteboard.h
/rk3399_rockchip-uboot/include/configs/ls1021aiot.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/ls1043aqds.h
/rk3399_rockchip-uboot/include/configs/ls1046aqds.h
/rk3399_rockchip-uboot/include/configs/mx6sabre_common.h
/rk3399_rockchip-uboot/include/configs/mx6slevk.h
/rk3399_rockchip-uboot/include/configs/mx6sllevk.h
/rk3399_rockchip-uboot/include/configs/mx6sxsabreauto.h
/rk3399_rockchip-uboot/include/configs/mx6sxsabresd.h
/rk3399_rockchip-uboot/include/configs/mx6ul_14x14_evk.h
/rk3399_rockchip-uboot/include/configs/mx6ullevk.h
/rk3399_rockchip-uboot/include/configs/mx7dsabresd.h
/rk3399_rockchip-uboot/include/configs/mx7ulp_evk.h
/rk3399_rockchip-uboot/include/configs/nokia_rx51.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/pcm052.h
/rk3399_rockchip-uboot/include/configs/pic32mzdask.h
/rk3399_rockchip-uboot/include/configs/pico-imx6ul.h
/rk3399_rockchip-uboot/include/configs/s32v234evb.h
/rk3399_rockchip-uboot/include/configs/siemens-am33x-common.h
/rk3399_rockchip-uboot/include/configs/stm32f429-discovery.h
/rk3399_rockchip-uboot/include/configs/stm32f746-disco.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/ti814x_evm.h
/rk3399_rockchip-uboot/include/configs/ti816x_evm.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/include/configs/tqma6.h
/rk3399_rockchip-uboot/include/configs/udoo_neo.h
/rk3399_rockchip-uboot/include/configs/vf610twr.h
/rk3399_rockchip-uboot/include/configs/vining_2000.h
/rk3399_rockchip-uboot/include/configs/warp.h
/rk3399_rockchip-uboot/include/configs/warp7.h
/rk3399_rockchip-uboot/include/configs/woodburn_common.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/configs/xtfpga.h
/rk3399_rockchip-uboot/include/environment.h
/rk3399_rockchip-uboot/include/environment/ti/spi.h
/rk3399_rockchip-uboot/include/rtc.h
/rk3399_rockchip-uboot/include/xyzModem.h
/rk3399_rockchip-uboot/lib/Kconfig
/rk3399_rockchip-uboot/scripts/Makefile.spl
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
binman/etype/intel_descriptor.py
binman/etype/intel_me.py
594b4cc727-Feb-2017 Maxime Ripard <maxime.ripard@free-electrons.com>

tools: sunxi: Add spl image builder

This program generates raw SPL images that can be flashed on the NAND with
the ECC and randomizer properly set up.

This has been copied (and tweaked to find the

tools: sunxi: Add spl image builder

This program generates raw SPL images that can be flashed on the NAND with
the ECC and randomizer properly set up.

This has been copied (and tweaked to find the right headers) from the
sunxi-tools (https://github.com/linux-sunxi/sunxi-tools) upstream
repository, commit 1c3a6ca5.

Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Jagan Teki <jagan@openedev.com>

show more ...


/rk3399_rockchip-uboot/.travis.yml
/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/armada100/dram.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/psci.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/timer.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/nonsec_virt.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/psci.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/rk3188-radxarock.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-firefly.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-miqi.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-miqi.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-puma.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-sdram-ddr3-1333.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/sun50i-h5-orangepi-pc2.dts
/rk3399_rockchip-uboot/arch/arm/dts/sun8i-h3-nanopi-neo-air.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3188.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3288.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3399.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/periph.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/cpu_sun4i.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/dram.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/spl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/u-boot-arm.h
/rk3399_rockchip-uboot/arch/arm/lib/bootm.c
/rk3399_rockchip-uboot/arch/arm/mach-davinci/misc.c
/rk3399_rockchip-uboot/arch/arm/mach-meson/board.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/arm64-common.c
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/dram.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/emif4.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/emif4.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/sdrc.c
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/dram.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188-board-tpl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188-board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188/sdram_rk3188.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3288/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399/rk3399.c
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/board.c
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/clock_sun6i.c
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/cpu_info.c
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/dram_sun8i_h3.c
/rk3399_rockchip-uboot/arch/arm/mach-sunxi/usb_phy.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/board2.c
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra186/nvtboot_mem.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram_init.c
/rk3399_rockchip-uboot/arch/mips/mach-ath79/dram.c
/rk3399_rockchip-uboot/arch/mips/mach-pic32/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/spl_boot.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/44x_spd_ddr2.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/denali_spd_ddr2.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/sdram.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/spl_boot.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/processor.h
/rk3399_rockchip-uboot/arch/powerpc/lib/Makefile
/rk3399_rockchip-uboot/arch/powerpc/lib/setup.c
/rk3399_rockchip-uboot/arch/powerpc/lib/time.c
/rk3399_rockchip-uboot/arch/sandbox/cpu/start.c
/rk3399_rockchip-uboot/arch/x86/cpu/broadwell/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/broadwell/sdram.c
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/coreboot.c
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/sdram.c
/rk3399_rockchip-uboot/arch/x86/cpu/efi/efi.c
/rk3399_rockchip-uboot/arch/x86/cpu/efi/sdram.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/ivybridge/sdram.c
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/dram.c
/rk3399_rockchip-uboot/arch/x86/cpu/qemu/qemu.c
/rk3399_rockchip-uboot/arch/x86/cpu/quark/dram.c
/rk3399_rockchip-uboot/arch/x86/cpu/quark/quark.c
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/tnc.c
/rk3399_rockchip-uboot/arch/x86/cpu/x86_64/cpu.c
/rk3399_rockchip-uboot/arch/x86/include/asm/u-boot-x86.h
/rk3399_rockchip-uboot/arch/x86/lib/efi/efi.c
/rk3399_rockchip-uboot/arch/x86/lib/fsp/fsp_common.c
/rk3399_rockchip-uboot/arch/x86/lib/fsp/fsp_dram.c
/rk3399_rockchip-uboot/arch/x86/lib/relocate.c
/rk3399_rockchip-uboot/arch/x86/lib/spl.c
/rk3399_rockchip-uboot/arch/xtensa/lib/relocate.c
/rk3399_rockchip-uboot/board/AndesTech/adp-ag101p/adp-ag101p.c
/rk3399_rockchip-uboot/board/Arcturus/ucp1020/spl.c
/rk3399_rockchip-uboot/board/BuS/eb_cpu5282/eb_cpu5282.c
/rk3399_rockchip-uboot/board/a3m071/a3m071.c
/rk3399_rockchip-uboot/board/a4m072/a4m072.c
/rk3399_rockchip-uboot/board/amcc/acadia/memory.c
/rk3399_rockchip-uboot/board/amcc/bamboo/bamboo.c
/rk3399_rockchip-uboot/board/amcc/bubinga/bubinga.c
/rk3399_rockchip-uboot/board/amcc/sequoia/sdram.c
/rk3399_rockchip-uboot/board/amcc/walnut/walnut.c
/rk3399_rockchip-uboot/board/amcc/yosemite/yosemite.c
/rk3399_rockchip-uboot/board/armadeus/apf27/apf27.c
/rk3399_rockchip-uboot/board/armltd/vexpress/vexpress_common.c
/rk3399_rockchip-uboot/board/armltd/vexpress64/vexpress64.c
/rk3399_rockchip-uboot/board/astro/mcf5373l/mcf5373l.c
/rk3399_rockchip-uboot/board/beckhoff/mx53cx9020/mx53cx9020.c
/rk3399_rockchip-uboot/board/broadcom/bcm23550_w1d/bcm23550_w1d.c
/rk3399_rockchip-uboot/board/broadcom/bcm28155_ap/bcm28155_ap.c
/rk3399_rockchip-uboot/board/broadcom/bcm_ep/board.c
/rk3399_rockchip-uboot/board/broadcom/bcmns2/northstar2.c
/rk3399_rockchip-uboot/board/cadence/xtfpga/xtfpga.c
/rk3399_rockchip-uboot/board/canmb/canmb.c
/rk3399_rockchip-uboot/board/cirrus/edb93xx/edb93xx.c
/rk3399_rockchip-uboot/board/cm5200/cm5200.c
/rk3399_rockchip-uboot/board/cobra5272/cobra5272.c
/rk3399_rockchip-uboot/board/compulab/cm_fx6/cm_fx6.c
/rk3399_rockchip-uboot/board/davedenx/aria/aria.c
/rk3399_rockchip-uboot/board/dbau1x00/dbau1x00.c
/rk3399_rockchip-uboot/board/denx/m53evk/m53evk.c
/rk3399_rockchip-uboot/board/esd/mecp5123/mecp5123.c
/rk3399_rockchip-uboot/board/esd/meesc/meesc.c
/rk3399_rockchip-uboot/board/esd/pmc440/sdram.c
/rk3399_rockchip-uboot/board/esd/vme8349/vme8349.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/spl.c
/rk3399_rockchip-uboot/board/freescale/c29xpcie/spl.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ls1046aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080a/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/m5208evbe/m5208evbe.c
/rk3399_rockchip-uboot/board/freescale/m52277evb/m52277evb.c
/rk3399_rockchip-uboot/board/freescale/m5235evb/m5235evb.c
/rk3399_rockchip-uboot/board/freescale/m5249evb/m5249evb.c
/rk3399_rockchip-uboot/board/freescale/m5253demo/m5253demo.c
/rk3399_rockchip-uboot/board/freescale/m5253evbe/m5253evbe.c
/rk3399_rockchip-uboot/board/freescale/m5272c3/m5272c3.c
/rk3399_rockchip-uboot/board/freescale/m5275evb/m5275evb.c
/rk3399_rockchip-uboot/board/freescale/m5282evb/m5282evb.c
/rk3399_rockchip-uboot/board/freescale/m53017evb/m53017evb.c
/rk3399_rockchip-uboot/board/freescale/m5329evb/m5329evb.c
/rk3399_rockchip-uboot/board/freescale/m5373evb/m5373evb.c
/rk3399_rockchip-uboot/board/freescale/m54418twr/m54418twr.c
/rk3399_rockchip-uboot/board/freescale/m54451evb/m54451evb.c
/rk3399_rockchip-uboot/board/freescale/m54455evb/m54455evb.c
/rk3399_rockchip-uboot/board/freescale/m547xevb/m547xevb.c
/rk3399_rockchip-uboot/board/freescale/m548xevb/m548xevb.c
/rk3399_rockchip-uboot/board/freescale/mpc5121ads/mpc5121ads.c
/rk3399_rockchip-uboot/board/freescale/mpc8308rdb/sdram.c
/rk3399_rockchip-uboot/board/freescale/mpc8313erdb/mpc8313erdb.c
/rk3399_rockchip-uboot/board/freescale/mpc8313erdb/sdram.c
/rk3399_rockchip-uboot/board/freescale/mpc8315erdb/mpc8315erdb.c
/rk3399_rockchip-uboot/board/freescale/mpc8315erdb/sdram.c
/rk3399_rockchip-uboot/board/freescale/mpc8323erdb/mpc8323erdb.c
/rk3399_rockchip-uboot/board/freescale/mpc832xemds/mpc832xemds.c
/rk3399_rockchip-uboot/board/freescale/mpc8349emds/mpc8349emds.c
/rk3399_rockchip-uboot/board/freescale/mpc8349itx/mpc8349itx.c
/rk3399_rockchip-uboot/board/freescale/mpc837xemds/mpc837xemds.c
/rk3399_rockchip-uboot/board/freescale/mpc837xerdb/mpc837xerdb.c
/rk3399_rockchip-uboot/board/freescale/mpc8610hpcd/mpc8610hpcd.c
/rk3399_rockchip-uboot/board/freescale/mpc8641hpcn/mpc8641hpcn.c
/rk3399_rockchip-uboot/board/freescale/mx35pdk/mx35pdk.c
/rk3399_rockchip-uboot/board/freescale/mx53ard/mx53ard.c
/rk3399_rockchip-uboot/board/freescale/mx53loco/mx53loco.c
/rk3399_rockchip-uboot/board/freescale/mx53smd/mx53smd.c
/rk3399_rockchip-uboot/board/freescale/p1010rdb/spl.c
/rk3399_rockchip-uboot/board/freescale/p1022ds/spl.c
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb_pc/spl.c
/rk3399_rockchip-uboot/board/freescale/p2041rdb/ddr.c
/rk3399_rockchip-uboot/board/freescale/t102xqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t102xqds/spl.c
/rk3399_rockchip-uboot/board/freescale/t102xrdb/ddr.c
/rk3399_rockchip-uboot/board/freescale/t102xrdb/spl.c
/rk3399_rockchip-uboot/board/freescale/t1040qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t104xrdb/ddr.c
/rk3399_rockchip-uboot/board/freescale/t104xrdb/spl.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/spl.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/ddr.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/spl.c
/rk3399_rockchip-uboot/board/freescale/t4qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4qds/spl.c
/rk3399_rockchip-uboot/board/freescale/t4rdb/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4rdb/spl.c
/rk3399_rockchip-uboot/board/gaisler/gr_cpci_ax2000/gr_cpci_ax2000.c
/rk3399_rockchip-uboot/board/gaisler/gr_ep2s60/gr_ep2s60.c
/rk3399_rockchip-uboot/board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c
/rk3399_rockchip-uboot/board/gaisler/grsim/grsim.c
/rk3399_rockchip-uboot/board/gaisler/grsim_leon2/grsim_leon2.c
/rk3399_rockchip-uboot/board/gdsys/mpc8308/sdram.c
/rk3399_rockchip-uboot/board/hisilicon/hikey/hikey.c
/rk3399_rockchip-uboot/board/ids/ids8313/ids8313.c
/rk3399_rockchip-uboot/board/ifm/ac14xx/ac14xx.c
/rk3399_rockchip-uboot/board/ifm/o2dnt2/o2dnt2.c
/rk3399_rockchip-uboot/board/imgtec/boston/ddr.c
/rk3399_rockchip-uboot/board/imgtec/malta/malta.c
/rk3399_rockchip-uboot/board/imgtec/xilfpga/xilfpga.c
/rk3399_rockchip-uboot/board/inka4x0/inka4x0.c
/rk3399_rockchip-uboot/board/intercontrol/digsy_mtc/digsy_mtc.c
/rk3399_rockchip-uboot/board/ipek01/ipek01.c
/rk3399_rockchip-uboot/board/jupiter/jupiter.c
/rk3399_rockchip-uboot/board/keymile/km82xx/km82xx.c
/rk3399_rockchip-uboot/board/keymile/km83xx/km83xx.c
/rk3399_rockchip-uboot/board/keymile/kmp204x/ddr.c
/rk3399_rockchip-uboot/board/liebherr/lwmon5/sdram.c
/rk3399_rockchip-uboot/board/micronas/vct/vct.c
/rk3399_rockchip-uboot/board/mini-box/picosam9g45/picosam9g45.c
/rk3399_rockchip-uboot/board/motionpro/motionpro.c
/rk3399_rockchip-uboot/board/mpc8308_p1m/sdram.c
/rk3399_rockchip-uboot/board/mpl/mip405/mip405.c
/rk3399_rockchip-uboot/board/mpl/pati/pati.c
/rk3399_rockchip-uboot/board/mpl/pip405/pip405.c
/rk3399_rockchip-uboot/board/mqmaker/miqi_rk3288/Kconfig
/rk3399_rockchip-uboot/board/mqmaker/miqi_rk3288/MAINTAINERS
/rk3399_rockchip-uboot/board/mqmaker/miqi_rk3288/Makefile
/rk3399_rockchip-uboot/board/mqmaker/miqi_rk3288/miqi-rk3288.c
/rk3399_rockchip-uboot/board/munices/munices.c
/rk3399_rockchip-uboot/board/pb1x00/pb1x00.c
/rk3399_rockchip-uboot/board/pdm360ng/pdm360ng.c
/rk3399_rockchip-uboot/board/phytec/pcm030/pcm030.c
/rk3399_rockchip-uboot/board/qemu-mips/qemu-mips.c
/rk3399_rockchip-uboot/board/qualcomm/dragonboard410c/dragonboard410c.c
/rk3399_rockchip-uboot/board/radxa/rock/Kconfig
/rk3399_rockchip-uboot/board/radxa/rock/MAINTAINERS
/rk3399_rockchip-uboot/board/radxa/rock/Makefile
/rk3399_rockchip-uboot/board/radxa/rock/rock.c
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/evb-rk3328.c
/rk3399_rockchip-uboot/board/rockchip/evb_rk3399/evb-rk3399.c
/rk3399_rockchip-uboot/board/ronetix/pm9261/pm9261.c
/rk3399_rockchip-uboot/board/ronetix/pm9263/pm9263.c
/rk3399_rockchip-uboot/board/ronetix/pm9g45/pm9g45.c
/rk3399_rockchip-uboot/board/samsung/arndale/arndale.c
/rk3399_rockchip-uboot/board/samsung/common/Makefile
/rk3399_rockchip-uboot/board/samsung/common/board.c
/rk3399_rockchip-uboot/board/samsung/goni/goni.c
/rk3399_rockchip-uboot/board/samsung/smdkc100/smdkc100.c
/rk3399_rockchip-uboot/board/samsung/smdkv310/smdkv310.c
/rk3399_rockchip-uboot/board/sbc8349/sbc8349.c
/rk3399_rockchip-uboot/board/sbc8641d/sbc8641d.c
/rk3399_rockchip-uboot/board/spear/common/spr_misc.c
/rk3399_rockchip-uboot/board/st/stih410-b2260/board.c
/rk3399_rockchip-uboot/board/st/stv0991/stv0991.c
/rk3399_rockchip-uboot/board/sunxi/Kconfig
/rk3399_rockchip-uboot/board/sunxi/MAINTAINERS
/rk3399_rockchip-uboot/board/sunxi/board.c
/rk3399_rockchip-uboot/board/sysam/amcore/amcore.c
/rk3399_rockchip-uboot/board/ti/dra7xx/evm.c
/rk3399_rockchip-uboot/board/tqc/tqm5200/tqm5200.c
/rk3399_rockchip-uboot/board/tqc/tqm834x/tqm834x.c
/rk3399_rockchip-uboot/board/tqc/tqm8xx/tqm8xx.c
/rk3399_rockchip-uboot/board/v38b/v38b.c
/rk3399_rockchip-uboot/board/varisys/cyrus/ddr.c
/rk3399_rockchip-uboot/board/ve8313/ve8313.c
/rk3399_rockchip-uboot/board/xes/xpedite1000/xpedite1000.c
/rk3399_rockchip-uboot/board/xes/xpedite517x/xpedite517x.c
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/microblaze-generic.c
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/xilinx_ppc405_generic.c
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/xilinx_ppc440_generic.c
/rk3399_rockchip-uboot/board/xilinx/zynq/board.c
/rk3399_rockchip-uboot/board/xilinx/zynqmp/zynqmp.c
/rk3399_rockchip-uboot/board/zipitz2/zipitz2.c
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/Makefile
/rk3399_rockchip-uboot/cmd/bdinfo.c
/rk3399_rockchip-uboot/cmd/cros_ec.c
/rk3399_rockchip-uboot/cmd/mem.c
/rk3399_rockchip-uboot/cmd/reginfo.c
/rk3399_rockchip-uboot/cmd/sf.c
/rk3399_rockchip-uboot/common/Kconfig
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/configs/evb-rk3399_defconfig
/rk3399_rockchip-uboot/configs/miqi-rk3288_defconfig
/rk3399_rockchip-uboot/configs/nanopi_neo_air_defconfig
/rk3399_rockchip-uboot/configs/orangepi_2_defconfig
/rk3399_rockchip-uboot/configs/orangepi_pc2_defconfig
/rk3399_rockchip-uboot/configs/puma-rk3399_defconfig
/rk3399_rockchip-uboot/configs/rock_defconfig
/rk3399_rockchip-uboot/disk/Kconfig
/rk3399_rockchip-uboot/doc/README.rockchip
/rk3399_rockchip-uboot/doc/device-tree-bindings/chosen.txt
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/block/blk-uclass.c
/rk3399_rockchip-uboot/drivers/block/sandbox.c
/rk3399_rockchip-uboot/drivers/bootcount/Makefile
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3188.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3399.c
/rk3399_rockchip-uboot/drivers/core/Kconfig
/rk3399_rockchip-uboot/drivers/core/device-remove.c
/rk3399_rockchip-uboot/drivers/core/device.c
/rk3399_rockchip-uboot/drivers/core/root.c
/rk3399_rockchip-uboot/drivers/core/uclass.c
/rk3399_rockchip-uboot/drivers/ddr/fsl/main.c
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/i2c_core.c
/rk3399_rockchip-uboot/drivers/i2c/rk_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/mmc-uclass.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand_base.c
/rk3399_rockchip-uboot/drivers/mtd/nand/sunxi_nand_spl.c
/rk3399_rockchip-uboot/drivers/mtd/spi/Kconfig
/rk3399_rockchip-uboot/drivers/mtd/spi/sandbox.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf-uclass.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sunxi_spi_spl.c
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/net/gmac_rockchip.c
/rk3399_rockchip-uboot/drivers/net/smc91111.h
/rk3399_rockchip-uboot/drivers/net/sun8i_emac.c
/rk3399_rockchip-uboot/drivers/pinctrl/Kconfig
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3399.c
/rk3399_rockchip-uboot/drivers/power/Kconfig
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/spi/Makefile
/rk3399_rockchip-uboot/drivers/spi/spi-uclass.c
/rk3399_rockchip-uboot/drivers/usb/emul/sandbox_hub.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-sunxi.c
/rk3399_rockchip-uboot/drivers/usb/host/usb-uclass.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_core.c
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_core.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_dma.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_io.h
/rk3399_rockchip-uboot/drivers/usb/musb-new/musb_regs.h
/rk3399_rockchip-uboot/drivers/usb/musb/Makefile
/rk3399_rockchip-uboot/drivers/usb/musb/musb_core.h
/rk3399_rockchip-uboot/drivers/usb/musb/musb_hcd.c
/rk3399_rockchip-uboot/drivers/video/dw_hdmi.c
/rk3399_rockchip-uboot/drivers/video/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_hdmi.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_vop.c
/rk3399_rockchip-uboot/dts/Kconfig
/rk3399_rockchip-uboot/examples/standalone/stubs.c
/rk3399_rockchip-uboot/include/asm-generic/global_data.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/exynos-common.h
/rk3399_rockchip-uboot/include/configs/ls1021aiot.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/miqi_rk3288.h
/rk3399_rockchip-uboot/include/configs/mx6sxsabreauto.h
/rk3399_rockchip-uboot/include/configs/mx7_common.h
/rk3399_rockchip-uboot/include/configs/rk3188_common.h
/rk3399_rockchip-uboot/include/configs/rk3399_common.h
/rk3399_rockchip-uboot/include/configs/rock.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/sun50i.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/dm/device-internal.h
/rk3399_rockchip-uboot/include/dm/device.h
/rk3399_rockchip-uboot/include/dm/root.h
/rk3399_rockchip-uboot/include/dw_hdmi.h
/rk3399_rockchip-uboot/include/i2c.h
/rk3399_rockchip-uboot/include/init_helpers.h
/rk3399_rockchip-uboot/include/initcall.h
/rk3399_rockchip-uboot/include/linux/usb/musb.h
/rk3399_rockchip-uboot/include/netdev.h
/rk3399_rockchip-uboot/include/relocate.h
/rk3399_rockchip-uboot/lib/Kconfig
/rk3399_rockchip-uboot/lib/bch.c
/rk3399_rockchip-uboot/lib/string.c
/rk3399_rockchip-uboot/post/post.c
/rk3399_rockchip-uboot/scripts/Kbuild.include
/rk3399_rockchip-uboot/scripts/Makefile.spl
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
/rk3399_rockchip-uboot/test/dm/bus.c
/rk3399_rockchip-uboot/test/dm/core.c
/rk3399_rockchip-uboot/test/dm/eth.c
/rk3399_rockchip-uboot/test/dm/spi.c
/rk3399_rockchip-uboot/test/dm/test-driver.c
.gitignore
Makefile
sunxi-spl-image-builder.c
3082775615-Mar-2017 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

rockchip: mkimage: update rkimage to support pre-padded payloads

To simplify the creation of AArch64 SPL images for the RK3399, we
use the ENABLE_ARM_SOC_BOOT0_HOOK option and prepend 4 bytes of
pad

rockchip: mkimage: update rkimage to support pre-padded payloads

To simplify the creation of AArch64 SPL images for the RK3399, we
use the ENABLE_ARM_SOC_BOOT0_HOOK option and prepend 4 bytes of
padding at the start of the text section. This makes it easy for
mkimage to rewrite this word with the 'RK33' boot magic.

This change brings logic to calculate the header size and allocate
the header back in sync. For the RK3399 we now limit the header to
before the payload (i.e. the 'header0' and the padding up to the
actual image) and overwrite the first word (inserted by the
boot0-hook for this purpose) with the 'RK33' magic in-place.

X-AffectedPlatforms: RK3399-Q7
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Tested-by: Klaus Goger <klaus.goger@theobroma-systems.com>

show more ...

111bcc4f15-Mar-2017 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

rockchip: mkimage: pad the header to 8-bytes (using a 'nop') for RK3399

The RK3399 boot code (running as AArch64) poses a bit of a challenge
for SPL image generation:
* The BootROM will start execu

rockchip: mkimage: pad the header to 8-bytes (using a 'nop') for RK3399

The RK3399 boot code (running as AArch64) poses a bit of a challenge
for SPL image generation:
* The BootROM will start execution right after the 4-byte header (at
the odd instruction word loaded into SRAM at 0xff8c2004, with the
'RK33' boot magic residing at 0xff8c2000).
* The default padding (during ELF generation) for AArch64 is 0x0,
which is an illegal instruction and the .text section needs to be
naturally aligned (someone might locate a 64bit constant relative
to the section start and unaligned loads trigger a fault for all
privileged modes of an ARMv8)... so we can't simply define the
CONFIG_SPL_TEXT_BASE option to the odd address (0xff8c2004).
* Finally, we don't want to change the values used for padding of
the SPL .text section for all ARMv8 targets to the instruction
word encoding 'nop', as this would affect all padding in this
section and might hide errors that would otherwise quickly trigger
an illegal insn exception.

To deal with this situation, we modify the rkimage generation to
- understand the fact that the RK3399 needs to pad the header to an
8 byte boundary using an AArch64 'nop'
- the necessary logic to adjust the header_size (which controls the
location where the payload is copied into the image) and to insert
this padding (AArch64 insn words are always little-endian) into
the image following the 4-byte header magic.

X-AffectedPlatforms: RK3399-Q7
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Tested-by: Klaus Goger <klaus.goger@theobroma-systems.com>

show more ...

f3edf8b115-Mar-2017 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

rockchip: mkimage: simplify start/size calculation for rc4_encode

The RC4 encoding works on full blocks, but the calculation of the
starting offset and size are needlessly complicated by using a
ref

rockchip: mkimage: simplify start/size calculation for rc4_encode

The RC4 encoding works on full blocks, but the calculation of the
starting offset and size are needlessly complicated by using a
reference value known to be offset into a block by the size of the
header and then correcting for the (hard-coded) size of the header
(i.e. 4 bytes).

We change this over to use the RK_SPL_HDR_START directly (which is
known to be on a block boundary).

X-AffectedPlatforms: RK3399-Q7
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Tested-by: Klaus Goger <klaus.goger@theobroma-systems.com>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arc/lib/start.S
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/ppa.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/armada-7040-db.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-8040-db.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-cp110-master.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-cp110-slave.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/tegra124-apalis.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/stream_id_lsch2.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/stream_id_lsch3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-lpc32xx/i2c.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/tegra_mmc.h
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra124/Kconfig
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ls2080aqds.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ls2080ardb.c
/rk3399_rockchip-uboot/board/ge/bx50v3/bx50v3.c
/rk3399_rockchip-uboot/board/synopsys/axs10x/axs10x.c
/rk3399_rockchip-uboot/board/toradex/apalis-tk1/Kconfig
/rk3399_rockchip-uboot/board/toradex/apalis-tk1/MAINTAINERS
/rk3399_rockchip-uboot/board/toradex/apalis-tk1/Makefile
/rk3399_rockchip-uboot/board/toradex/apalis-tk1/apalis-tk1.c
/rk3399_rockchip-uboot/board/toradex/apalis-tk1/as3722_init.c
/rk3399_rockchip-uboot/board/toradex/apalis-tk1/as3722_init.h
/rk3399_rockchip-uboot/board/toradex/apalis-tk1/pinmux-config-apalis-tk1.h
/rk3399_rockchip-uboot/cmd/i2c.c
/rk3399_rockchip-uboot/cmd/tpm.c
/rk3399_rockchip-uboot/common/board_r.c
/rk3399_rockchip-uboot/common/fdt_support.c
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/apalis-tk1_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_emmc_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f7040_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f8040_defconfig
/rk3399_rockchip-uboot/doc/device-tree-bindings/net/fixed-link.txt
/rk3399_rockchip-uboot/drivers/i2c/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/lpc32xx_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/omap24xx_i2c.c
/rk3399_rockchip-uboot/drivers/i2c/omap24xx_i2c.h
/rk3399_rockchip-uboot/drivers/mmc/Kconfig
/rk3399_rockchip-uboot/drivers/mmc/omap_hsmmc.c
/rk3399_rockchip-uboot/drivers/mmc/tegra_mmc.c
/rk3399_rockchip-uboot/drivers/mtd/nand/nand.c
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/bcm-sf2-eth-gmac.c
/rk3399_rockchip-uboot/drivers/net/bcm-sf2-eth.h
/rk3399_rockchip-uboot/drivers/net/mvpp2.c
/rk3399_rockchip-uboot/drivers/net/phy/Kconfig
/rk3399_rockchip-uboot/drivers/net/phy/Makefile
/rk3399_rockchip-uboot/drivers/net/phy/fixed.c
/rk3399_rockchip-uboot/drivers/net/phy/phy.c
/rk3399_rockchip-uboot/drivers/net/sunxi_emac.c
/rk3399_rockchip-uboot/drivers/pci/pci-uclass.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.h
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape_fixup.c
/rk3399_rockchip-uboot/drivers/pinctrl/Kconfig
/rk3399_rockchip-uboot/drivers/pinctrl/Makefile
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl-single.c
/rk3399_rockchip-uboot/drivers/reset/Kconfig
/rk3399_rockchip-uboot/drivers/reset/Makefile
/rk3399_rockchip-uboot/drivers/reset/sti-reset.c
/rk3399_rockchip-uboot/drivers/tpm/Kconfig
/rk3399_rockchip-uboot/dts/Makefile
/rk3399_rockchip-uboot/include/configs/apalis-tk1.h
/rk3399_rockchip-uboot/include/configs/evb_rk3288.h
/rk3399_rockchip-uboot/include/configs/fennec_rk3288.h
/rk3399_rockchip-uboot/include/configs/ls1012a_common.h
/rk3399_rockchip-uboot/include/configs/ls1043a_common.h
/rk3399_rockchip-uboot/include/configs/ls1046a_common.h
/rk3399_rockchip-uboot/include/configs/ls1046aqds.h
/rk3399_rockchip-uboot/include/configs/ls2080a_common.h
/rk3399_rockchip-uboot/include/configs/mvebu_armada-8k.h
/rk3399_rockchip-uboot/include/configs/popmetal_rk3288.h
/rk3399_rockchip-uboot/include/configs/tinker_rk3288.h
/rk3399_rockchip-uboot/include/linux/bitops.h
/rk3399_rockchip-uboot/include/nand.h
/rk3399_rockchip-uboot/include/phy.h
/rk3399_rockchip-uboot/include/tpm.h
/rk3399_rockchip-uboot/lib/fdtdec.c
/rk3399_rockchip-uboot/lib/tpm.c
/rk3399_rockchip-uboot/net/link_local.c
rksd.c
rkspi.c
33ed574926-Feb-2017 yuan linyu <Linyu.Yuan@alcatel-sbell.com.cn>

tools: plbimage support generate rcw file

some system will not generate pbl format u-boot, but require rcw.

Signed-off-by: yuan linyu <Linyu.Yuan@alcatel-sbell.com.cn>
Reviewed-by: Alison Wang <ali

tools: plbimage support generate rcw file

some system will not generate pbl format u-boot, but require rcw.

Signed-off-by: yuan linyu <Linyu.Yuan@alcatel-sbell.com.cn>
Reviewed-by: Alison Wang <alison.wang@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>

show more ...


/rk3399_rockchip-uboot/arch/Kconfig
/rk3399_rockchip-uboot/arch/arc/Kconfig
/rk3399_rockchip-uboot/arch/arc/dts/Makefile
/rk3399_rockchip-uboot/arch/arc/dts/abilis_tb100.dts
/rk3399_rockchip-uboot/arch/arc/dts/axc001.dtsi
/rk3399_rockchip-uboot/arch/arc/dts/axc003.dtsi
/rk3399_rockchip-uboot/arch/arc/dts/axs101.dts
/rk3399_rockchip-uboot/arch/arc/dts/axs103.dts
/rk3399_rockchip-uboot/arch/arc/dts/axs10x_mb.dtsi
/rk3399_rockchip-uboot/arch/arc/dts/nsim.dts
/rk3399_rockchip-uboot/arch/arc/dts/skeleton.dtsi
/rk3399_rockchip-uboot/arch/arc/include/asm/arcregs.h
/rk3399_rockchip-uboot/arch/arc/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch3_serdes.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/soc.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/armada-3720-espressobin.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-37xx.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-38x-controlcenterdc.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-7040.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-8040-mcbin.dts
/rk3399_rockchip-uboot/arch/arm/dts/armada-8040.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-ap806.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-cp110-master.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/armada-cp110-slave.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls1012a.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/fsl_serdes.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/ppa.h
/rk3399_rockchip-uboot/arch/arm/include/asm/armv8/sec_firmware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/fsl_secure_boot.h
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/serdes/axp/high_speed_env_lib.c
/rk3399_rockchip-uboot/board/Marvell/mvebu_armada-37xx/MAINTAINERS
/rk3399_rockchip-uboot/board/Marvell/mvebu_armada-37xx/Makefile
/rk3399_rockchip-uboot/board/Marvell/mvebu_armada-37xx/board.c
/rk3399_rockchip-uboot/board/freescale/common/fsl_validate.c
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ls1043ardb.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ls2080aqds.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ls2080ardb.c
/rk3399_rockchip-uboot/board/gdsys/a38x/.gitignore
/rk3399_rockchip-uboot/board/gdsys/a38x/Kconfig
/rk3399_rockchip-uboot/board/gdsys/a38x/MAINTAINERS
/rk3399_rockchip-uboot/board/gdsys/a38x/Makefile
/rk3399_rockchip-uboot/board/gdsys/a38x/controlcenterdc.c
/rk3399_rockchip-uboot/board/gdsys/a38x/dt_helpers.c
/rk3399_rockchip-uboot/board/gdsys/a38x/dt_helpers.h
/rk3399_rockchip-uboot/board/gdsys/a38x/hre.c
/rk3399_rockchip-uboot/board/gdsys/a38x/hre.h
/rk3399_rockchip-uboot/board/gdsys/a38x/hydra.c
/rk3399_rockchip-uboot/board/gdsys/a38x/hydra.h
/rk3399_rockchip-uboot/board/gdsys/a38x/ihs_phys.c
/rk3399_rockchip-uboot/board/gdsys/a38x/ihs_phys.h
/rk3399_rockchip-uboot/board/gdsys/a38x/keyprogram.c
/rk3399_rockchip-uboot/board/gdsys/a38x/keyprogram.h
/rk3399_rockchip-uboot/board/gdsys/a38x/kwbimage.cfg.in
/rk3399_rockchip-uboot/board/gdsys/a38x/spl.c
/rk3399_rockchip-uboot/board/synopsys/axs10x/Kconfig
/rk3399_rockchip-uboot/board/theadorable/theadorable.c
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/configs/axs101_defconfig
/rk3399_rockchip-uboot/configs/axs103_defconfig
/rk3399_rockchip-uboot/configs/controlcenterdc_defconfig
/rk3399_rockchip-uboot/configs/mvebu_db-88f3720_defconfig
/rk3399_rockchip-uboot/configs/mvebu_espressobin-88f3720_defconfig
/rk3399_rockchip-uboot/configs/mvebu_mcbin-88f8040_defconfig
/rk3399_rockchip-uboot/doc/device-tree-bindings/pci/armada8k-pcie.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/timer/arc_timer.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/usb/marvell.xhci-usb.txt
/rk3399_rockchip-uboot/doc/driver-model/fdt-fixup.txt
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ls2080a.c
/rk3399_rockchip-uboot/drivers/net/mvneta.c
/rk3399_rockchip-uboot/drivers/pci/pcie_dw_mvebu.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.h
/rk3399_rockchip-uboot/drivers/spi/fsl_qspi.c
/rk3399_rockchip-uboot/drivers/timer/Kconfig
/rk3399_rockchip-uboot/drivers/timer/Makefile
/rk3399_rockchip-uboot/drivers/timer/arc_timer.c
/rk3399_rockchip-uboot/drivers/usb/host/Kconfig
/rk3399_rockchip-uboot/drivers/usb/host/xhci-mvebu.c
/rk3399_rockchip-uboot/dts/Kconfig
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/axs10x.h
/rk3399_rockchip-uboot/include/configs/controlcenterdc.h
/rk3399_rockchip-uboot/include/configs/ls2080aqds.h
/rk3399_rockchip-uboot/include/configs/ls2080ardb.h
/rk3399_rockchip-uboot/include/configs/mvebu_armada-37xx.h
/rk3399_rockchip-uboot/include/configs/nsim.h
/rk3399_rockchip-uboot/include/configs/tb100.h
/rk3399_rockchip-uboot/include/fsl-mc/ldpaa_wriop.h
/rk3399_rockchip-uboot/include/fsl_validate.h
pblimage.c
55bc080e22-Feb-2017 Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

dtoc: make ScanTree recurse into subnodes

Previously, dtoc could only process the top-level nodes which led to
device nodes in hierarchical trees to be ignored. E.g. the mmc0 node
in the following e

dtoc: make ScanTree recurse into subnodes

Previously, dtoc could only process the top-level nodes which led to
device nodes in hierarchical trees to be ignored. E.g. the mmc0 node
in the following example would be ignored, as only the soc node was
processed:

/ {
soc {
mmc0 {
/* ... */
};
};
};

This introduces a recursive helper method ScanNode, which is used by
ScanTree to recursively parse the entire tree hierarchy.

Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/dts/am437x-gp-evm-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/omap5-u-boot.dtsi
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/u-boot-spl.lds
/rk3399_rockchip-uboot/board/broadcom/bcm958712k/MAINTAINERS
/rk3399_rockchip-uboot/board/broadcom/bcmns2/Kconfig
/rk3399_rockchip-uboot/board/broadcom/bcmns2/Makefile
/rk3399_rockchip-uboot/board/broadcom/bcmns2/northstar2.c
/rk3399_rockchip-uboot/board/davinci/da8xxevm/README.da850
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/configs/am43xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_ethboot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_usbhost_boot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/bayleybay_defconfig
/rk3399_rockchip-uboot/configs/bcm958712k_defconfig
/rk3399_rockchip-uboot/configs/conga-qeval20-qa3-e3845-internal-uart_defconfig
/rk3399_rockchip-uboot/configs/conga-qeval20-qa3-e3845_defconfig
/rk3399_rockchip-uboot/configs/crownbay_defconfig
/rk3399_rockchip-uboot/configs/dfi-bt700-q7x-151_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/galileo_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/theadorable-x86-dfi-bt700_defconfig
/rk3399_rockchip-uboot/drivers/core/regmap.c
/rk3399_rockchip-uboot/drivers/core/root.c
/rk3399_rockchip-uboot/drivers/mmc/Kconfig
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/mmc.c
/rk3399_rockchip-uboot/drivers/mmc/sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/tangier_sdhci.c
/rk3399_rockchip-uboot/drivers/mmc/xenon_sdhci.c
/rk3399_rockchip-uboot/drivers/spi/ti_qspi.c
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/am57xx_evm.h
/rk3399_rockchip-uboot/include/configs/bcm_northstar2.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
dtoc/dtoc.py
e5caec9a16-Mar-2017 Max Filippov <jcmvbkbc@gmail.com>

Pass empty CFLAGS on invocation of libfdt/setup.py

When building u-boot tools in cross-build environment CFLAGS environment
variable set up for target is taken into an account when building code
for

Pass empty CFLAGS on invocation of libfdt/setup.py

When building u-boot tools in cross-build environment CFLAGS environment
variable set up for target is taken into an account when building code
for host. Make it empty on invocation of python.

This fixes the following build errors when cross-compiling for xtensa:

cc1: error: unrecognized command line option "-mlongcalls"
cc1: error: unrecognized command line option "-mauto-litpools"

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>

show more ...


/rk3399_rockchip-uboot/.travis.yml
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap5/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/omap_common.h
/rk3399_rockchip-uboot/arch/arm/mach-keystone/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/board.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/sys_info.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/boot-common.c
/rk3399_rockchip-uboot/board/BuR/common/common.c
/rk3399_rockchip-uboot/board/amazon/kc1/kc1.c
/rk3399_rockchip-uboot/board/compulab/cm_t35/cm_t35.c
/rk3399_rockchip-uboot/board/compulab/cm_t3517/cm_t3517.c
/rk3399_rockchip-uboot/board/compulab/cm_t54/cm_t54.c
/rk3399_rockchip-uboot/board/corscience/tricorder/tricorder.c
/rk3399_rockchip-uboot/board/gumstix/duovero/duovero.c
/rk3399_rockchip-uboot/board/htkw/mcx/mcx.c
/rk3399_rockchip-uboot/board/isee/igep00x0/igep00x0.c
/rk3399_rockchip-uboot/board/lg/sniper/sniper.c
/rk3399_rockchip-uboot/board/logicpd/am3517evm/am3517evm.c
/rk3399_rockchip-uboot/board/logicpd/omap3som/omap3logic.c
/rk3399_rockchip-uboot/board/quipos/cairo/cairo.c
/rk3399_rockchip-uboot/board/technexion/tao3530/tao3530.c
/rk3399_rockchip-uboot/board/ti/am3517crane/am3517crane.c
/rk3399_rockchip-uboot/board/ti/am57xx/board.c
/rk3399_rockchip-uboot/board/ti/am57xx/mux_data.h
/rk3399_rockchip-uboot/board/ti/beagle/beagle.c
/rk3399_rockchip-uboot/board/ti/common/Kconfig
/rk3399_rockchip-uboot/board/ti/common/board_detect.c
/rk3399_rockchip-uboot/board/ti/common/board_detect.h
/rk3399_rockchip-uboot/board/ti/dra7xx/evm.c
/rk3399_rockchip-uboot/board/ti/evm/evm.c
/rk3399_rockchip-uboot/board/ti/ks2_evm/Kconfig
/rk3399_rockchip-uboot/board/ti/ks2_evm/board_k2g.c
/rk3399_rockchip-uboot/board/ti/omap5_uevm/evm.c
/rk3399_rockchip-uboot/board/ti/panda/panda.c
/rk3399_rockchip-uboot/board/ti/sdp4430/sdp.c
/rk3399_rockchip-uboot/board/ti/ti814x/evm.c
/rk3399_rockchip-uboot/board/timll/devkit8000/devkit8000.c
/rk3399_rockchip-uboot/disk/Kconfig
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/doc/README.fdt-control
/rk3399_rockchip-uboot/doc/device-tree-bindings/config.txt
/rk3399_rockchip-uboot/include/configs/am57xx_evm.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_keystone2.h
/rk3399_rockchip-uboot/lib/rsa/Kconfig
/rk3399_rockchip-uboot/net/eth_common.c
/rk3399_rockchip-uboot/test/image/test-fit.py
Makefile
02ccab1919-Mar-2017 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://www.denx.de/git/u-boot-imx

Signed-off-by: Tom Rini <trini@konsulko.com>

Conflicts:
configs/bk4r1_defconfig
configs/colibri_vf_defconfig
configs/pcm052_defconfig
i

Merge branch 'master' of git://www.denx.de/git/u-boot-imx

Signed-off-by: Tom Rini <trini@konsulko.com>

Conflicts:
configs/bk4r1_defconfig
configs/colibri_vf_defconfig
configs/pcm052_defconfig
include/configs/colibri_vf.h
include/configs/pcm052.h

show more ...


/rk3399_rockchip-uboot/Kconfig
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/Makefile
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/cache.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/cache_v7_asm.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/opos6ul.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/iomux.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/pcc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/scg.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/vf610/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/vf610/generic.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/cache_v8.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/spl.c
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/cache.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/imx6qdl-icore-rqs.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-isiot-emmc.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-isiot-mmc.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-isiot-nand.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-isiot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-opos6ul.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-opos6uldev.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx7ulp-evk.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx7ulp-pinfunc.h
/rk3399_rockchip-uboot/arch/arm/dts/imx7ulp-uboot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx7ulp.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3036-sdk.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3036.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3188.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-evb.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-popmetal.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-tinker.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3288-tinker.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3328-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3328.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-evb.dts
/rk3399_rockchip-uboot/arch/arm/dts/rk3399-sdram-lpddr3-4GB-1600.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3399.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/rk3xxx.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stm32f746-disco.dts
/rk3399_rockchip-uboot/arch/arm/dts/stm32f746.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/zynq-7000.dtsi
/rk3399_rockchip-uboot/arch/arm/imx-common/Makefile
/rk3399_rockchip-uboot/arch/arm/imx-common/hab.c
/rk3399_rockchip-uboot/arch/arm/imx-common/init.c
/rk3399_rockchip-uboot/arch/arm/imx-common/spl.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/mmu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-imx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/opos6ul.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/imx_lpi2c.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/iomux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/mx7ulp-pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/pcc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/scg.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3188.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/cru_rk3328.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/ddr_rk3188.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3188.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/grf_rk3328.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/pmu_rk3188.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-vf610/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-vf610/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-zynqmp/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/armv8/mmu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/assembler.h
/rk3399_rockchip-uboot/arch/arm/include/asm/cache.h
/rk3399_rockchip-uboot/arch/arm/include/asm/fsl_secure_boot.h
/rk3399_rockchip-uboot/arch/arm/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/setjmp.h
/rk3399_rockchip-uboot/arch/arm/include/asm/system.h
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/lib/cache.c
/rk3399_rockchip-uboot/arch/arm/lib/crt0.S
/rk3399_rockchip-uboot/arch/arm/lib/lib1funcs.S
/rk3399_rockchip-uboot/arch/arm/lib/memcpy.S
/rk3399_rockchip-uboot/arch/arm/lib/memset.S
/rk3399_rockchip-uboot/arch/arm/mach-at91/arm926ejs/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/config.h
/rk3399_rockchip-uboot/arch/arm/mach-kirkwood/include/mach/cpu.h
/rk3399_rockchip-uboot/arch/arm/mach-orion5x/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188-board-tpl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188-board.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188/clk_rk3188.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188/sdram_rk3188.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3188/syscon_rk3188.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3328/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3328/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3328/clk_rk3328.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3328/rk3328.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3328/syscon_rk3328.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399-board-spl.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399/rk3399.c
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/rk3399/sdram_rk3399.c
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f7/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-stm32/stm32f7/soc.c
/rk3399_rockchip-uboot/arch/arm/mach-zynq/clk.c
/rk3399_rockchip-uboot/arch/arm/mach-zynq/cpu.c
/rk3399_rockchip-uboot/arch/arm/mach-zynq/include/mach/clk.h
/rk3399_rockchip-uboot/arch/arm/mach-zynq/include/mach/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/mach-zynq/slcr.c
/rk3399_rockchip-uboot/arch/arm/mach-zynq/timer.c
/rk3399_rockchip-uboot/board/armadeus/opos6uldev/Kconfig
/rk3399_rockchip-uboot/board/armadeus/opos6uldev/MAINTAINERS
/rk3399_rockchip-uboot/board/armadeus/opos6uldev/Makefile
/rk3399_rockchip-uboot/board/armadeus/opos6uldev/board.c
/rk3399_rockchip-uboot/board/engicam/geam6ul/MAINTAINERS
/rk3399_rockchip-uboot/board/engicam/icorem6/MAINTAINERS
/rk3399_rockchip-uboot/board/engicam/icorem6_rqs/MAINTAINERS
/rk3399_rockchip-uboot/board/engicam/icorem6_rqs/icorem6_rqs.c
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/Kconfig
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/MAINTAINERS
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/Makefile
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/README
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/isiotmx6ul.c
/rk3399_rockchip-uboot/board/freescale/common/vid.c
/rk3399_rockchip-uboot/board/freescale/ls1012afrdm/ls1012afrdm.c
/rk3399_rockchip-uboot/board/freescale/ls1012aqds/ls1012aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1012ardb/ls1012ardb.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1043aqds/ls1043aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1043ardb/ls1043ardb.c
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1046aqds/ls1046aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls1046ardb/ls1046ardb.c
/rk3399_rockchip-uboot/board/freescale/ls2080a/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080a/ls2080a.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080aqds/ls2080aqds.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ddr.c
/rk3399_rockchip-uboot/board/freescale/ls2080ardb/ls2080ardb.c
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/Makefile
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/mx7ulp_evk.c
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/plugin.S
/rk3399_rockchip-uboot/board/freescale/vf610twr/Kconfig
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/README
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/common.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/common.h
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/gw_ventana.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/gw_ventana_spl.c
/rk3399_rockchip-uboot/board/phytec/pcm052/Kconfig
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/Kconfig
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/MAINTAINERS
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/Makefile
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/README
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/evb-rk3328.c
/rk3399_rockchip-uboot/board/st/stm32f746-disco/stm32f746-disco.c
/rk3399_rockchip-uboot/board/toradex/colibri_imx7/colibri_imx7.c
/rk3399_rockchip-uboot/board/toradex/colibri_vf/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/README
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6.c
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6_mba6.c
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6dl.cfg
/rk3399_rockchip-uboot/cmd/Kconfig
/rk3399_rockchip-uboot/cmd/bdinfo.c
/rk3399_rockchip-uboot/cmd/gpt.c
/rk3399_rockchip-uboot/cmd/itest.c
/rk3399_rockchip-uboot/common/board_f.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/common/spl/spl.c
/rk3399_rockchip-uboot/configs/CPCI2DP_defconfig
/rk3399_rockchip-uboot/configs/CPCI4052_defconfig
/rk3399_rockchip-uboot/configs/MIP405T_defconfig
/rk3399_rockchip-uboot/configs/MIP405_defconfig
/rk3399_rockchip-uboot/configs/PATI_defconfig
/rk3399_rockchip-uboot/configs/PIP405_defconfig
/rk3399_rockchip-uboot/configs/PLU405_defconfig
/rk3399_rockchip-uboot/configs/VOM405_defconfig
/rk3399_rockchip-uboot/configs/a4m072_defconfig
/rk3399_rockchip-uboot/configs/adp-ag101p_defconfig
/rk3399_rockchip-uboot/configs/alt_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_norboot_defconfig
/rk3399_rockchip-uboot/configs/am3517_crane_defconfig
/rk3399_rockchip-uboot/configs/am3517_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_qspiboot_defconfig
/rk3399_rockchip-uboot/configs/ap325rxa_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_nospl_com_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_nospl_it_defconfig
/rk3399_rockchip-uboot/configs/apalis_t30_defconfig
/rk3399_rockchip-uboot/configs/armadillo-800eva_defconfig
/rk3399_rockchip-uboot/configs/axm_defconfig
/rk3399_rockchip-uboot/configs/bf537-minotaur_defconfig
/rk3399_rockchip-uboot/configs/bf561-acvilon_defconfig
/rk3399_rockchip-uboot/configs/bk4r1_defconfig
/rk3399_rockchip-uboot/configs/blackstamp_defconfig
/rk3399_rockchip-uboot/configs/blackvme_defconfig
/rk3399_rockchip-uboot/configs/blanche_defconfig
/rk3399_rockchip-uboot/configs/caddy2_defconfig
/rk3399_rockchip-uboot/configs/cm5200_defconfig
/rk3399_rockchip-uboot/configs/cm_t3517_defconfig
/rk3399_rockchip-uboot/configs/cm_t35_defconfig
/rk3399_rockchip-uboot/configs/cm_t43_defconfig
/rk3399_rockchip-uboot/configs/cobra5272_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx6_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx6_nospl_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx7_defconfig
/rk3399_rockchip-uboot/configs/colibri_t20_defconfig
/rk3399_rockchip-uboot/configs/colibri_t30_defconfig
/rk3399_rockchip-uboot/configs/colibri_vf_defconfig
/rk3399_rockchip-uboot/configs/dragonboard410c_defconfig
/rk3399_rockchip-uboot/configs/eco5pk_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3288_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3328_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3399_defconfig
/rk3399_rockchip-uboot/configs/fennec-rk3288_defconfig
/rk3399_rockchip-uboot/configs/firefly-rk3288_defconfig
/rk3399_rockchip-uboot/configs/gose_defconfig
/rk3399_rockchip-uboot/configs/gr_cpci_ax2000_defconfig
/rk3399_rockchip-uboot/configs/gr_ep2s60_defconfig
/rk3399_rockchip-uboot/configs/gr_xc3s_1500_defconfig
/rk3399_rockchip-uboot/configs/grsim_defconfig
/rk3399_rockchip-uboot/configs/grsim_leon2_defconfig
/rk3399_rockchip-uboot/configs/gwventana_emmc_defconfig
/rk3399_rockchip-uboot/configs/gwventana_nand_defconfig
/rk3399_rockchip-uboot/configs/highbank_defconfig
/rk3399_rockchip-uboot/configs/imx6dl_icore_rqs_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6q_icore_rqs_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_emmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_nand_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm720t_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm920t_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm926ejs_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm946es_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm1136_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm920t_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm926ejs_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm946es_defconfig
/rk3399_rockchip-uboot/configs/koelsch_defconfig
/rk3399_rockchip-uboot/configs/kzm9g_defconfig
/rk3399_rockchip-uboot/configs/lager_defconfig
/rk3399_rockchip-uboot/configs/mcx_defconfig
/rk3399_rockchip-uboot/configs/mecp5123_defconfig
/rk3399_rockchip-uboot/configs/ms7750se_defconfig
/rk3399_rockchip-uboot/configs/mt_ventoux_defconfig
/rk3399_rockchip-uboot/configs/mx7ulp_evk_defconfig
/rk3399_rockchip-uboot/configs/mx7ulp_evk_plugin_defconfig
/rk3399_rockchip-uboot/configs/nokia_rx51_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_defconfig
/rk3399_rockchip-uboot/configs/omap3_ha_defconfig
/rk3399_rockchip-uboot/configs/openrd_base_defconfig
/rk3399_rockchip-uboot/configs/openrd_client_defconfig
/rk3399_rockchip-uboot/configs/openrd_ultimate_defconfig
/rk3399_rockchip-uboot/configs/opos6uldev_defconfig
/rk3399_rockchip-uboot/configs/pcm052_defconfig
/rk3399_rockchip-uboot/configs/popmetal-rk3288_defconfig
/rk3399_rockchip-uboot/configs/porter_defconfig
/rk3399_rockchip-uboot/configs/sandbox_defconfig
/rk3399_rockchip-uboot/configs/sandbox_noblk_defconfig
/rk3399_rockchip-uboot/configs/sandbox_spl_defconfig
/rk3399_rockchip-uboot/configs/sh7752evb_defconfig
/rk3399_rockchip-uboot/configs/sh7753evb_defconfig
/rk3399_rockchip-uboot/configs/sh7757lcr_defconfig
/rk3399_rockchip-uboot/configs/silk_defconfig
/rk3399_rockchip-uboot/configs/smartweb_defconfig
/rk3399_rockchip-uboot/configs/sniper_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de1_soc_defconfig
/rk3399_rockchip-uboot/configs/stm32f746-disco_defconfig
/rk3399_rockchip-uboot/configs/stout_defconfig
/rk3399_rockchip-uboot/configs/tao3530_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/tbs2910_defconfig
/rk3399_rockchip-uboot/configs/tinker-rk3288_defconfig
/rk3399_rockchip-uboot/configs/tqma6dl_mba6_mmc_defconfig
/rk3399_rockchip-uboot/configs/tqma6dl_mba6_spi_defconfig
/rk3399_rockchip-uboot/configs/twister_defconfig
/rk3399_rockchip-uboot/configs/vexpress_ca15_tc2_defconfig
/rk3399_rockchip-uboot/configs/vexpress_ca5x2_defconfig
/rk3399_rockchip-uboot/configs/vexpress_ca9x4_defconfig
/rk3399_rockchip-uboot/configs/vf610twr_defconfig
/rk3399_rockchip-uboot/configs/vf610twr_nand_defconfig
/rk3399_rockchip-uboot/configs/vme8349_defconfig
/rk3399_rockchip-uboot/configs/x600_defconfig
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/doc/device-tree-bindings/clock/rockchip,rk3399-dmc.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/clock/st,stm32-rcc.txt
/rk3399_rockchip-uboot/doc/device-tree-bindings/pinctrl/st,stm32-pinctrl.txt
/rk3399_rockchip-uboot/drivers/clk/Kconfig
/rk3399_rockchip-uboot/drivers/clk/Makefile
/rk3399_rockchip-uboot/drivers/clk/clk_stm32f7.c
/rk3399_rockchip-uboot/drivers/clk/clk_zynq.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3188.c
/rk3399_rockchip-uboot/drivers/clk/rockchip/clk_rk3328.c
/rk3399_rockchip-uboot/drivers/core/util.c
/rk3399_rockchip-uboot/drivers/gpio/Kconfig
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/imx_rgpio2p.c
/rk3399_rockchip-uboot/drivers/i2c/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/imx_lpi2c.c
/rk3399_rockchip-uboot/drivers/misc/mxc_ocotp.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/zynq_sdhci.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc.c
/rk3399_rockchip-uboot/drivers/net/zynq_gem.c
/rk3399_rockchip-uboot/drivers/pinctrl/Kconfig
/rk3399_rockchip-uboot/drivers/pinctrl/Makefile
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/Kconfig
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/Makefile
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/pinctrl-imx.c
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/pinctrl-imx.h
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/pinctrl-imx7ulp.c
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl_stm32.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/Makefile
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3188.c
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/pinctrl_rk3328.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/serial_lpuart.c
/rk3399_rockchip-uboot/drivers/serial/serial_mxc.c
/rk3399_rockchip-uboot/drivers/serial/serial_rockchip.c
/rk3399_rockchip-uboot/drivers/serial/serial_stm32x7.c
/rk3399_rockchip-uboot/drivers/serial/serial_zynq.c
/rk3399_rockchip-uboot/drivers/sysreset/Makefile
/rk3399_rockchip-uboot/drivers/sysreset/sysreset_rk3188.c
/rk3399_rockchip-uboot/drivers/sysreset/sysreset_rk3328.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_hdmi.c
/rk3399_rockchip-uboot/drivers/watchdog/Kconfig
/rk3399_rockchip-uboot/drivers/watchdog/Makefile
/rk3399_rockchip-uboot/drivers/watchdog/ulp_wdog.c
/rk3399_rockchip-uboot/include/configs/10m50_devboard.h
/rk3399_rockchip-uboot/include/configs/3c120_devboard.h
/rk3399_rockchip-uboot/include/configs/B4860QDS.h
/rk3399_rockchip-uboot/include/configs/BSC9131RDB.h
/rk3399_rockchip-uboot/include/configs/BSC9132QDS.h
/rk3399_rockchip-uboot/include/configs/C29XPCIE.h
/rk3399_rockchip-uboot/include/configs/CPCI2DP.h
/rk3399_rockchip-uboot/include/configs/CPCI4052.h
/rk3399_rockchip-uboot/include/configs/M5208EVBE.h
/rk3399_rockchip-uboot/include/configs/M52277EVB.h
/rk3399_rockchip-uboot/include/configs/M5235EVB.h
/rk3399_rockchip-uboot/include/configs/M5249EVB.h
/rk3399_rockchip-uboot/include/configs/M5253DEMO.h
/rk3399_rockchip-uboot/include/configs/M5253EVBE.h
/rk3399_rockchip-uboot/include/configs/M5272C3.h
/rk3399_rockchip-uboot/include/configs/M5275EVB.h
/rk3399_rockchip-uboot/include/configs/M5282EVB.h
/rk3399_rockchip-uboot/include/configs/M53017EVB.h
/rk3399_rockchip-uboot/include/configs/M5329EVB.h
/rk3399_rockchip-uboot/include/configs/M5373EVB.h
/rk3399_rockchip-uboot/include/configs/M54418TWR.h
/rk3399_rockchip-uboot/include/configs/M54451EVB.h
/rk3399_rockchip-uboot/include/configs/M54455EVB.h
/rk3399_rockchip-uboot/include/configs/M5475EVB.h
/rk3399_rockchip-uboot/include/configs/M5485EVB.h
/rk3399_rockchip-uboot/include/configs/MIP405.h
/rk3399_rockchip-uboot/include/configs/MPC8308RDB.h
/rk3399_rockchip-uboot/include/configs/MPC8313ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8315ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8323ERDB.h
/rk3399_rockchip-uboot/include/configs/MPC832XEMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8349EMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8349ITX.h
/rk3399_rockchip-uboot/include/configs/MPC837XEMDS.h
/rk3399_rockchip-uboot/include/configs/MPC837XERDB.h
/rk3399_rockchip-uboot/include/configs/MPC8536DS.h
/rk3399_rockchip-uboot/include/configs/MPC8540ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8541CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8544DS.h
/rk3399_rockchip-uboot/include/configs/MPC8548CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8555CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8560ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8568MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8569MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8572DS.h
/rk3399_rockchip-uboot/include/configs/MPC8610HPCD.h
/rk3399_rockchip-uboot/include/configs/MPC8641HPCN.h
/rk3399_rockchip-uboot/include/configs/MigoR.h
/rk3399_rockchip-uboot/include/configs/P1010RDB.h
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/configs/P1023RDB.h
/rk3399_rockchip-uboot/include/configs/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/PATI.h
/rk3399_rockchip-uboot/include/configs/PIP405.h
/rk3399_rockchip-uboot/include/configs/PLU405.h
/rk3399_rockchip-uboot/include/configs/PMC405DE.h
/rk3399_rockchip-uboot/include/configs/PMC440.h
/rk3399_rockchip-uboot/include/configs/T102xQDS.h
/rk3399_rockchip-uboot/include/configs/T102xRDB.h
/rk3399_rockchip-uboot/include/configs/T1040QDS.h
/rk3399_rockchip-uboot/include/configs/T104xRDB.h
/rk3399_rockchip-uboot/include/configs/T208xQDS.h
/rk3399_rockchip-uboot/include/configs/T208xRDB.h
/rk3399_rockchip-uboot/include/configs/T4240RDB.h
/rk3399_rockchip-uboot/include/configs/TQM5200.h
/rk3399_rockchip-uboot/include/configs/TQM823L.h
/rk3399_rockchip-uboot/include/configs/TQM823M.h
/rk3399_rockchip-uboot/include/configs/TQM834x.h
/rk3399_rockchip-uboot/include/configs/TQM850L.h
/rk3399_rockchip-uboot/include/configs/TQM850M.h
/rk3399_rockchip-uboot/include/configs/TQM855L.h
/rk3399_rockchip-uboot/include/configs/TQM855M.h
/rk3399_rockchip-uboot/include/configs/TQM860L.h
/rk3399_rockchip-uboot/include/configs/TQM860M.h
/rk3399_rockchip-uboot/include/configs/TQM862L.h
/rk3399_rockchip-uboot/include/configs/TQM862M.h
/rk3399_rockchip-uboot/include/configs/TQM866M.h
/rk3399_rockchip-uboot/include/configs/TQM885D.h
/rk3399_rockchip-uboot/include/configs/UCP1020.h
/rk3399_rockchip-uboot/include/configs/VOM405.h
/rk3399_rockchip-uboot/include/configs/a3m071.h
/rk3399_rockchip-uboot/include/configs/a4m072.h
/rk3399_rockchip-uboot/include/configs/ac14xx.h
/rk3399_rockchip-uboot/include/configs/adp-ag101p.h
/rk3399_rockchip-uboot/include/configs/advantech_dms-ba16.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am335x_igep0033.h
/rk3399_rockchip-uboot/include/configs/am335x_shc.h
/rk3399_rockchip-uboot/include/configs/am335x_sl50.h
/rk3399_rockchip-uboot/include/configs/am3517_crane.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/am57xx_evm.h
/rk3399_rockchip-uboot/include/configs/amcc-common.h
/rk3399_rockchip-uboot/include/configs/amcore.h
/rk3399_rockchip-uboot/include/configs/ap121.h
/rk3399_rockchip-uboot/include/configs/ap143.h
/rk3399_rockchip-uboot/include/configs/ap325rxa.h
/rk3399_rockchip-uboot/include/configs/ap_sh4a_4a.h
/rk3399_rockchip-uboot/include/configs/apalis_imx6.h
/rk3399_rockchip-uboot/include/configs/apf27.h
/rk3399_rockchip-uboot/include/configs/aria.h
/rk3399_rockchip-uboot/include/configs/armadillo-800eva.h
/rk3399_rockchip-uboot/include/configs/aspeed-common.h
/rk3399_rockchip-uboot/include/configs/astro_mcf5373l.h
/rk3399_rockchip-uboot/include/configs/at91-sama5_common.h
/rk3399_rockchip-uboot/include/configs/at91rm9200ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9260ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9261ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9263ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9m10g45ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9n12ek.h
/rk3399_rockchip-uboot/include/configs/at91sam9rlek.h
/rk3399_rockchip-uboot/include/configs/at91sam9x5ek.h
/rk3399_rockchip-uboot/include/configs/atngw100.h
/rk3399_rockchip-uboot/include/configs/atngw100mkii.h
/rk3399_rockchip-uboot/include/configs/atstk1002.h
/rk3399_rockchip-uboot/include/configs/axs10x.h
/rk3399_rockchip-uboot/include/configs/baltos.h
/rk3399_rockchip-uboot/include/configs/bav335x.h
/rk3399_rockchip-uboot/include/configs/bcm23550_w1d.h
/rk3399_rockchip-uboot/include/configs/bcm28155_ap.h
/rk3399_rockchip-uboot/include/configs/bcm_ep_board.h
/rk3399_rockchip-uboot/include/configs/bct-brettl2.h
/rk3399_rockchip-uboot/include/configs/bf506f-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf525-ucr2.h
/rk3399_rockchip-uboot/include/configs/bf537-minotaur.h
/rk3399_rockchip-uboot/include/configs/bf537-pnav.h
/rk3399_rockchip-uboot/include/configs/bf537-srv1.h
/rk3399_rockchip-uboot/include/configs/bf561-acvilon.h
/rk3399_rockchip-uboot/include/configs/bfin_adi_common.h
/rk3399_rockchip-uboot/include/configs/blackstamp.h
/rk3399_rockchip-uboot/include/configs/blackvme.h
/rk3399_rockchip-uboot/include/configs/boston.h
/rk3399_rockchip-uboot/include/configs/br4.h
/rk3399_rockchip-uboot/include/configs/bur_am335x_common.h
/rk3399_rockchip-uboot/include/configs/calimain.h
/rk3399_rockchip-uboot/include/configs/canmb.h
/rk3399_rockchip-uboot/include/configs/chiliboard.h
/rk3399_rockchip-uboot/include/configs/cl-som-am57x.h
/rk3399_rockchip-uboot/include/configs/cm-bf527.h
/rk3399_rockchip-uboot/include/configs/cm-bf533.h
/rk3399_rockchip-uboot/include/configs/cm-bf537e.h
/rk3399_rockchip-uboot/include/configs/cm-bf537u.h
/rk3399_rockchip-uboot/include/configs/cm-bf548.h
/rk3399_rockchip-uboot/include/configs/cm-bf561.h
/rk3399_rockchip-uboot/include/configs/cm5200.h
/rk3399_rockchip-uboot/include/configs/cm_fx6.h
/rk3399_rockchip-uboot/include/configs/cm_t335.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/cm_t3517.h
/rk3399_rockchip-uboot/include/configs/cm_t54.h
/rk3399_rockchip-uboot/include/configs/cobra5272.h
/rk3399_rockchip-uboot/include/configs/colibri_imx6.h
/rk3399_rockchip-uboot/include/configs/colibri_imx7.h
/rk3399_rockchip-uboot/include/configs/colibri_pxa270.h
/rk3399_rockchip-uboot/include/configs/colibri_vf.h
/rk3399_rockchip-uboot/include/configs/controlcenterd.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/corvus.h
/rk3399_rockchip-uboot/include/configs/cyrus.h
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/dbau1x00.h
/rk3399_rockchip-uboot/include/configs/devkit3250.h
/rk3399_rockchip-uboot/include/configs/digsy_mtc.h
/rk3399_rockchip-uboot/include/configs/dnp5370.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/dragonboard410c.h
/rk3399_rockchip-uboot/include/configs/ea20.h
/rk3399_rockchip-uboot/include/configs/eb_cpu5282.h
/rk3399_rockchip-uboot/include/configs/ecovec.h
/rk3399_rockchip-uboot/include/configs/edb93xx.h
/rk3399_rockchip-uboot/include/configs/edminiv2.h
/rk3399_rockchip-uboot/include/configs/el6x_common.h
/rk3399_rockchip-uboot/include/configs/espt.h
/rk3399_rockchip-uboot/include/configs/ethernut5.h
/rk3399_rockchip-uboot/include/configs/evb_rk3328.h
/rk3399_rockchip-uboot/include/configs/exynos-common.h
/rk3399_rockchip-uboot/include/configs/exynos5-common.h
/rk3399_rockchip-uboot/include/configs/exynos7420-common.h
/rk3399_rockchip-uboot/include/configs/flea3.h
/rk3399_rockchip-uboot/include/configs/ge_bx50v3.h
/rk3399_rockchip-uboot/include/configs/gr_cpci_ax2000.h
/rk3399_rockchip-uboot/include/configs/gr_ep2s60.h
/rk3399_rockchip-uboot/include/configs/gr_xc3s_1500.h
/rk3399_rockchip-uboot/include/configs/grasshopper.h
/rk3399_rockchip-uboot/include/configs/grsim.h
/rk3399_rockchip-uboot/include/configs/grsim_leon2.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/h2200.h
/rk3399_rockchip-uboot/include/configs/highbank.h
/rk3399_rockchip-uboot/include/configs/hikey.h
/rk3399_rockchip-uboot/include/configs/hrcon.h
/rk3399_rockchip-uboot/include/configs/ids8313.h
/rk3399_rockchip-uboot/include/configs/imgtec_xilfpga.h
/rk3399_rockchip-uboot/include/configs/imx27lite-common.h
/rk3399_rockchip-uboot/include/configs/imx31_phycore.h
/rk3399_rockchip-uboot/include/configs/imx6_spl.h
/rk3399_rockchip-uboot/include/configs/imx6qdl_icore.h
/rk3399_rockchip-uboot/include/configs/imx6qdl_icore_rqs.h
/rk3399_rockchip-uboot/include/configs/imx6ul_geam.h
/rk3399_rockchip-uboot/include/configs/imx6ul_isiot.h
/rk3399_rockchip-uboot/include/configs/inka4x0.h
/rk3399_rockchip-uboot/include/configs/integrator-common.h
/rk3399_rockchip-uboot/include/configs/ip04.h
/rk3399_rockchip-uboot/include/configs/ipam390.h
/rk3399_rockchip-uboot/include/configs/ipek01.h
/rk3399_rockchip-uboot/include/configs/jupiter.h
/rk3399_rockchip-uboot/include/configs/kc1.h
/rk3399_rockchip-uboot/include/configs/km/keymile-common.h
/rk3399_rockchip-uboot/include/configs/kzm9g.h
/rk3399_rockchip-uboot/include/configs/legoev3.h
/rk3399_rockchip-uboot/include/configs/ls1012a_common.h
/rk3399_rockchip-uboot/include/configs/ls1021aiot.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/ls1043a_common.h
/rk3399_rockchip-uboot/include/configs/ls1043aqds.h
/rk3399_rockchip-uboot/include/configs/ls1043ardb.h
/rk3399_rockchip-uboot/include/configs/ls1046a_common.h
/rk3399_rockchip-uboot/include/configs/ls1046aqds.h
/rk3399_rockchip-uboot/include/configs/ls1046ardb.h
/rk3399_rockchip-uboot/include/configs/ls2080a_common.h
/rk3399_rockchip-uboot/include/configs/lwmon5.h
/rk3399_rockchip-uboot/include/configs/m53evk.h
/rk3399_rockchip-uboot/include/configs/malta.h
/rk3399_rockchip-uboot/include/configs/mccmon6.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/mecp5123.h
/rk3399_rockchip-uboot/include/configs/meesc.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/motionpro.h
/rk3399_rockchip-uboot/include/configs/mpc5121-common.h
/rk3399_rockchip-uboot/include/configs/mpc5121ads.h
/rk3399_rockchip-uboot/include/configs/mpc8308_p1m.h
/rk3399_rockchip-uboot/include/configs/mpr2.h
/rk3399_rockchip-uboot/include/configs/ms7720se.h
/rk3399_rockchip-uboot/include/configs/ms7722se.h
/rk3399_rockchip-uboot/include/configs/ms7750se.h
/rk3399_rockchip-uboot/include/configs/munices.h
/rk3399_rockchip-uboot/include/configs/mv-common.h
/rk3399_rockchip-uboot/include/configs/mvebu_armada-8k.h
/rk3399_rockchip-uboot/include/configs/mvebu_db-88f3720.h
/rk3399_rockchip-uboot/include/configs/mx25pdk.h
/rk3399_rockchip-uboot/include/configs/mx31ads.h
/rk3399_rockchip-uboot/include/configs/mx31pdk.h
/rk3399_rockchip-uboot/include/configs/mx35pdk.h
/rk3399_rockchip-uboot/include/configs/mx51evk.h
/rk3399_rockchip-uboot/include/configs/mx53ard.h
/rk3399_rockchip-uboot/include/configs/mx53cx9020.h
/rk3399_rockchip-uboot/include/configs/mx53evk.h
/rk3399_rockchip-uboot/include/configs/mx53loco.h
/rk3399_rockchip-uboot/include/configs/mx53smd.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/mx7_common.h
/rk3399_rockchip-uboot/include/configs/mx7ulp_evk.h
/rk3399_rockchip-uboot/include/configs/mxs.h
/rk3399_rockchip-uboot/include/configs/nokia_rx51.h
/rk3399_rockchip-uboot/include/configs/nsim.h
/rk3399_rockchip-uboot/include/configs/o2dnt-common.h
/rk3399_rockchip-uboot/include/configs/odroid-c2.h
/rk3399_rockchip-uboot/include/configs/odroid.h
/rk3399_rockchip-uboot/include/configs/omap3_evm.h
/rk3399_rockchip-uboot/include/configs/omap5_uevm.h
/rk3399_rockchip-uboot/include/configs/omapl138_lcdk.h
/rk3399_rockchip-uboot/include/configs/openrd.h
/rk3399_rockchip-uboot/include/configs/openrisc-generic.h
/rk3399_rockchip-uboot/include/configs/opos6uldev.h
/rk3399_rockchip-uboot/include/configs/origen.h
/rk3399_rockchip-uboot/include/configs/p1_p2_rdb_pc.h
/rk3399_rockchip-uboot/include/configs/p1_twr.h
/rk3399_rockchip-uboot/include/configs/pb1x00.h
/rk3399_rockchip-uboot/include/configs/pcm030.h
/rk3399_rockchip-uboot/include/configs/pcm052.h
/rk3399_rockchip-uboot/include/configs/pengwyn.h
/rk3399_rockchip-uboot/include/configs/pic32mzdask.h
/rk3399_rockchip-uboot/include/configs/picosam9g45.h
/rk3399_rockchip-uboot/include/configs/pm9261.h
/rk3399_rockchip-uboot/include/configs/pm9263.h
/rk3399_rockchip-uboot/include/configs/pm9g45.h
/rk3399_rockchip-uboot/include/configs/pr1.h
/rk3399_rockchip-uboot/include/configs/qemu-mips.h
/rk3399_rockchip-uboot/include/configs/qemu-mips64.h
/rk3399_rockchip-uboot/include/configs/qemu-ppce500.h
/rk3399_rockchip-uboot/include/configs/r0p7734.h
/rk3399_rockchip-uboot/include/configs/r2dplus.h
/rk3399_rockchip-uboot/include/configs/r7780mp.h
/rk3399_rockchip-uboot/include/configs/rcar-gen2-common.h
/rk3399_rockchip-uboot/include/configs/rcar-gen3-common.h
/rk3399_rockchip-uboot/include/configs/rk3036_common.h
/rk3399_rockchip-uboot/include/configs/rk3188_common.h
/rk3399_rockchip-uboot/include/configs/rk3288_common.h
/rk3399_rockchip-uboot/include/configs/rk3328_common.h
/rk3399_rockchip-uboot/include/configs/rk3399_common.h
/rk3399_rockchip-uboot/include/configs/rpi.h
/rk3399_rockchip-uboot/include/configs/rsk7203.h
/rk3399_rockchip-uboot/include/configs/rsk7264.h
/rk3399_rockchip-uboot/include/configs/rsk7269.h
/rk3399_rockchip-uboot/include/configs/s32v234evb.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/s5pc210_universal.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/sbc8349.h
/rk3399_rockchip-uboot/include/configs/sbc8548.h
/rk3399_rockchip-uboot/include/configs/sbc8641d.h
/rk3399_rockchip-uboot/include/configs/sh7752evb.h
/rk3399_rockchip-uboot/include/configs/sh7753evb.h
/rk3399_rockchip-uboot/include/configs/sh7757lcr.h
/rk3399_rockchip-uboot/include/configs/sh7763rdp.h
/rk3399_rockchip-uboot/include/configs/sh7785lcr.h
/rk3399_rockchip-uboot/include/configs/shmin.h
/rk3399_rockchip-uboot/include/configs/siemens-am33x-common.h
/rk3399_rockchip-uboot/include/configs/smartweb.h
/rk3399_rockchip-uboot/include/configs/smdkc100.h
/rk3399_rockchip-uboot/include/configs/snapper9260.h
/rk3399_rockchip-uboot/include/configs/snapper9g45.h
/rk3399_rockchip-uboot/include/configs/sniper.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/socfpga_de1_soc.h
/rk3399_rockchip-uboot/include/configs/socrates.h
/rk3399_rockchip-uboot/include/configs/spear-common.h
/rk3399_rockchip-uboot/include/configs/stih410-b2260.h
/rk3399_rockchip-uboot/include/configs/stm32f429-discovery.h
/rk3399_rockchip-uboot/include/configs/stm32f746-disco.h
/rk3399_rockchip-uboot/include/configs/strider.h
/rk3399_rockchip-uboot/include/configs/stv0991.h
/rk3399_rockchip-uboot/include/configs/sunxi-common.h
/rk3399_rockchip-uboot/include/configs/t4qds.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/taurus.h
/rk3399_rockchip-uboot/include/configs/tb100.h
/rk3399_rockchip-uboot/include/configs/tbs2910.h
/rk3399_rockchip-uboot/include/configs/tcm-bf518.h
/rk3399_rockchip-uboot/include/configs/tcm-bf537.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/configs/thunderx_88xx.h
/rk3399_rockchip-uboot/include/configs/ti814x_evm.h
/rk3399_rockchip-uboot/include/configs/ti816x_evm.h
/rk3399_rockchip-uboot/include/configs/ti_armv7_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/tinker_rk3288.h
/rk3399_rockchip-uboot/include/configs/topic_miami.h
/rk3399_rockchip-uboot/include/configs/tplink_wdr4300.h
/rk3399_rockchip-uboot/include/configs/tqma6.h
/rk3399_rockchip-uboot/include/configs/tqma6_mba6.h
/rk3399_rockchip-uboot/include/configs/trats.h
/rk3399_rockchip-uboot/include/configs/trats2.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/include/configs/ts4800.h
/rk3399_rockchip-uboot/include/configs/uniphier.h
/rk3399_rockchip-uboot/include/configs/usb_a9263.h
/rk3399_rockchip-uboot/include/configs/usbarmory.h
/rk3399_rockchip-uboot/include/configs/v38b.h
/rk3399_rockchip-uboot/include/configs/vct.h
/rk3399_rockchip-uboot/include/configs/ve8313.h
/rk3399_rockchip-uboot/include/configs/vexpress_aemv8a.h
/rk3399_rockchip-uboot/include/configs/vexpress_common.h
/rk3399_rockchip-uboot/include/configs/vf610twr.h
/rk3399_rockchip-uboot/include/configs/vme8349.h
/rk3399_rockchip-uboot/include/configs/woodburn_common.h
/rk3399_rockchip-uboot/include/configs/work_92105.h
/rk3399_rockchip-uboot/include/configs/x600.h
/rk3399_rockchip-uboot/include/configs/x86-common.h
/rk3399_rockchip-uboot/include/configs/xilinx-ppc.h
/rk3399_rockchip-uboot/include/configs/xilinx_zynqmp.h
/rk3399_rockchip-uboot/include/configs/xpedite1000.h
/rk3399_rockchip-uboot/include/configs/xpedite517x.h
/rk3399_rockchip-uboot/include/configs/xpedite520x.h
/rk3399_rockchip-uboot/include/configs/xpedite537x.h
/rk3399_rockchip-uboot/include/configs/xpedite550x.h
/rk3399_rockchip-uboot/include/configs/xtfpga.h
/rk3399_rockchip-uboot/include/configs/zipitz2.h
/rk3399_rockchip-uboot/include/configs/zmx25.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/configs/zynq_zybo.h
/rk3399_rockchip-uboot/include/dm/util.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/imx7ulp-clock.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rk3066a-cru.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rk3188-cru-common.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rk3188-cru.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/rk3328-cru.h
/rk3399_rockchip-uboot/include/dt-bindings/pinctrl/rockchip.h
/rk3399_rockchip-uboot/include/fsl_lpuart.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/spl.h
/rk3399_rockchip-uboot/lib/Kconfig
/rk3399_rockchip-uboot/lib/efi_loader/efi_memory.c
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
imximage.c
imximage.h
3e0a71c116-Mar-2017 Peng Fan <peng.fan@nxp.com>

tools: imximage: add set bit command

Add set bit command support.
Usage: SET_BIT 4 [address] [bitmask]

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
Reviewed-by: Ste

tools: imximage: add set bit command

Add set bit command support.
Usage: SET_BIT 4 [address] [bitmask]

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
Reviewed-by: Stefano Babic <sbabic@denx.de>

show more ...


/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/opos6ul.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/iomux.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/pcc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/scg.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx7ulp/soc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/vf610/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/vf610/generic.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/imx6qdl-icore-rqs.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-isiot-emmc.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-isiot-mmc.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-isiot-nand.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-isiot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-opos6ul.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul-opos6uldev.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx6ul.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx7ulp-evk.dts
/rk3399_rockchip-uboot/arch/arm/dts/imx7ulp-pinfunc.h
/rk3399_rockchip-uboot/arch/arm/dts/imx7ulp-uboot.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/imx7ulp.dtsi
/rk3399_rockchip-uboot/arch/arm/imx-common/Makefile
/rk3399_rockchip-uboot/arch/arm/imx-common/hab.c
/rk3399_rockchip-uboot/arch/arm/imx-common/init.c
/rk3399_rockchip-uboot/arch/arm/imx-common/spl.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-imx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/opos6ul.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/imx_lpi2c.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/iomux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/mx7ulp-pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/pcc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/scg.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx7ulp/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-vf610/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-vf610/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/sys_proto.h
/rk3399_rockchip-uboot/board/armadeus/opos6uldev/Kconfig
/rk3399_rockchip-uboot/board/armadeus/opos6uldev/MAINTAINERS
/rk3399_rockchip-uboot/board/armadeus/opos6uldev/Makefile
/rk3399_rockchip-uboot/board/armadeus/opos6uldev/board.c
/rk3399_rockchip-uboot/board/engicam/geam6ul/MAINTAINERS
/rk3399_rockchip-uboot/board/engicam/icorem6/MAINTAINERS
/rk3399_rockchip-uboot/board/engicam/icorem6_rqs/MAINTAINERS
/rk3399_rockchip-uboot/board/engicam/icorem6_rqs/icorem6_rqs.c
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/Kconfig
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/MAINTAINERS
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/Makefile
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/README
/rk3399_rockchip-uboot/board/engicam/isiotmx6ul/isiotmx6ul.c
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/Kconfig
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/MAINTAINERS
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/Makefile
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/imximage.cfg
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/mx7ulp_evk.c
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/plugin.S
/rk3399_rockchip-uboot/board/freescale/vf610twr/Kconfig
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/common.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/common.h
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/gw_ventana.c
/rk3399_rockchip-uboot/board/gateworks/gw_ventana/gw_ventana_spl.c
/rk3399_rockchip-uboot/board/phytec/pcm052/Kconfig
/rk3399_rockchip-uboot/board/toradex/colibri_imx7/colibri_imx7.c
/rk3399_rockchip-uboot/board/toradex/colibri_vf/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/Kconfig
/rk3399_rockchip-uboot/board/tqc/tqma6/README
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6.c
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6_mba6.c
/rk3399_rockchip-uboot/board/tqc/tqma6/tqma6dl.cfg
/rk3399_rockchip-uboot/cmd/booti.c
/rk3399_rockchip-uboot/configs/apalis_imx6_defconfig
/rk3399_rockchip-uboot/configs/apalis_t30_defconfig
/rk3399_rockchip-uboot/configs/bk4r1_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx6_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx6_nospl_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx7_defconfig
/rk3399_rockchip-uboot/configs/colibri_t20_defconfig
/rk3399_rockchip-uboot/configs/colibri_t30_defconfig
/rk3399_rockchip-uboot/configs/colibri_vf_defconfig
/rk3399_rockchip-uboot/configs/imx6dl_icore_rqs_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6q_icore_rqs_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_emmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_isiot_nand_defconfig
/rk3399_rockchip-uboot/configs/mx7ulp_evk_defconfig
/rk3399_rockchip-uboot/configs/mx7ulp_evk_plugin_defconfig
/rk3399_rockchip-uboot/configs/opos6uldev_defconfig
/rk3399_rockchip-uboot/configs/pcm052_defconfig
/rk3399_rockchip-uboot/configs/tqma6dl_mba6_mmc_defconfig
/rk3399_rockchip-uboot/configs/tqma6dl_mba6_spi_defconfig
/rk3399_rockchip-uboot/configs/vf610twr_defconfig
/rk3399_rockchip-uboot/configs/vf610twr_nand_defconfig
/rk3399_rockchip-uboot/drivers/gpio/Kconfig
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/imx_rgpio2p.c
/rk3399_rockchip-uboot/drivers/i2c/Kconfig
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/imx_lpi2c.c
/rk3399_rockchip-uboot/drivers/misc/mxc_ocotp.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/Kconfig
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/Makefile
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/pinctrl-imx.c
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/pinctrl-imx.h
/rk3399_rockchip-uboot/drivers/pinctrl/nxp/pinctrl-imx7ulp.c
/rk3399_rockchip-uboot/drivers/serial/serial_lpuart.c
/rk3399_rockchip-uboot/drivers/serial/serial_mxc.c
/rk3399_rockchip-uboot/drivers/watchdog/Kconfig
/rk3399_rockchip-uboot/drivers/watchdog/Makefile
/rk3399_rockchip-uboot/drivers/watchdog/ulp_wdog.c
/rk3399_rockchip-uboot/include/configs/apalis_imx6.h
/rk3399_rockchip-uboot/include/configs/colibri_imx6.h
/rk3399_rockchip-uboot/include/configs/colibri_imx7.h
/rk3399_rockchip-uboot/include/configs/colibri_vf.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/imx6qdl_icore.h
/rk3399_rockchip-uboot/include/configs/imx6qdl_icore_rqs.h
/rk3399_rockchip-uboot/include/configs/imx6ul_geam.h
/rk3399_rockchip-uboot/include/configs/imx6ul_isiot.h
/rk3399_rockchip-uboot/include/configs/mccmon6.h
/rk3399_rockchip-uboot/include/configs/mx7ulp_evk.h
/rk3399_rockchip-uboot/include/configs/opos6uldev.h
/rk3399_rockchip-uboot/include/configs/pcm052.h
/rk3399_rockchip-uboot/include/configs/tqma6.h
/rk3399_rockchip-uboot/include/configs/tqma6_mba6.h
/rk3399_rockchip-uboot/include/configs/vf610twr.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/imx7ulp-clock.h
/rk3399_rockchip-uboot/include/fsl_lpuart.h
imximage.c
imximage.h
162c46d518-Feb-2017 Heiko Stübner <heiko@sntech.de>

rockchip: mkimage: Add support rk3188 serial

Add the entry for the rk3188 requiring rc4-encryption of the SPL.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Reviewed-by: Simon Glass <sjg@chromium

rockchip: mkimage: Add support rk3188 serial

Add the entry for the rk3188 requiring rc4-encryption of the SPL.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

show more ...

cfbcdade18-Feb-2017 Heiko Stübner <heiko@sntech.de>

rockchip: mkimage: Allow encoding of loader code in spl images

Rockchip SoCs allow the spl code to be rc4-encoded, not only the
image header, but only newer SoCs allow this encoding to be disabled.

rockchip: mkimage: Allow encoding of loader code in spl images

Rockchip SoCs allow the spl code to be rc4-encoded, not only the
image header, but only newer SoCs allow this encoding to be disabled.

The rk3188 is not part of those and requires its boot code to be
rc4-encoded with the regular key. So add the ability to do this
encoding via a setting on a per-soc basis when building spl images.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Tested-by: Kever Yang <kever.yang@rock-chips.com>

show more ...

27326c7e18-Feb-2017 Heiko Stübner <heiko@sntech.de>

dm: allow limiting pre-reloc markings to spl or tpl

Right now the u-boot,dm-pre-reloc flag will make each marked node
always appear in both spl and tpl. But systems needing an additional
tpl might h

dm: allow limiting pre-reloc markings to spl or tpl

Right now the u-boot,dm-pre-reloc flag will make each marked node
always appear in both spl and tpl. But systems needing an additional
tpl might have special constraints for each, like the spl needing to
be very tiny.

So introduce two additional flags to mark nodes for only spl or tpl
environments and introduce a function dm_fdt_pre_reloc to automate
the necessary checks in code instances checking for pre-relocation
flags.

The behaviour of the original flag stays untouched and still marks
a node for both spl and tpl.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Kever Yang <kever.yang@rock-chips.com>

show more ...

3b08252913-Mar-2017 Masahiro Yamada <yamada.masahiro@socionext.com>

tools: fix cross-compiling tools when HOSTCC is overridden

Richard reported U-Boot tools issues in OpenEmbedded/Yocto project.

OE needs to be able to change the default compiler. If we pass in
HOST

tools: fix cross-compiling tools when HOSTCC is overridden

Richard reported U-Boot tools issues in OpenEmbedded/Yocto project.

OE needs to be able to change the default compiler. If we pass in
HOSTCC through the make command, it overwrites all HOSTCC instances,
including ones in tools/Makefile and tools/env/Makefile, which breaks
"make cross_tools" and "make env", respectively.

Add "override" directives to avoid overriding HOSTCC instances that
really need to point to the cross-compiler.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reported-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7m/systick-timer.c
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/st-pincfg.h
/rk3399_rockchip-uboot/arch/arm/dts/stih407-clock.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stih407-family.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stih407-pinctrl.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stih410-b2260.dts
/rk3399_rockchip-uboot/arch/arm/dts/stih410-clock.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stih410-pinctrl.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stih410.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stih410/sdhci.h
/rk3399_rockchip-uboot/arch/arm/include/asm/gpio.h
/rk3399_rockchip-uboot/arch/arm/mach-sti/Kconfig
/rk3399_rockchip-uboot/board/isee/igep00x0/igep00x0.c
/rk3399_rockchip-uboot/board/st/stih410-b2260/Kconfig
/rk3399_rockchip-uboot/board/st/stih410-b2260/MAINTAINERS
/rk3399_rockchip-uboot/board/st/stih410-b2260/Makefile
/rk3399_rockchip-uboot/board/st/stih410-b2260/board.c
/rk3399_rockchip-uboot/configs/stih410-b2260_defconfig
/rk3399_rockchip-uboot/drivers/mmc/Kconfig
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/sti_sdhci.c
/rk3399_rockchip-uboot/drivers/pinctrl/Kconfig
/rk3399_rockchip-uboot/drivers/pinctrl/Makefile
/rk3399_rockchip-uboot/drivers/pinctrl/pinctrl-sti.c
/rk3399_rockchip-uboot/drivers/serial/Kconfig
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial_sti_asc.c
/rk3399_rockchip-uboot/drivers/sysreset/Makefile
/rk3399_rockchip-uboot/drivers/sysreset/sysreset_sti.c
/rk3399_rockchip-uboot/drivers/timer/Kconfig
/rk3399_rockchip-uboot/drivers/timer/Makefile
/rk3399_rockchip-uboot/drivers/timer/sti-timer.c
/rk3399_rockchip-uboot/include/configs/omap3_igep00x0.h
/rk3399_rockchip-uboot/include/configs/stih410-b2260.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/stih407-clks.h
/rk3399_rockchip-uboot/include/dt-bindings/clock/stih410-clks.h
/rk3399_rockchip-uboot/include/dt-bindings/interrupt-controller/irq-st.h
/rk3399_rockchip-uboot/include/dt-bindings/mfd/st-lpc.h
/rk3399_rockchip-uboot/include/dt-bindings/reset/stih407-resets.h
/rk3399_rockchip-uboot/lib/tiny-printf.c
Makefile
env/Makefile
35d8265c15-Feb-2017 Lokesh Vutla <lokeshvutla@ti.com>

tools: omapimage: Fix size in header

The size field in GP header that is expected by ROM is size of the
image + size of the header. But omapimage generates a gp header
only with size of the image as

tools: omapimage: Fix size in header

The size field in GP header that is expected by ROM is size of the
image + size of the header. But omapimage generates a gp header
only with size of the image as size field. Fix it

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld11-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld11.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld20-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld20.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld4-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld4.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld6b-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pinctrl.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro4-ace.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro4-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro4-sanji.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro4.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro5-4kbox.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pro5.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pxs2-gentil.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pxs2-vodka.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pxs2.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pxs3-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-pxs3.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ref-daughter.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-sld3-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-sld3.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-sld8-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-sld8.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-support-card.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/omap.h
/rk3399_rockchip-uboot/arch/arm/mach-omap2/emif-common.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/board.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boards.c
/rk3399_rockchip-uboot/configs/A10-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A10s-OLinuXino-M_defconfig
/rk3399_rockchip-uboot/configs/A13-OLinuXino_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime2_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino-Lime_defconfig
/rk3399_rockchip-uboot/configs/A20-OLinuXino_MICRO_defconfig
/rk3399_rockchip-uboot/configs/A20-Olimex-SOM-EVB_defconfig
/rk3399_rockchip-uboot/configs/Ainol_AW1_defconfig
/rk3399_rockchip-uboot/configs/Ampe_A76_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T003_defconfig
/rk3399_rockchip-uboot/configs/Auxtek-T004_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/Bananapi_defconfig
/rk3399_rockchip-uboot/configs/Bananapro_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_NAND_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_defconfig
/rk3399_rockchip-uboot/configs/CHIP_defconfig
/rk3399_rockchip-uboot/configs/CPCI2DP_defconfig
/rk3399_rockchip-uboot/configs/CPCI4052_defconfig
/rk3399_rockchip-uboot/configs/Chuwi_V7_CW0825_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard2_defconfig
/rk3399_rockchip-uboot/configs/Cubieboard_defconfig
/rk3399_rockchip-uboot/configs/Cubietruck_defconfig
/rk3399_rockchip-uboot/configs/Empire_electronix_d709_defconfig
/rk3399_rockchip-uboot/configs/Empire_electronix_m712_defconfig
/rk3399_rockchip-uboot/configs/Hyundai_A7HD_defconfig
/rk3399_rockchip-uboot/configs/Itead_Ibox_A20_defconfig
/rk3399_rockchip-uboot/configs/Lamobo_R1_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_Nano_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino3_defconfig
/rk3399_rockchip-uboot/configs/Linksprite_pcDuino_defconfig
/rk3399_rockchip-uboot/configs/M5208EVBE_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_defconfig
/rk3399_rockchip-uboot/configs/M52277EVB_stmicro_defconfig
/rk3399_rockchip-uboot/configs/M5235EVB_Flash32_defconfig
/rk3399_rockchip-uboot/configs/M5235EVB_defconfig
/rk3399_rockchip-uboot/configs/M5249EVB_defconfig
/rk3399_rockchip-uboot/configs/M5253DEMO_defconfig
/rk3399_rockchip-uboot/configs/M5253EVBE_defconfig
/rk3399_rockchip-uboot/configs/M5272C3_defconfig
/rk3399_rockchip-uboot/configs/M5275EVB_defconfig
/rk3399_rockchip-uboot/configs/M5282EVB_defconfig
/rk3399_rockchip-uboot/configs/M53017EVB_defconfig
/rk3399_rockchip-uboot/configs/M5329AFEE_defconfig
/rk3399_rockchip-uboot/configs/M5329BFEE_defconfig
/rk3399_rockchip-uboot/configs/M5373EVB_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_nand_rmii_lowfreq_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_mii_defconfig
/rk3399_rockchip-uboot/configs/M54418TWR_serial_rmii_defconfig
/rk3399_rockchip-uboot/configs/M54451EVB_defconfig
/rk3399_rockchip-uboot/configs/M54451EVB_stmicro_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_a66_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_i66_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_intel_defconfig
/rk3399_rockchip-uboot/configs/M54455EVB_stm33_defconfig
/rk3399_rockchip-uboot/configs/M5475AFE_defconfig
/rk3399_rockchip-uboot/configs/M5475BFE_defconfig
/rk3399_rockchip-uboot/configs/M5475CFE_defconfig
/rk3399_rockchip-uboot/configs/M5475DFE_defconfig
/rk3399_rockchip-uboot/configs/M5475EFE_defconfig
/rk3399_rockchip-uboot/configs/M5475FFE_defconfig
/rk3399_rockchip-uboot/configs/M5475GFE_defconfig
/rk3399_rockchip-uboot/configs/M5485AFE_defconfig
/rk3399_rockchip-uboot/configs/M5485BFE_defconfig
/rk3399_rockchip-uboot/configs/M5485CFE_defconfig
/rk3399_rockchip-uboot/configs/M5485DFE_defconfig
/rk3399_rockchip-uboot/configs/M5485EFE_defconfig
/rk3399_rockchip-uboot/configs/M5485FFE_defconfig
/rk3399_rockchip-uboot/configs/M5485GFE_defconfig
/rk3399_rockchip-uboot/configs/M5485HFE_defconfig
/rk3399_rockchip-uboot/configs/MIP405T_defconfig
/rk3399_rockchip-uboot/configs/MIP405_defconfig
/rk3399_rockchip-uboot/configs/MK808C_defconfig
/rk3399_rockchip-uboot/configs/MPC8313ERDB_33_defconfig
/rk3399_rockchip-uboot/configs/MPC8313ERDB_66_defconfig
/rk3399_rockchip-uboot/configs/MPC8313ERDB_NAND_33_defconfig
/rk3399_rockchip-uboot/configs/MPC8313ERDB_NAND_66_defconfig
/rk3399_rockchip-uboot/configs/MPC8315ERDB_defconfig
/rk3399_rockchip-uboot/configs/MPC8323ERDB_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_ATM_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_HOST_33_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_HOST_66_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_SLAVE_defconfig
/rk3399_rockchip-uboot/configs/MPC832XEMDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8349EMDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8349ITXGP_defconfig
/rk3399_rockchip-uboot/configs/MPC8349ITX_LOWBOOT_defconfig
/rk3399_rockchip-uboot/configs/MPC8349ITX_defconfig
/rk3399_rockchip-uboot/configs/MPC8540ADS_defconfig
/rk3399_rockchip-uboot/configs/MPC8541CDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8541CDS_legacy_defconfig
/rk3399_rockchip-uboot/configs/MPC8544DS_defconfig
/rk3399_rockchip-uboot/configs/MPC8548CDS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8548CDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8548CDS_legacy_defconfig
/rk3399_rockchip-uboot/configs/MPC8555CDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8555CDS_legacy_defconfig
/rk3399_rockchip-uboot/configs/MPC8560ADS_defconfig
/rk3399_rockchip-uboot/configs/MPC8568MDS_defconfig
/rk3399_rockchip-uboot/configs/MPC8572DS_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8572DS_defconfig
/rk3399_rockchip-uboot/configs/MPC8610HPCD_defconfig
/rk3399_rockchip-uboot/configs/MPC8641HPCN_36BIT_defconfig
/rk3399_rockchip-uboot/configs/MPC8641HPCN_defconfig
/rk3399_rockchip-uboot/configs/MSI_Primo73_defconfig
/rk3399_rockchip-uboot/configs/Mele_A1000_defconfig
/rk3399_rockchip-uboot/configs/Mele_M3_defconfig
/rk3399_rockchip-uboot/configs/Mele_M5_defconfig
/rk3399_rockchip-uboot/configs/Mini-X_defconfig
/rk3399_rockchip-uboot/configs/MiniFAP_defconfig
/rk3399_rockchip-uboot/configs/Nintendo_NES_Classic_Edition_defconfig
/rk3399_rockchip-uboot/configs/O2D300_defconfig
/rk3399_rockchip-uboot/configs/O2DNT2_RAMBOOT_defconfig
/rk3399_rockchip-uboot/configs/O2DNT2_defconfig
/rk3399_rockchip-uboot/configs/O2D_defconfig
/rk3399_rockchip-uboot/configs/O2I_defconfig
/rk3399_rockchip-uboot/configs/O2MNT_O2M110_defconfig
/rk3399_rockchip-uboot/configs/O2MNT_O2M112_defconfig
/rk3399_rockchip-uboot/configs/O2MNT_O2M113_defconfig
/rk3399_rockchip-uboot/configs/O2MNT_defconfig
/rk3399_rockchip-uboot/configs/O3DNT_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_defconfig
/rk3399_rockchip-uboot/configs/Orangepi_mini_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020MBG-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PC_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020RDB-PD_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1020UTM-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1021RDB-PC_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1022DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1023RDB_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1024RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1025RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_NAND_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P2020RDB-PC_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/PATI_defconfig
/rk3399_rockchip-uboot/configs/PIP405_defconfig
/rk3399_rockchip-uboot/configs/PLU405_defconfig
/rk3399_rockchip-uboot/configs/PMC405DE_defconfig
/rk3399_rockchip-uboot/configs/PMC440_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4240RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/TQM5200S_HIGHBOOT_defconfig
/rk3399_rockchip-uboot/configs/TQM5200S_defconfig
/rk3399_rockchip-uboot/configs/TQM5200_B_HIGHBOOT_defconfig
/rk3399_rockchip-uboot/configs/TQM5200_B_defconfig
/rk3399_rockchip-uboot/configs/TQM5200_STK100_defconfig
/rk3399_rockchip-uboot/configs/TQM5200_defconfig
/rk3399_rockchip-uboot/configs/TQM823L_LCD_defconfig
/rk3399_rockchip-uboot/configs/TQM823L_defconfig
/rk3399_rockchip-uboot/configs/TQM823M_defconfig
/rk3399_rockchip-uboot/configs/TQM834x_defconfig
/rk3399_rockchip-uboot/configs/TQM850L_defconfig
/rk3399_rockchip-uboot/configs/TQM850M_defconfig
/rk3399_rockchip-uboot/configs/TQM855L_defconfig
/rk3399_rockchip-uboot/configs/TQM855M_defconfig
/rk3399_rockchip-uboot/configs/TQM860L_defconfig
/rk3399_rockchip-uboot/configs/TQM860M_defconfig
/rk3399_rockchip-uboot/configs/TQM862L_defconfig
/rk3399_rockchip-uboot/configs/TQM862M_defconfig
/rk3399_rockchip-uboot/configs/TQM866M_defconfig
/rk3399_rockchip-uboot/configs/TQM885D_defconfig
/rk3399_rockchip-uboot/configs/TTTech_defconfig
/rk3399_rockchip-uboot/configs/UTOO_P66_defconfig
/rk3399_rockchip-uboot/configs/VOM405_defconfig
/rk3399_rockchip-uboot/configs/Wexler_TAB7200_defconfig
/rk3399_rockchip-uboot/configs/Wits_Pro_A20_DKT_defconfig
/rk3399_rockchip-uboot/configs/Wobo_i5_defconfig
/rk3399_rockchip-uboot/configs/Yones_Toptech_BD1078_defconfig
/rk3399_rockchip-uboot/configs/a3m071_defconfig
/rk3399_rockchip-uboot/configs/a4m072_defconfig
/rk3399_rockchip-uboot/configs/a4m2k_defconfig
/rk3399_rockchip-uboot/configs/ac14xx_defconfig
/rk3399_rockchip-uboot/configs/acadia_defconfig
/rk3399_rockchip-uboot/configs/adp-ag101p_defconfig
/rk3399_rockchip-uboot/configs/am335x_baltos_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_defconfig
/rk3399_rockchip-uboot/configs/am335x_boneblack_vboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_evm_spiboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am335x_igep0033_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_ict_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_netboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_prompt_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_sdboot_defconfig
/rk3399_rockchip-uboot/configs/am335x_shc_sdboot_prompt_defconfig
/rk3399_rockchip-uboot/configs/am335x_sl50_defconfig
/rk3399_rockchip-uboot/configs/am3517_crane_defconfig
/rk3399_rockchip-uboot/configs/am3517_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_ethboot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_evm_usbhost_boot_defconfig
/rk3399_rockchip-uboot/configs/am43xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_defconfig
/rk3399_rockchip-uboot/configs/am57xx_evm_nodt_defconfig
/rk3399_rockchip-uboot/configs/am57xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/amcore_defconfig
/rk3399_rockchip-uboot/configs/apalis_imx6_defconfig
/rk3399_rockchip-uboot/configs/apf27_defconfig
/rk3399_rockchip-uboot/configs/arches_defconfig
/rk3399_rockchip-uboot/configs/aria_defconfig
/rk3399_rockchip-uboot/configs/armadillo-800eva_defconfig
/rk3399_rockchip-uboot/configs/aspenite_defconfig
/rk3399_rockchip-uboot/configs/at91rm9200ek_defconfig
/rk3399_rockchip-uboot/configs/at91rm9200ek_ram_defconfig
/rk3399_rockchip-uboot/configs/at91sam9260ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9260ek_dataflash_cs1_defconfig
/rk3399_rockchip-uboot/configs/at91sam9260ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9261ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9261ek_dataflash_cs3_defconfig
/rk3399_rockchip-uboot/configs/at91sam9261ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g10ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g10ek_dataflash_cs3_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g10ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_dataflash_cs1_defconfig
/rk3399_rockchip-uboot/configs/at91sam9g20ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9m10g45ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/at91sam9m10g45ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9n12ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9x5ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/at91sam9xeek_dataflash_cs0_defconfig
/rk3399_rockchip-uboot/configs/at91sam9xeek_dataflash_cs1_defconfig
/rk3399_rockchip-uboot/configs/at91sam9xeek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/atngw100_defconfig
/rk3399_rockchip-uboot/configs/atngw100mkii_defconfig
/rk3399_rockchip-uboot/configs/atstk1002_defconfig
/rk3399_rockchip-uboot/configs/axm_defconfig
/rk3399_rockchip-uboot/configs/axs101_defconfig
/rk3399_rockchip-uboot/configs/axs103_defconfig
/rk3399_rockchip-uboot/configs/ba10_tv_box_defconfig
/rk3399_rockchip-uboot/configs/bamboo_defconfig
/rk3399_rockchip-uboot/configs/bcm911360_entphn-ns_defconfig
/rk3399_rockchip-uboot/configs/bcm911360_entphn_defconfig
/rk3399_rockchip-uboot/configs/bcm911360k_defconfig
/rk3399_rockchip-uboot/configs/bcm958300k-ns_defconfig
/rk3399_rockchip-uboot/configs/bcm958300k_defconfig
/rk3399_rockchip-uboot/configs/bcm958305k_defconfig
/rk3399_rockchip-uboot/configs/bcm958622hr_defconfig
/rk3399_rockchip-uboot/configs/bf518f-ezbrd_defconfig
/rk3399_rockchip-uboot/configs/bf527-ad7160-eval_defconfig
/rk3399_rockchip-uboot/configs/bf537-stamp_defconfig
/rk3399_rockchip-uboot/configs/bf548-ezkit_defconfig
/rk3399_rockchip-uboot/configs/bf609-ezkit_defconfig
/rk3399_rockchip-uboot/configs/bg0900_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335a_defconfig
/rk3399_rockchip-uboot/configs/birdland_bav335b_defconfig
/rk3399_rockchip-uboot/configs/brppt1_mmc_defconfig
/rk3399_rockchip-uboot/configs/brppt1_nand_defconfig
/rk3399_rockchip-uboot/configs/brppt1_spi_defconfig
/rk3399_rockchip-uboot/configs/brxre1_defconfig
/rk3399_rockchip-uboot/configs/bubinga_defconfig
/rk3399_rockchip-uboot/configs/caddy2_defconfig
/rk3399_rockchip-uboot/configs/calimain_defconfig
/rk3399_rockchip-uboot/configs/cam5200_defconfig
/rk3399_rockchip-uboot/configs/cam5200_niosflash_defconfig
/rk3399_rockchip-uboot/configs/canmb_defconfig
/rk3399_rockchip-uboot/configs/canyonlands_defconfig
/rk3399_rockchip-uboot/configs/cgtqmx6eval_defconfig
/rk3399_rockchip-uboot/configs/charon_defconfig
/rk3399_rockchip-uboot/configs/chiliboard_defconfig
/rk3399_rockchip-uboot/configs/chromebit_mickey_defconfig
/rk3399_rockchip-uboot/configs/chromebook_jerry_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link64_defconfig
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebook_minnie_defconfig
/rk3399_rockchip-uboot/configs/cl-som-am57x_defconfig
/rk3399_rockchip-uboot/configs/clearfog_defconfig
/rk3399_rockchip-uboot/configs/cm-bf537e_defconfig
/rk3399_rockchip-uboot/configs/cm-bf537u_defconfig
/rk3399_rockchip-uboot/configs/cm5200_defconfig
/rk3399_rockchip-uboot/configs/cm_fx6_defconfig
/rk3399_rockchip-uboot/configs/cm_t335_defconfig
/rk3399_rockchip-uboot/configs/cm_t35_defconfig
/rk3399_rockchip-uboot/configs/cm_t43_defconfig
/rk3399_rockchip-uboot/configs/cm_t54_defconfig
/rk3399_rockchip-uboot/configs/cobra5272_defconfig
/rk3399_rockchip-uboot/configs/colibri_imx6_defconfig
/rk3399_rockchip-uboot/configs/corvus_defconfig
/rk3399_rockchip-uboot/configs/d2net_v2_defconfig
/rk3399_rockchip-uboot/configs/da850evm_direct_nor_defconfig
/rk3399_rockchip-uboot/configs/db-88f6720_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-amc_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-gp_defconfig
/rk3399_rockchip-uboot/configs/db-mv784mp-gp_defconfig
/rk3399_rockchip-uboot/configs/devconcenter_defconfig
/rk3399_rockchip-uboot/configs/devkit3250_defconfig
/rk3399_rockchip-uboot/configs/difrnce_dit4350_defconfig
/rk3399_rockchip-uboot/configs/digsy_mtc_RAMBOOT_defconfig
/rk3399_rockchip-uboot/configs/digsy_mtc_defconfig
/rk3399_rockchip-uboot/configs/digsy_mtc_rev5_RAMBOOT_defconfig
/rk3399_rockchip-uboot/configs/digsy_mtc_rev5_defconfig
/rk3399_rockchip-uboot/configs/dlvision-10g_defconfig
/rk3399_rockchip-uboot/configs/dlvision_defconfig
/rk3399_rockchip-uboot/configs/dns325_defconfig
/rk3399_rockchip-uboot/configs/dockstar_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_evm_defconfig
/rk3399_rockchip-uboot/configs/dra7xx_hs_evm_defconfig
/rk3399_rockchip-uboot/configs/draco_defconfig
/rk3399_rockchip-uboot/configs/dragonboard410c_defconfig
/rk3399_rockchip-uboot/configs/dreamplug_defconfig
/rk3399_rockchip-uboot/configs/ds109_defconfig
/rk3399_rockchip-uboot/configs/ds414_defconfig
/rk3399_rockchip-uboot/configs/dserve_dsrv9703c_defconfig
/rk3399_rockchip-uboot/configs/duovero_defconfig
/rk3399_rockchip-uboot/configs/eb_cpu5282_defconfig
/rk3399_rockchip-uboot/configs/eb_cpu5282_internal_defconfig
/rk3399_rockchip-uboot/configs/eco5pk_defconfig
/rk3399_rockchip-uboot/configs/edb9315a_defconfig
/rk3399_rockchip-uboot/configs/edminiv2_defconfig
/rk3399_rockchip-uboot/configs/espresso7420_defconfig
/rk3399_rockchip-uboot/configs/etamin_defconfig
/rk3399_rockchip-uboot/configs/evb-ast2500_defconfig
/rk3399_rockchip-uboot/configs/evb-rk3399_defconfig
/rk3399_rockchip-uboot/configs/flea3_defconfig
/rk3399_rockchip-uboot/configs/fo300_defconfig
/rk3399_rockchip-uboot/configs/gdppc440etx_defconfig
/rk3399_rockchip-uboot/configs/glacier_defconfig
/rk3399_rockchip-uboot/configs/glacier_ramboot_defconfig
/rk3399_rockchip-uboot/configs/goflexhome_defconfig
/rk3399_rockchip-uboot/configs/gplugd_defconfig
/rk3399_rockchip-uboot/configs/gr_cpci_ax2000_defconfig
/rk3399_rockchip-uboot/configs/gr_ep2s60_defconfig
/rk3399_rockchip-uboot/configs/gr_xc3s_1500_defconfig
/rk3399_rockchip-uboot/configs/grsim_defconfig
/rk3399_rockchip-uboot/configs/grsim_leon2_defconfig
/rk3399_rockchip-uboot/configs/guruplug_defconfig
/rk3399_rockchip-uboot/configs/gwventana_defconfig
/rk3399_rockchip-uboot/configs/h2200_defconfig
/rk3399_rockchip-uboot/configs/haleakala_defconfig
/rk3399_rockchip-uboot/configs/highbank_defconfig
/rk3399_rockchip-uboot/configs/i12-tvbox_defconfig
/rk3399_rockchip-uboot/configs/iNet_3F_defconfig
/rk3399_rockchip-uboot/configs/iNet_3W_defconfig
/rk3399_rockchip-uboot/configs/iNet_86VS_defconfig
/rk3399_rockchip-uboot/configs/ib62x0_defconfig
/rk3399_rockchip-uboot/configs/icnova-a20-swac_defconfig
/rk3399_rockchip-uboot/configs/icon_defconfig
/rk3399_rockchip-uboot/configs/iconnect_defconfig
/rk3399_rockchip-uboot/configs/ids8313_defconfig
/rk3399_rockchip-uboot/configs/igep0020_defconfig
/rk3399_rockchip-uboot/configs/igep0030_defconfig
/rk3399_rockchip-uboot/configs/igep0032_defconfig
/rk3399_rockchip-uboot/configs/imx31_phycore_defconfig
/rk3399_rockchip-uboot/configs/imx6dl_icore_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6dl_icore_nand_defconfig
/rk3399_rockchip-uboot/configs/imx6dl_icore_rqs_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6q_icore_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6q_icore_nand_defconfig
/rk3399_rockchip-uboot/configs/imx6q_icore_rqs_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_geam_mmc_defconfig
/rk3399_rockchip-uboot/configs/imx6ul_geam_nand_defconfig
/rk3399_rockchip-uboot/configs/inet1_defconfig
/rk3399_rockchip-uboot/configs/inet97fv2_defconfig
/rk3399_rockchip-uboot/configs/inet98v_rev2_defconfig
/rk3399_rockchip-uboot/configs/inet9f_rev03_defconfig
/rk3399_rockchip-uboot/configs/inetspace_v2_defconfig
/rk3399_rockchip-uboot/configs/inka4x0_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm720t_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm920t_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm926ejs_defconfig
/rk3399_rockchip-uboot/configs/integratorap_cm946es_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm1136_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm920t_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm926ejs_defconfig
/rk3399_rockchip-uboot/configs/integratorcp_cm946es_defconfig
/rk3399_rockchip-uboot/configs/intip_defconfig
/rk3399_rockchip-uboot/configs/io64_defconfig
/rk3399_rockchip-uboot/configs/io_defconfig
/rk3399_rockchip-uboot/configs/iocon_defconfig
/rk3399_rockchip-uboot/configs/ipam390_defconfig
/rk3399_rockchip-uboot/configs/ipek01_defconfig
/rk3399_rockchip-uboot/configs/jesurun_q5_defconfig
/rk3399_rockchip-uboot/configs/jupiter_defconfig
/rk3399_rockchip-uboot/configs/k2e_evm_defconfig
/rk3399_rockchip-uboot/configs/k2g_evm_defconfig
/rk3399_rockchip-uboot/configs/k2hk_evm_defconfig
/rk3399_rockchip-uboot/configs/k2l_evm_defconfig
/rk3399_rockchip-uboot/configs/katmai_defconfig
/rk3399_rockchip-uboot/configs/kc1_defconfig
/rk3399_rockchip-uboot/configs/kilauea_defconfig
/rk3399_rockchip-uboot/configs/kmcoge4_defconfig
/rk3399_rockchip-uboot/configs/kmcoge5ne_defconfig
/rk3399_rockchip-uboot/configs/kmeter1_defconfig
/rk3399_rockchip-uboot/configs/kmlion1_defconfig
/rk3399_rockchip-uboot/configs/kmopti2_defconfig
/rk3399_rockchip-uboot/configs/kmsupx5_defconfig
/rk3399_rockchip-uboot/configs/kmtegr1_defconfig
/rk3399_rockchip-uboot/configs/kmtepr2_defconfig
/rk3399_rockchip-uboot/configs/kmvect1_defconfig
/rk3399_rockchip-uboot/configs/kzm9g_defconfig
/rk3399_rockchip-uboot/configs/ls1012afrdm_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1012aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1012ardb_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_ifc_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080a_emu_defconfig
/rk3399_rockchip-uboot/configs/ls2080a_simu_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/lschlv2_defconfig
/rk3399_rockchip-uboot/configs/lsxhl_defconfig
/rk3399_rockchip-uboot/configs/luan_defconfig
/rk3399_rockchip-uboot/configs/lwmon5_defconfig
/rk3399_rockchip-uboot/configs/m53evk_defconfig
/rk3399_rockchip-uboot/configs/makalu_defconfig
/rk3399_rockchip-uboot/configs/maxbcm_defconfig
/rk3399_rockchip-uboot/configs/mccmon6_nor_defconfig
/rk3399_rockchip-uboot/configs/mccmon6_sd_defconfig
/rk3399_rockchip-uboot/configs/mcx_defconfig
/rk3399_rockchip-uboot/configs/mecp5123_defconfig
/rk3399_rockchip-uboot/configs/meesc_dataflash_defconfig
/rk3399_rockchip-uboot/configs/meesc_defconfig
/rk3399_rockchip-uboot/configs/mgcoge3ne_defconfig
/rk3399_rockchip-uboot/configs/mgcoge_defconfig
/rk3399_rockchip-uboot/configs/mk802_a10s_defconfig
/rk3399_rockchip-uboot/configs/mk802ii_defconfig
/rk3399_rockchip-uboot/configs/motionpro_defconfig
/rk3399_rockchip-uboot/configs/mpc5121ads_defconfig
/rk3399_rockchip-uboot/configs/mpc5121ads_rev2_defconfig
/rk3399_rockchip-uboot/configs/mpc8308_p1m_defconfig
/rk3399_rockchip-uboot/configs/mt_ventoux_defconfig
/rk3399_rockchip-uboot/configs/munices_defconfig
/rk3399_rockchip-uboot/configs/mx31ads_defconfig
/rk3399_rockchip-uboot/configs/mx31pdk_defconfig
/rk3399_rockchip-uboot/configs/mx6cuboxi_defconfig
/rk3399_rockchip-uboot/configs/mx6sabresd_spl_defconfig
/rk3399_rockchip-uboot/configs/mx6slevk_spl_defconfig
/rk3399_rockchip-uboot/configs/mx6sxsabresd_spl_defconfig
/rk3399_rockchip-uboot/configs/mx6ul_14x14_evk_defconfig
/rk3399_rockchip-uboot/configs/mx6ul_9x9_evk_defconfig
/rk3399_rockchip-uboot/configs/nas220_defconfig
/rk3399_rockchip-uboot/configs/neo_defconfig
/rk3399_rockchip-uboot/configs/net2big_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_lite_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_max_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_mini_v2_defconfig
/rk3399_rockchip-uboot/configs/netspace_v2_defconfig
/rk3399_rockchip-uboot/configs/novena_defconfig
/rk3399_rockchip-uboot/configs/nsa310s_defconfig
/rk3399_rockchip-uboot/configs/nsim_700_defconfig
/rk3399_rockchip-uboot/configs/nsim_700be_defconfig
/rk3399_rockchip-uboot/configs/nsim_hs38_defconfig
/rk3399_rockchip-uboot/configs/nsim_hs38be_defconfig
/rk3399_rockchip-uboot/configs/odroid-c2_defconfig
/rk3399_rockchip-uboot/configs/omap3_evm_defconfig
/rk3399_rockchip-uboot/configs/omap3_ha_defconfig
/rk3399_rockchip-uboot/configs/omap3_logic_defconfig
/rk3399_rockchip-uboot/configs/omap3_overo_defconfig
/rk3399_rockchip-uboot/configs/omap4_panda_defconfig
/rk3399_rockchip-uboot/configs/omap4_sdp4430_defconfig
/rk3399_rockchip-uboot/configs/omap5_uevm_defconfig
/rk3399_rockchip-uboot/configs/omapl138_lcdk_defconfig
/rk3399_rockchip-uboot/configs/orangepi_2_defconfig
/rk3399_rockchip-uboot/configs/orangepi_pc_defconfig
/rk3399_rockchip-uboot/configs/orangepi_pc_plus_defconfig
/rk3399_rockchip-uboot/configs/orangepi_plus2e_defconfig
/rk3399_rockchip-uboot/configs/orangepi_plus_defconfig
/rk3399_rockchip-uboot/configs/orangepi_zero_defconfig
/rk3399_rockchip-uboot/configs/ot1200_spl_defconfig
/rk3399_rockchip-uboot/configs/pcm030_LOWBOOT_defconfig
/rk3399_rockchip-uboot/configs/pcm030_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev1_defconfig
/rk3399_rockchip-uboot/configs/pcm051_rev3_defconfig
/rk3399_rockchip-uboot/configs/pcm058_defconfig
/rk3399_rockchip-uboot/configs/pdm360ng_defconfig
/rk3399_rockchip-uboot/configs/peach-pi_defconfig
/rk3399_rockchip-uboot/configs/peach-pit_defconfig
/rk3399_rockchip-uboot/configs/pengwyn_defconfig
/rk3399_rockchip-uboot/configs/pepper_defconfig
/rk3399_rockchip-uboot/configs/pic32mzdask_defconfig
/rk3399_rockchip-uboot/configs/picosam9g45_defconfig
/rk3399_rockchip-uboot/configs/pine64_plus_defconfig
/rk3399_rockchip-uboot/configs/platinum_picon_defconfig
/rk3399_rockchip-uboot/configs/platinum_titanium_defconfig
/rk3399_rockchip-uboot/configs/pm9261_defconfig
/rk3399_rockchip-uboot/configs/pm9263_defconfig
/rk3399_rockchip-uboot/configs/pm9g45_defconfig
/rk3399_rockchip-uboot/configs/pogo_e02_defconfig
/rk3399_rockchip-uboot/configs/pov_protab2_ips9_defconfig
/rk3399_rockchip-uboot/configs/pxm2_defconfig
/rk3399_rockchip-uboot/configs/q8_a13_tablet_defconfig
/rk3399_rockchip-uboot/configs/qemu-ppce500_defconfig
/rk3399_rockchip-uboot/configs/qemu-x86_64_defconfig
/rk3399_rockchip-uboot/configs/r7-tv-dongle_defconfig
/rk3399_rockchip-uboot/configs/rainier_defconfig
/rk3399_rockchip-uboot/configs/rainier_ramboot_defconfig
/rk3399_rockchip-uboot/configs/rastaban_defconfig
/rk3399_rockchip-uboot/configs/redwood_defconfig
/rk3399_rockchip-uboot/configs/rut_defconfig
/rk3399_rockchip-uboot/configs/salvator-x_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_ptc_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_ptc_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d2_xplained_spiflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d3_xplained_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d3xek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d4_xplained_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_mmc_defconfig
/rk3399_rockchip-uboot/configs/sama5d4ek_nandflash_defconfig
/rk3399_rockchip-uboot/configs/sandbox_spl_defconfig
/rk3399_rockchip-uboot/configs/sbc8349_PCI_33_defconfig
/rk3399_rockchip-uboot/configs/sbc8349_PCI_66_defconfig
/rk3399_rockchip-uboot/configs/sbc8349_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_33_PCIE_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_33_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_66_PCIE_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_PCI_66_defconfig
/rk3399_rockchip-uboot/configs/sbc8548_defconfig
/rk3399_rockchip-uboot/configs/sbc8641d_defconfig
/rk3399_rockchip-uboot/configs/sequoia_defconfig
/rk3399_rockchip-uboot/configs/sequoia_ramboot_defconfig
/rk3399_rockchip-uboot/configs/sh7752evb_defconfig
/rk3399_rockchip-uboot/configs/sh7753evb_defconfig
/rk3399_rockchip-uboot/configs/sh7757lcr_defconfig
/rk3399_rockchip-uboot/configs/smartweb_defconfig
/rk3399_rockchip-uboot/configs/smdkc100_defconfig
/rk3399_rockchip-uboot/configs/snapper9260_defconfig
/rk3399_rockchip-uboot/configs/snapper9g20_defconfig
/rk3399_rockchip-uboot/configs/sniper_defconfig
/rk3399_rockchip-uboot/configs/snow_defconfig
/rk3399_rockchip-uboot/configs/socfpga_de1_soc_defconfig
/rk3399_rockchip-uboot/configs/socfpga_is1_defconfig
/rk3399_rockchip-uboot/configs/socrates_defconfig
/rk3399_rockchip-uboot/configs/spear300_defconfig
/rk3399_rockchip-uboot/configs/spear300_nand_defconfig
/rk3399_rockchip-uboot/configs/spear300_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear300_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spear310_defconfig
/rk3399_rockchip-uboot/configs/spear310_nand_defconfig
/rk3399_rockchip-uboot/configs/spear310_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear310_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear310_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spear310_usbtty_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear320_defconfig
/rk3399_rockchip-uboot/configs/spear320_nand_defconfig
/rk3399_rockchip-uboot/configs/spear320_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear320_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear320_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spear320_usbtty_pnor_defconfig
/rk3399_rockchip-uboot/configs/spear600_defconfig
/rk3399_rockchip-uboot/configs/spear600_nand_defconfig
/rk3399_rockchip-uboot/configs/spear600_usbtty_defconfig
/rk3399_rockchip-uboot/configs/spear600_usbtty_nand_defconfig
/rk3399_rockchip-uboot/configs/spring_defconfig
/rk3399_rockchip-uboot/configs/stm32f429-discovery_defconfig
/rk3399_rockchip-uboot/configs/stm32f746-disco_defconfig
/rk3399_rockchip-uboot/configs/stv0991_defconfig
/rk3399_rockchip-uboot/configs/sunxi_Gemei_G9_defconfig
/rk3399_rockchip-uboot/configs/suvd3_defconfig
/rk3399_rockchip-uboot/configs/sycamore_defconfig
/rk3399_rockchip-uboot/configs/t3corp_defconfig
/rk3399_rockchip-uboot/configs/tao3530_defconfig
/rk3399_rockchip-uboot/configs/taurus_defconfig
/rk3399_rockchip-uboot/configs/tb100_defconfig
/rk3399_rockchip-uboot/configs/tcm-bf537_defconfig
/rk3399_rockchip-uboot/configs/theadorable_debug_defconfig
/rk3399_rockchip-uboot/configs/theadorable_defconfig
/rk3399_rockchip-uboot/configs/thuban_defconfig
/rk3399_rockchip-uboot/configs/thunderx_88xx_defconfig
/rk3399_rockchip-uboot/configs/ti814x_evm_defconfig
/rk3399_rockchip-uboot/configs/ti816x_evm_defconfig
/rk3399_rockchip-uboot/configs/ts4600_defconfig
/rk3399_rockchip-uboot/configs/tuge1_defconfig
/rk3399_rockchip-uboot/configs/tuxx1_defconfig
/rk3399_rockchip-uboot/configs/twister_defconfig
/rk3399_rockchip-uboot/configs/udoo_defconfig
/rk3399_rockchip-uboot/configs/udoo_neo_defconfig
/rk3399_rockchip-uboot/configs/uniphier_ld11_defconfig
/rk3399_rockchip-uboot/configs/uniphier_ld20_defconfig
/rk3399_rockchip-uboot/configs/uniphier_ld4_sld8_defconfig
/rk3399_rockchip-uboot/configs/uniphier_pro4_defconfig
/rk3399_rockchip-uboot/configs/uniphier_pxs2_ld6b_defconfig
/rk3399_rockchip-uboot/configs/uniphier_sld3_defconfig
/rk3399_rockchip-uboot/configs/uniphier_v8_defconfig
/rk3399_rockchip-uboot/configs/usb_a9263_dataflash_defconfig
/rk3399_rockchip-uboot/configs/v38b_defconfig
/rk3399_rockchip-uboot/configs/ve8313_defconfig
/rk3399_rockchip-uboot/configs/vexpress_aemv8a_dram_defconfig
/rk3399_rockchip-uboot/configs/vexpress_aemv8a_juno_defconfig
/rk3399_rockchip-uboot/configs/vexpress_aemv8a_semi_defconfig
/rk3399_rockchip-uboot/configs/vme8349_defconfig
/rk3399_rockchip-uboot/configs/walnut_defconfig
/rk3399_rockchip-uboot/configs/wandboard_defconfig
/rk3399_rockchip-uboot/configs/woodburn_sd_defconfig
/rk3399_rockchip-uboot/configs/work_92105_defconfig
/rk3399_rockchip-uboot/configs/wtk_defconfig
/rk3399_rockchip-uboot/configs/xilinx-ppc405-generic_defconfig
/rk3399_rockchip-uboot/configs/xilinx-ppc440-generic_defconfig
/rk3399_rockchip-uboot/configs/xilinx_zynqmp_zc1751_xm016_dc2_defconfig
/rk3399_rockchip-uboot/configs/xpedite1000_defconfig
/rk3399_rockchip-uboot/configs/xpedite517x_defconfig
/rk3399_rockchip-uboot/configs/xpedite520x_defconfig
/rk3399_rockchip-uboot/configs/xpedite537x_defconfig
/rk3399_rockchip-uboot/configs/xpedite550x_defconfig
/rk3399_rockchip-uboot/configs/xpress_spl_defconfig
/rk3399_rockchip-uboot/configs/xtfpga_defconfig
/rk3399_rockchip-uboot/configs/yellowstone_defconfig
/rk3399_rockchip-uboot/configs/yosemite_defconfig
/rk3399_rockchip-uboot/configs/yucca_defconfig
/rk3399_rockchip-uboot/configs/zc5202_defconfig
/rk3399_rockchip-uboot/configs/zc5601_defconfig
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
omapimage.c
66a7a24606-Mar-2017 Jörg Krause <joerg.krause@embedded.rocks>

tools: binman: change shebang from python into python2

This tool does not work with Python 3. Change the shebang to make sure the
script is run by a Python 2 interpreter.

Signed-off-by: Jörg Krause

tools: binman: change shebang from python into python2

This tool does not work with Python 3. Change the shebang to make sure the
script is run by a Python 2 interpreter.

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>

show more ...


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx6/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-layerscape/Kconfig
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-layerscape/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/mach-exynos/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/am33xx/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap3/board.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap4/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap5/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-tegra/Kconfig
/rk3399_rockchip-uboot/board/ti/am335x/Kconfig
/rk3399_rockchip-uboot/board/ti/common/Kconfig
/rk3399_rockchip-uboot/drivers/power/axp809.c
/rk3399_rockchip-uboot/include/configs/am3517_crane.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/arndale.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/cm_t3517.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/nokia_rx51.h
/rk3399_rockchip-uboot/include/configs/omap3_evm.h
/rk3399_rockchip-uboot/include/configs/sniper.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/tegra20-common.h
/rk3399_rockchip-uboot/include/configs/tegra30-common.h
/rk3399_rockchip-uboot/include/configs/ti_omap3_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
binman/binman.py
d036107a03-Mar-2017 Tom Rini <trini@konsulko.com>

kconfiglib.py: Kludge in 'imply' support

Currently upstream does not yet understand the imply keyword. For what
we use kconfiglib.py for today, this is OK. We only need to be able to
evaluate in o

kconfiglib.py: Kludge in 'imply' support

Currently upstream does not yet understand the imply keyword. For what
we use kconfiglib.py for today, this is OK. We only need to be able to
evaluate in order to make boards.cfg and none of those choices will
depend on how imply evaluates out.

Signed-off-by: Tom Rini <trini@konsulko.com>

show more ...


/rk3399_rockchip-uboot/arch/arm/imx-common/Kconfig
/rk3399_rockchip-uboot/arch/arm/include/asm/fsl_secure_boot.h
/rk3399_rockchip-uboot/arch/arm/lib/semihosting.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_secure_boot.h
/rk3399_rockchip-uboot/board/freescale/common/Kconfig
/rk3399_rockchip-uboot/configs/B4420QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/B4420QDS_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/B4860QDS_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_SYSCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9131RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NAND_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_NOR_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SDCARD_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig
/rk3399_rockchip-uboot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_NAND_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/C29XPCIE_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PA_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NAND_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NOR_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_NOR_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SPIFLASH_SECBOOT_defconfig
/rk3399_rockchip-uboot/configs/P1010RDB-PB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P2041RDB_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P3041DS_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P4080DS_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5020DS_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_NAND_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/P5040DS_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1023RDB_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_DDR4_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_DDR4_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1024QDS_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1024RDB_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1040D4RDB_defconfig
/rk3399_rockchip-uboot/configs/T1040QDS_DDR4_defconfig
/rk3399_rockchip-uboot/configs/T1040QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1040QDS_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1040RDB_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1042D4RDB_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_NAND_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_NAND_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_PI_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T1042RDB_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080QDS_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2080RDB_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SPIFLASH_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T2081QDS_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T4160QDS_defconfig
/rk3399_rockchip-uboot/configs/T4160RDB_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_NAND_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_SRIO_PCIE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/T4240QDS_defconfig
/rk3399_rockchip-uboot/configs/T4240RDB_SDCARD_defconfig
/rk3399_rockchip-uboot/configs/T4240RDB_defconfig
/rk3399_rockchip-uboot/configs/ls1021aiot_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aiot_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_ddr4_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_ddr4_nor_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_nor_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1021aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_nor_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_ifc_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1021atwr_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_nor_ddr3_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1043aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1043ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_lpuart_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_sdcard_ifc_defconfig
/rk3399_rockchip-uboot/configs/ls1046aqds_sdcard_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_emmc_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls1046ardb_sdcard_defconfig
/rk3399_rockchip-uboot/configs/ls2080a_emu_defconfig
/rk3399_rockchip-uboot/configs/ls2080a_simu_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_nand_defconfig
/rk3399_rockchip-uboot/configs/ls2080aqds_qspi_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_SECURE_BOOT_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_defconfig
/rk3399_rockchip-uboot/configs/ls2080ardb_nand_defconfig
/rk3399_rockchip-uboot/include/configs/B4860QDS.h
/rk3399_rockchip-uboot/include/configs/BSC9131RDB.h
/rk3399_rockchip-uboot/include/configs/BSC9132QDS.h
/rk3399_rockchip-uboot/include/configs/C29XPCIE.h
/rk3399_rockchip-uboot/include/configs/P1010RDB.h
/rk3399_rockchip-uboot/include/configs/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/T102xQDS.h
/rk3399_rockchip-uboot/include/configs/T102xRDB.h
/rk3399_rockchip-uboot/include/configs/T1040QDS.h
/rk3399_rockchip-uboot/include/configs/T104xRDB.h
/rk3399_rockchip-uboot/include/configs/T208xQDS.h
/rk3399_rockchip-uboot/include/configs/T208xRDB.h
/rk3399_rockchip-uboot/include/configs/T4240QDS.h
/rk3399_rockchip-uboot/include/configs/T4240RDB.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/ls1021aiot.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/ls1043a_common.h
/rk3399_rockchip-uboot/include/configs/ls1046a_common.h
/rk3399_rockchip-uboot/include/configs/ls2080a_common.h
/rk3399_rockchip-uboot/include/configs/mx6_common.h
/rk3399_rockchip-uboot/include/configs/mx7_common.h
buildman/kconfiglib.py
8f42a2b628-Feb-2017 Patrick Delaunay <patrick.delaunay@st.com>

tools: Remove CONFIG_SYS_TEXT_BASE in Makefile

This define is not used in tools sources and can be removed
to avoid unnecessary link between tools and defconfig

Signed-off-by: Patrick Delaunay <pat

tools: Remove CONFIG_SYS_TEXT_BASE in Makefile

This define is not used in tools sources and can be removed
to avoid unnecessary link between tools and defconfig

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/.travis.yml
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld11-ref.dts
/rk3399_rockchip-uboot/arch/arm/dts/uniphier-ld20-ref.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap5/omap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/assembler.h
/rk3399_rockchip-uboot/arch/arm/lib/crt0_64.S
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap5/fdt.c
/rk3399_rockchip-uboot/arch/arm/mach-omap2/sec-common.c
/rk3399_rockchip-uboot/arch/arm/mach-socfpga/Kconfig
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/bcu/bcu-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/bcu/bcu-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/board_late_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boards.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-device/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-device/boot-device-ld11.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-device/boot-device-ld4.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-device/boot-device-pro5.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-device/boot-device-pxs2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-device/boot-device-sld3.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-device/boot-device.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-device/boot-device.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/boot-device/spl_board.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/Makefile
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/clk-ld11.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/clk-ld20.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/pll-base-ld20.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/pll-ld11.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/clk/pll.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ld11.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-ld20.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram/umc-pxs2.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/dram_init.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/init.h
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/memconf.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/micro-support-card.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/mmc-boot-mode.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/mmc-first-dev.c
/rk3399_rockchip-uboot/arch/arm/mach-uniphier/spl_board_init.c
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/i386/interrupt.c
/rk3399_rockchip-uboot/arch/x86/cpu/mp_init.c
/rk3399_rockchip-uboot/arch/x86/lib/zimage.c
/rk3399_rockchip-uboot/board/davinci/da8xxevm/README.da850
/rk3399_rockchip-uboot/board/ti/am57xx/board.c
/rk3399_rockchip-uboot/common/spl/Kconfig
/rk3399_rockchip-uboot/common/spl/spl_mmc.c
/rk3399_rockchip-uboot/common/splash_source.c
/rk3399_rockchip-uboot/configs/am335x_boneblack_vboot_defconfig
/rk3399_rockchip-uboot/configs/db-88f6820-gp_defconfig
/rk3399_rockchip-uboot/configs/kc1_defconfig
/rk3399_rockchip-uboot/configs/omap3_logic_defconfig
/rk3399_rockchip-uboot/configs/sniper_defconfig
/rk3399_rockchip-uboot/configs/udoo_neo_defconfig
/rk3399_rockchip-uboot/configs/uniphier_ld11_defconfig
/rk3399_rockchip-uboot/configs/uniphier_ld20_defconfig
/rk3399_rockchip-uboot/configs/uniphier_ld4_sld8_defconfig
/rk3399_rockchip-uboot/configs/uniphier_pro4_defconfig
/rk3399_rockchip-uboot/configs/uniphier_pxs2_ld6b_defconfig
/rk3399_rockchip-uboot/configs/uniphier_sld3_defconfig
/rk3399_rockchip-uboot/configs/uniphier_v8_defconfig
/rk3399_rockchip-uboot/disk/part_dos.c
/rk3399_rockchip-uboot/doc/README.uniphier
/rk3399_rockchip-uboot/drivers/i2c/fsl_i2c.c
/rk3399_rockchip-uboot/drivers/mtd/nand/Kconfig
/rk3399_rockchip-uboot/drivers/net/Kconfig
/rk3399_rockchip-uboot/drivers/net/macb.c
/rk3399_rockchip-uboot/drivers/net/zynq_gem.c
/rk3399_rockchip-uboot/drivers/pinctrl/uniphier/pinctrl-uniphier-core.c
/rk3399_rockchip-uboot/drivers/pinctrl/uniphier/pinctrl-uniphier-ld11.c
/rk3399_rockchip-uboot/drivers/pinctrl/uniphier/pinctrl-uniphier-ld20.c
/rk3399_rockchip-uboot/drivers/pinctrl/uniphier/pinctrl-uniphier-ld6b.c
/rk3399_rockchip-uboot/drivers/pinctrl/uniphier/pinctrl-uniphier-pro5.c
/rk3399_rockchip-uboot/drivers/pinctrl/uniphier/pinctrl-uniphier-pxs2.c
/rk3399_rockchip-uboot/drivers/pinctrl/uniphier/pinctrl-uniphier.h
/rk3399_rockchip-uboot/drivers/usb/dwc3/gadget.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_dfu.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_dfu.h
/rk3399_rockchip-uboot/drivers/usb/gadget/g_dnl.c
/rk3399_rockchip-uboot/drivers/video/cfb_console.c
/rk3399_rockchip-uboot/drivers/video/mxsfb.c
/rk3399_rockchip-uboot/drivers/video/rockchip/rk_hdmi.c
/rk3399_rockchip-uboot/include/configs/bav335x.h
/rk3399_rockchip-uboot/include/configs/db-88f6820-gp.h
/rk3399_rockchip-uboot/include/configs/kc1.h
/rk3399_rockchip-uboot/include/configs/sniper.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/tqma6.h
/rk3399_rockchip-uboot/include/configs/udoo_neo.h
/rk3399_rockchip-uboot/include/configs/uniphier.h
/rk3399_rockchip-uboot/include/part.h
/rk3399_rockchip-uboot/scripts/Kbuild.include
/rk3399_rockchip-uboot/scripts/Makefile.extrawarn
/rk3399_rockchip-uboot/scripts/config_whitelist.txt
Makefile

12345678910>>...58