History log of /rk3399_rockchip-uboot/common/ (Results 2451 – 2475 of 5256)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
7ce1526e05-Mar-2014 Marek Vasut <marex@denx.de>

env: Add env_export() wrapper

Implement env_export() wrapper, so that all implementers of saveenv() don't
have to call hexport_r(), crc32() etc. sequence . This trims down a bit of
code duplication.

env: Add env_export() wrapper

Implement env_export() wrapper, so that all implementers of saveenv() don't
have to call hexport_r(), crc32() etc. sequence . This trims down a bit of
code duplication.

Signed-off-by: Marek Vasut <marex@denx.de>

show more ...

b401b73d05-Mar-2014 Marek Vasut <marex@denx.de>

aes: Add 'aes' command to access AES-128-CBC

Add simple 'aes' command, which allows using the AES-128-CBC encryption
and decryption functions from U-Boot command line.

Signed-off-by: Marek Vasut <m

aes: Add 'aes' command to access AES-128-CBC

Add simple 'aes' command, which allows using the AES-128-CBC encryption
and decryption functions from U-Boot command line.

Signed-off-by: Marek Vasut <marex@denx.de>

show more ...

29a23f9d03-Mar-2014 Heiko Schocher <hs@denx.de>

tools, fit_check_sign: verify a signed fit image

add host tool "fit_check_sign" which verifies, if a fit image is
signed correct.

Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Simon Glass <sjg@chr

tools, fit_check_sign: verify a signed fit image

add host tool "fit_check_sign" which verifies, if a fit image is
signed correct.

Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Simon Glass <sjg@chromium.org>

show more ...

bf007ebb03-Mar-2014 Hung-ying Tyan <tyanh@chromium.org>

gen: Add progressive hash API

Add hash_init(), hash_update() and hash_finish() to the
hash_algo struct. Add hash_lookup_algo() to look up the
struct given an algorithm name.

Signed-off-by: Hung-yin

gen: Add progressive hash API

Add hash_init(), hash_update() and hash_finish() to the
hash_algo struct. Add hash_lookup_algo() to look up the
struct given an algorithm name.

Signed-off-by: Hung-ying Tyan <tyanh@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

db1b5f3d03-Mar-2014 Heiko Schocher <hs@denx.de>

rsa: add sha256,rsa4096 algorithm

Add support for sha256,rsa4096 signatures in u-boot.

Signed-off-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
Cc: andreas@oetken.name

646257d103-Mar-2014 Heiko Schocher <hs@denx.de>

rsa: add sha256-rsa2048 algorithm

based on patch from andreas@oetken.name:

http://patchwork.ozlabs.org/patch/294318/
commit message:
I currently need support for rsa-sha256 signatures in u-boot and

rsa: add sha256-rsa2048 algorithm

based on patch from andreas@oetken.name:

http://patchwork.ozlabs.org/patch/294318/
commit message:
I currently need support for rsa-sha256 signatures in u-boot and found out that
the code for signatures is not very generic. Thus adding of different
hash-algorithms for rsa-signatures is not easy to do without copy-pasting the
rsa-code. I attached a patch for how I think it could be better and included
support for rsa-sha256. This is a fast first shot.

aditionally work:
- removed checkpatch warnings
- removed compiler warnings
- rebased against current head

Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: andreas@oetken.name
Cc: Simon Glass <sjg@chromium.org>

show more ...

2842c1c203-Mar-2014 Heiko Schocher <hs@denx.de>

fit: add sha256 support

add sha256 support to fit images

Signed-off-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>

097dd3e003-Mar-2014 Heiko Schocher <hs@denx.de>

fdt: add "fdt checksign" command

check if a fdt is correct signed
pass an optional addr value. Contains the addr of the key blob

Signed-off-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sj

fdt: add "fdt checksign" command

check if a fdt is correct signed
pass an optional addr value. Contains the addr of the key blob

Signed-off-by: Heiko Schocher <hs@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

7d95f2a327-Feb-2014 Simon Glass <sjg@chromium.org>

sandbox: Add LCD driver

Add a simple LCD driver which uses SDL to display the image. We update the
image regularly, while still providing for reasonable performance.

Adjust the common lcd code to s

sandbox: Add LCD driver

Add a simple LCD driver which uses SDL to display the image. We update the
image regularly, while still providing for reasonable performance.

Adjust the common lcd code to support sandbox.

For command-line runs we do not want the LCD to be displayed, so add a
--show_lcd option to enable it.

Tested-by: Che-Liang Chiou <clchiou@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

41364f0f27-Feb-2014 Vadim Bendebury <vbendeb@chromium.org>

cros_ec: Move EC interface into common library

Add a common library for obtaining access to the Chrome OS EC. This is
used by boards which need to talk to the EC.

Reviewed-by: Vadim Bendebury <vben

cros_ec: Move EC interface into common library

Add a common library for obtaining access to the Chrome OS EC. This is
used by boards which need to talk to the EC.

Reviewed-by: Vadim Bendebury <vbendeb@google.com>
Tested-by: Vadim Bendebury <vbendeb@google.com>
Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

95fac6ab27-Feb-2014 Simon Glass <sjg@chromium.org>

sandbox: Use os functions to read host device tree

At present we use U-Boot's filesystem layer to read the sandbox device tree,
but this is problematic since it relies on a temporary feauture added

sandbox: Use os functions to read host device tree

At present we use U-Boot's filesystem layer to read the sandbox device tree,
but this is problematic since it relies on a temporary feauture added
there. Since we plan to implement proper block layer support for sandbox,
change this code to use the os layer functions instead. Also use the new
fdt_create_empty_tree() instead of our own code.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/.gitignore
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arc/config.mk
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/tegra-common/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/tegra124/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/mxsimage.mx23.cfg
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/mxsimage.mx28.cfg
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/u-boot-imx23.bd
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/clock_am43xx.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/ddr.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/emif4.c
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/spl.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-at91/spl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-kirkwood/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/pmc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra114/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra124/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra20/tegra.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tegra30/tegra.h
/rk3399_rockchip-uboot/arch/arm/lib/board.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf52x2/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf532x/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/config.mk
/rk3399_rockchip-uboot/arch/microblaze/config.mk
/rk3399_rockchip-uboot/arch/mips/cpu/mips32/au1x00/au1x00_usb_ohci.c
/rk3399_rockchip-uboot/arch/openrisc/config.mk
/rk3399_rockchip-uboot/arch/powerpc/config.mk
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/usb_ohci.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/b4860_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cmd_errata.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/config.mk
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/usb_ohci.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config_mpc85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_errata.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_85xx.h
/rk3399_rockchip-uboot/arch/powerpc/lib/bootm.c
/rk3399_rockchip-uboot/arch/sandbox/cpu/cpu.c
/rk3399_rockchip-uboot/arch/sh/include/asm/cpu_sh7722.h
/rk3399_rockchip-uboot/arch/sh/include/asm/cpu_sh7723.h
/rk3399_rockchip-uboot/arch/sh/include/asm/cpu_sh7724.h
/rk3399_rockchip-uboot/arch/sparc/cpu/leon3/usb_uhci.c
/rk3399_rockchip-uboot/arch/x86/config.mk
/rk3399_rockchip-uboot/arch/x86/lib/Makefile
/rk3399_rockchip-uboot/board/BuR/common/common.c
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/config.mk
/rk3399_rockchip-uboot/board/atmel/at91sam9263ek/at91sam9263ek.c
/rk3399_rockchip-uboot/board/atmel/sama5d3_xplained/Makefile
/rk3399_rockchip-uboot/board/atmel/sama5d3_xplained/sama5d3_xplained.c
/rk3399_rockchip-uboot/board/atmel/sama5d3xek/sama5d3xek.c
/rk3399_rockchip-uboot/board/avnet/fx12mm/Makefile
/rk3399_rockchip-uboot/board/avnet/v5fx30teval/Makefile
/rk3399_rockchip-uboot/board/compulab/cm_t335/cm_t335.c
/rk3399_rockchip-uboot/board/cray/L1/Makefile
/rk3399_rockchip-uboot/board/freescale/b4860qds/b4860qds.c
/rk3399_rockchip-uboot/board/freescale/b4860qds/b4860qds_crossbar_con.h
/rk3399_rockchip-uboot/board/freescale/b4860qds/eth_b4860qds.c
/rk3399_rockchip-uboot/board/freescale/t1040qds/Makefile
/rk3399_rockchip-uboot/board/freescale/t1040qds/diu.c
/rk3399_rockchip-uboot/board/freescale/t1040qds/t1040qds.h
/rk3399_rockchip-uboot/board/freescale/t1040qds/t1040qds_qixis.h
/rk3399_rockchip-uboot/board/freescale/t104xrdb/ddr.c
/rk3399_rockchip-uboot/board/freescale/t104xrdb/ddr.h
/rk3399_rockchip-uboot/board/freescale/t208xqds/eth_t208xqds.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/Makefile
/rk3399_rockchip-uboot/board/freescale/t208xrdb/README
/rk3399_rockchip-uboot/board/freescale/t208xrdb/cpld.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/cpld.h
/rk3399_rockchip-uboot/board/freescale/t208xrdb/ddr.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/ddr.h
/rk3399_rockchip-uboot/board/freescale/t208xrdb/eth_t208xrdb.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/law.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/pci.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t2080_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t2080_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t208xrdb.c
/rk3399_rockchip-uboot/board/freescale/t208xrdb/t208xrdb.h
/rk3399_rockchip-uboot/board/freescale/t208xrdb/tlb.c
/rk3399_rockchip-uboot/board/highbank/highbank.c
/rk3399_rockchip-uboot/board/hymod/config.mk
/rk3399_rockchip-uboot/board/isee/igep0033/board.c
/rk3399_rockchip-uboot/board/korat/config.mk
/rk3399_rockchip-uboot/board/matrix_vision/mvblm7/Makefile
/rk3399_rockchip-uboot/board/matrix_vision/mvsmr/Makefile
/rk3399_rockchip-uboot/board/mpl/common/usb_uhci.c
/rk3399_rockchip-uboot/board/phytec/pcm051/board.c
/rk3399_rockchip-uboot/board/renesas/ecovec/lowlevel_init.S
/rk3399_rockchip-uboot/board/siemens/dxr2/board.c
/rk3399_rockchip-uboot/board/siemens/dxr2/mux.c
/rk3399_rockchip-uboot/board/siemens/pxm2/board.c
/rk3399_rockchip-uboot/board/siemens/rut/board.c
/rk3399_rockchip-uboot/board/silica/pengwyn/board.c
/rk3399_rockchip-uboot/board/ti/am335x/board.c
/rk3399_rockchip-uboot/board/ti/am43xx/board.c
/rk3399_rockchip-uboot/board/ti/am43xx/mux.c
/rk3399_rockchip-uboot/board/ti/dra7xx/evm.c
/rk3399_rockchip-uboot/board/ti/ti814x/evm.c
/rk3399_rockchip-uboot/board/xilinx/ml507/Makefile
/rk3399_rockchip-uboot/boards.cfg
board_f.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/disk/part.c
/rk3399_rockchip-uboot/doc/README.SPL
/rk3399_rockchip-uboot/doc/README.TPL
/rk3399_rockchip-uboot/doc/README.commands
/rk3399_rockchip-uboot/doc/README.kwbimage
/rk3399_rockchip-uboot/doc/README.scrapyard
/rk3399_rockchip-uboot/doc/README.usb
/rk3399_rockchip-uboot/drivers/block/ahci.c
/rk3399_rockchip-uboot/drivers/mtd/nand/atmel_nand.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_ops.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_params.c
/rk3399_rockchip-uboot/drivers/mtd/spi/sf_probe.c
/rk3399_rockchip-uboot/drivers/net/cpsw.c
/rk3399_rockchip-uboot/drivers/spi/atmel_dataflash_spi.c
/rk3399_rockchip-uboot/drivers/usb/eth/Makefile
/rk3399_rockchip-uboot/drivers/usb/eth/mcs7830.c
/rk3399_rockchip-uboot/drivers/usb/eth/usb_ether.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/isp116x-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-hcd.c
/rk3399_rockchip-uboot/drivers/usb/host/ohci-s3c24xx.c
/rk3399_rockchip-uboot/drivers/usb/host/r8a66597-hcd.c
/rk3399_rockchip-uboot/drivers/usb/musb/musb_hcd.c
/rk3399_rockchip-uboot/drivers/video/cfb_console.c
/rk3399_rockchip-uboot/include/configs/B4860QDS.h
/rk3399_rockchip-uboot/include/configs/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/T1040QDS.h
/rk3399_rockchip-uboot/include/configs/T1040RDB.h
/rk3399_rockchip-uboot/include/configs/T1042RDB_PI.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/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am335x_igep0033.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/at91sam9263ek.h
/rk3399_rockchip-uboot/include/configs/bur_am335x_common.h
/rk3399_rockchip-uboot/include/configs/cm_t335.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/dxr2.h
/rk3399_rockchip-uboot/include/configs/harmony.h
/rk3399_rockchip-uboot/include/configs/km/kmp204x-common.h
/rk3399_rockchip-uboot/include/configs/km_kirkwood.h
/rk3399_rockchip-uboot/include/configs/lacie_kw.h
/rk3399_rockchip-uboot/include/configs/lsxl.h
/rk3399_rockchip-uboot/include/configs/m53evk.h
/rk3399_rockchip-uboot/include/configs/mx53loco.h
/rk3399_rockchip-uboot/include/configs/nitrogen6x.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap3_igep00x0.h
/rk3399_rockchip-uboot/include/configs/pcm051.h
/rk3399_rockchip-uboot/include/configs/pengwyn.h
/rk3399_rockchip-uboot/include/configs/pxm2.h
/rk3399_rockchip-uboot/include/configs/rut.h
/rk3399_rockchip-uboot/include/configs/sama5d3_xplained.h
/rk3399_rockchip-uboot/include/configs/sama5d3xek.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/stamp9g20.h
/rk3399_rockchip-uboot/include/configs/tegra-common-post.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/configs/tegra114-common.h
/rk3399_rockchip-uboot/include/configs/tegra124-common.h
/rk3399_rockchip-uboot/include/configs/tegra20-common.h
/rk3399_rockchip-uboot/include/configs/tegra30-common.h
/rk3399_rockchip-uboot/include/configs/ti814x_evm.h
/rk3399_rockchip-uboot/include/configs/ti_am335x_common.h
/rk3399_rockchip-uboot/include/cpsw.h
/rk3399_rockchip-uboot/include/fsl_usb.h
/rk3399_rockchip-uboot/include/nand.h
/rk3399_rockchip-uboot/include/usb_ether.h
/rk3399_rockchip-uboot/include/usbroothubdes.h
/rk3399_rockchip-uboot/mkconfig
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8315erdb/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8536ds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8569mds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8572ds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/p1023rds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/p1_p2_rdb/Makefile
/rk3399_rockchip-uboot/nand_spl/board/sheldon/simpc8313/Makefile
/rk3399_rockchip-uboot/spl/Makefile
/rk3399_rockchip-uboot/tools/Makefile
/rk3399_rockchip-uboot/tools/env/Makefile
/rk3399_rockchip-uboot/tools/env/fw_env.c
/rk3399_rockchip-uboot/tools/env/fw_env.config
58dac32705-Mar-2014 Masahiro Yamada <yamada.m@jp.panasonic.com>

powerpc: mpc8260: consolidate CONFIG_MPC8260 and CONFIG_8260

Before this commit, CONFIG_MPC8260 and CONFIG_8260
were used mixed-up.

All boards with mpc8260 cpu defined both of them:
- CONFIG_MPC8

powerpc: mpc8260: consolidate CONFIG_MPC8260 and CONFIG_8260

Before this commit, CONFIG_MPC8260 and CONFIG_8260
were used mixed-up.

All boards with mpc8260 cpu defined both of them:
- CONFIG_MPC8260 was defined in board config headers
and include/common.h
- CONFIG_8260 was defined arch/powerpc/cpu/mpc8260/config.mk

We do not need to have both of them.
This commit keeps only CONFIG_MPC8260.

This commit does:
- Delete CONFIG_8260 and CONFIG_MPC8260 definition
in config headers and include/common.h
- Rename CONFIG_8260 to CONFIG_MPC8260
in arch/powerpc/cpu/mpc8260/config.mk.
- Rename #ifdef CONFIG_8260 to #ifdef CONFIG_MPC8260

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Wolfgang Denk <wd@denx.de>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/api/api_platform-powerpc.c
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/blackfin/config.mk
/rk3399_rockchip-uboot/arch/mips/cpu/mips32/config.mk
/rk3399_rockchip-uboot/arch/mips/cpu/mips64/config.mk
/rk3399_rockchip-uboot/arch/mips/cpu/xburst/config.mk
/rk3399_rockchip-uboot/arch/mips/lib/Makefile
/rk3399_rockchip-uboot/arch/nds32/config.mk
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/config.mk
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/kgdb.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/start.S
/rk3399_rockchip-uboot/arch/powerpc/include/asm/processor.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/status_led.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/u-boot.h
/rk3399_rockchip-uboot/arch/powerpc/lib/Makefile
/rk3399_rockchip-uboot/arch/powerpc/lib/board.c
/rk3399_rockchip-uboot/arch/powerpc/lib/kgdb.c
/rk3399_rockchip-uboot/arch/sh/lib/Makefile
/rk3399_rockchip-uboot/arch/sparc/config.mk
/rk3399_rockchip-uboot/arch/x86/config.mk
/rk3399_rockchip-uboot/board/bf527-sdp/config.mk
/rk3399_rockchip-uboot/board/bf533-ezkit/config.mk
/rk3399_rockchip-uboot/board/bf533-stamp/config.mk
/rk3399_rockchip-uboot/board/bf537-stamp/config.mk
/rk3399_rockchip-uboot/board/bf538f-ezkit/config.mk
/rk3399_rockchip-uboot/board/bf548-ezkit/config.mk
/rk3399_rockchip-uboot/board/bf561-acvilon/config.mk
/rk3399_rockchip-uboot/board/bf561-ezkit/config.mk
/rk3399_rockchip-uboot/board/cm-bf533/config.mk
/rk3399_rockchip-uboot/board/cm-bf537e/config.mk
/rk3399_rockchip-uboot/board/cm-bf537u/config.mk
/rk3399_rockchip-uboot/board/cm-bf548/config.mk
/rk3399_rockchip-uboot/board/cm-bf561/config.mk
/rk3399_rockchip-uboot/board/cogent/mb.c
/rk3399_rockchip-uboot/board/cogent/serial.c
/rk3399_rockchip-uboot/board/hymod/hymod.h
/rk3399_rockchip-uboot/board/ip04/config.mk
/rk3399_rockchip-uboot/board/tcm-bf537/config.mk
/rk3399_rockchip-uboot/boards.cfg
board_f.c
cmd_bdinfo.c
cmd_immap.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/examples/standalone/Makefile
/rk3399_rockchip-uboot/include/asm-generic/u-boot.h
/rk3399_rockchip-uboot/include/common.h
/rk3399_rockchip-uboot/include/configs/CPU86.h
/rk3399_rockchip-uboot/include/configs/CPU87.h
/rk3399_rockchip-uboot/include/configs/IDS8247.h
/rk3399_rockchip-uboot/include/configs/IPHASE4539.h
/rk3399_rockchip-uboot/include/configs/ISPAN.h
/rk3399_rockchip-uboot/include/configs/MPC8260ADS.h
/rk3399_rockchip-uboot/include/configs/MPC8266ADS.h
/rk3399_rockchip-uboot/include/configs/PM826.h
/rk3399_rockchip-uboot/include/configs/PM828.h
/rk3399_rockchip-uboot/include/configs/RPXsuper.h
/rk3399_rockchip-uboot/include/configs/Rattler.h
/rk3399_rockchip-uboot/include/configs/TQM8260.h
/rk3399_rockchip-uboot/include/configs/TQM8272.h
/rk3399_rockchip-uboot/include/configs/ZPC1900.h
/rk3399_rockchip-uboot/include/configs/atc.h
/rk3399_rockchip-uboot/include/configs/bct-brettl2.h
/rk3399_rockchip-uboot/include/configs/bf518f-ezbrd.h
/rk3399_rockchip-uboot/include/configs/bf526-ezbrd.h
/rk3399_rockchip-uboot/include/configs/bf527-ad7160-eval.h
/rk3399_rockchip-uboot/include/configs/bf527-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf527-sdp.h
/rk3399_rockchip-uboot/include/configs/bf533-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf533-stamp.h
/rk3399_rockchip-uboot/include/configs/bf537-stamp.h
/rk3399_rockchip-uboot/include/configs/bf538f-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf548-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf561-acvilon.h
/rk3399_rockchip-uboot/include/configs/bf561-ezkit.h
/rk3399_rockchip-uboot/include/configs/br4.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/dbau1x00.h
/rk3399_rockchip-uboot/include/configs/ep8260.h
/rk3399_rockchip-uboot/include/configs/ep82xxm.h
/rk3399_rockchip-uboot/include/configs/gw8260.h
/rk3399_rockchip-uboot/include/configs/hymod.h
/rk3399_rockchip-uboot/include/configs/incaip.h
/rk3399_rockchip-uboot/include/configs/ip04.h
/rk3399_rockchip-uboot/include/configs/muas3001.h
/rk3399_rockchip-uboot/include/configs/pb1x00.h
/rk3399_rockchip-uboot/include/configs/ppmc8260.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/rsdproto.h
/rk3399_rockchip-uboot/include/configs/sacsng.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/vct.h
/rk3399_rockchip-uboot/include/ppc_asm.tmpl
/rk3399_rockchip-uboot/lib/Makefile
/rk3399_rockchip-uboot/scripts/Makefile.build
/rk3399_rockchip-uboot/scripts/Makefile.lib
/rk3399_rockchip-uboot/spl/Makefile
3775dcd904-Mar-2014 Tom Rini <trini@ti.com>

cmd_nvedit: Make 'env import -c' require size parameter

When importing a checksummed area we need to be told how big the area in
question is so that we know that will match the size of the area whic

cmd_nvedit: Make 'env import -c' require size parameter

When importing a checksummed area we need to be told how big the area in
question is so that we know that will match the size of the area which
the checksum is generated against.

Reported-by: Pierre AUBERT <p.aubert@staubli.com>
Signed-off-by: Tom Rini <trini@ti.com>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/44x_spd_ddr2.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/4xx_ibm_ddr2_autocalib.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/start.S
/rk3399_rockchip-uboot/arch/sandbox/cpu/os.c
/rk3399_rockchip-uboot/board/amcc/acadia/memory.c
/rk3399_rockchip-uboot/board/amcc/acadia/pll.c
/rk3399_rockchip-uboot/board/amcc/bamboo/bamboo.c
/rk3399_rockchip-uboot/board/amcc/bamboo/init.S
/rk3399_rockchip-uboot/board/amcc/canyonlands/canyonlands.c
/rk3399_rockchip-uboot/board/amcc/canyonlands/init.S
/rk3399_rockchip-uboot/board/amcc/sequoia/init.S
/rk3399_rockchip-uboot/board/amcc/sequoia/sdram.c
/rk3399_rockchip-uboot/board/amcc/sequoia/sequoia.c
/rk3399_rockchip-uboot/board/esd/pmc440/init.S
/rk3399_rockchip-uboot/board/esd/pmc440/pmc440.c
/rk3399_rockchip-uboot/boards.cfg
cmd_nvedit.c
/rk3399_rockchip-uboot/drivers/mtd/nand/ndfc.c
/rk3399_rockchip-uboot/drivers/net/phy/atheros.c
/rk3399_rockchip-uboot/include/configs/PMC440.h
/rk3399_rockchip-uboot/include/configs/acadia.h
/rk3399_rockchip-uboot/include/configs/amcc-common.h
/rk3399_rockchip-uboot/include/configs/bamboo.h
/rk3399_rockchip-uboot/include/configs/canyonlands.h
/rk3399_rockchip-uboot/include/configs/kilauea.h
/rk3399_rockchip-uboot/include/configs/redwood.h
/rk3399_rockchip-uboot/include/configs/sequoia.h
/rk3399_rockchip-uboot/include/os.h
/rk3399_rockchip-uboot/include/spi_flash.h
/rk3399_rockchip-uboot/test/command_ut.c
fe9ca3d302-Mar-2014 Stephen Warren <swarren@wwwdotorg.org>

hush: fix some quoted variable expansion issues

The following shell command fails:

if test -z "$x"; then echo "zero"; else echo "non-zero"; fi

(assuming $x does not exist, it prints "non-zero" rat

hush: fix some quoted variable expansion issues

The following shell command fails:

if test -z "$x"; then echo "zero"; else echo "non-zero"; fi

(assuming $x does not exist, it prints "non-zero" rather than "zero").

... since "$x" expands to nothing, and the argument is completely
dropped, causing too few to be passed to -z, causing cmd_test() to
error out early.

This is because when variable expansions are processed by make_string(),
the expanded results are concatenated back into a new string. However,
no quoting is applied when doing so, so any empty variables simply don't
generate any parameter when the combined string is parsed again.

Fix this by explicitly replacing quoting any argument that was originally
quoted when re-generating a string from the already-parsed argument list.

This also fixes loss of whitespace in commands such as:

setenv space " "
setenv var " 1${space}${space} 2 "
echo ">>${var}<<"

Reported-by: Russell King <linux@arm.linux.org.uk>
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arc/config.mk
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/mem.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap4/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap4/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap5/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap5/sys_proto.h
/rk3399_rockchip-uboot/arch/avr32/config.mk
/rk3399_rockchip-uboot/arch/blackfin/config.mk
/rk3399_rockchip-uboot/arch/m68k/config.mk
/rk3399_rockchip-uboot/arch/microblaze/config.mk
/rk3399_rockchip-uboot/arch/mips/config.mk
/rk3399_rockchip-uboot/arch/mips/include/asm/types.h
/rk3399_rockchip-uboot/arch/nds32/config.mk
/rk3399_rockchip-uboot/arch/nios2/config.mk
/rk3399_rockchip-uboot/arch/openrisc/config.mk
/rk3399_rockchip-uboot/arch/powerpc/config.mk
/rk3399_rockchip-uboot/arch/sh/config.mk
/rk3399_rockchip-uboot/arch/sparc/config.mk
/rk3399_rockchip-uboot/board/cray/L1/.gitignore
/rk3399_rockchip-uboot/board/freescale/m54418twr/config.mk
/rk3399_rockchip-uboot/board/gaisler/gr_cpci_ax2000/config.mk
/rk3399_rockchip-uboot/board/gaisler/gr_ep2s60/config.mk
/rk3399_rockchip-uboot/board/gaisler/gr_xc3s_1500/config.mk
/rk3399_rockchip-uboot/board/gaisler/grsim/config.mk
/rk3399_rockchip-uboot/board/gaisler/grsim_leon2/config.mk
/rk3399_rockchip-uboot/board/isee/igep00x0/igep00x0.c
/rk3399_rockchip-uboot/board/matrix_vision/mvblm7/.gitignore
/rk3399_rockchip-uboot/board/matrix_vision/mvsmr/.gitignore
/rk3399_rockchip-uboot/board/micronas/vct/config.mk
/rk3399_rockchip-uboot/board/overo/overo.c
/rk3399_rockchip-uboot/board/ti/am335x/README
/rk3399_rockchip-uboot/boards.cfg
hush.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/doc/README.malta
/rk3399_rockchip-uboot/drivers/mtd/nand/omap_elm.c
/rk3399_rockchip-uboot/drivers/mtd/nand/omap_gpmc.c
/rk3399_rockchip-uboot/drivers/usb/eth/asix.c
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am335x_igep0033.h
/rk3399_rockchip-uboot/include/configs/am3517_crane.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/dig297.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap3_evm_common.h
/rk3399_rockchip-uboot/include/configs/omap3_igep00x0.h
/rk3399_rockchip-uboot/include/configs/omap3_logic.h
/rk3399_rockchip-uboot/include/configs/omap3_overo.h
/rk3399_rockchip-uboot/include/configs/omap3_pandora.h
/rk3399_rockchip-uboot/include/configs/omap3_zoom1.h
/rk3399_rockchip-uboot/include/configs/siemens-am33x-common.h
/rk3399_rockchip-uboot/include/configs/tam3517-common.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/include/linux/mtd/omap_elm.h
/rk3399_rockchip-uboot/include/linux/mtd/omap_gpmc.h
/rk3399_rockchip-uboot/mkconfig
/rk3399_rockchip-uboot/scripts/checkpatch.pl
/rk3399_rockchip-uboot/spl/Makefile
/rk3399_rockchip-uboot/test/command_ut.c
/rk3399_rockchip-uboot/tools/Makefile
4d1fd7f127-Feb-2014 York Sun <yorksun@freescale.com>

Add 64-bit data support for memory commands

Add 64-bit data for memory commands, such as md, mw, mm, cmp. The new
size ".q " is introduced.

For 64-bit architecture, 64-bit data is enabled by defaul

Add 64-bit data support for memory commands

Add 64-bit data for memory commands, such as md, mw, mm, cmp. The new
size ".q " is introduced.

For 64-bit architecture, 64-bit data is enabled by default, by detecting
compiler __LP64__. It is optional for other architectures.

Signed-off-by: York Sun <yorksun@freescale.com>

show more ...

95a260a926-Feb-2014 Simon Glass <sjg@chromium.org>

dm: Enable gpio command to support driver model

Now that named GPIO banks are supported, along with a way of obtaining
the status of a GPIO (input or output), we can provide an enhanced
GPIO command

dm: Enable gpio command to support driver model

Now that named GPIO banks are supported, along with a way of obtaining
the status of a GPIO (input or output), we can provide an enhanced
GPIO command for driver model. Where the driver provides its own operation
for obtaining the GPIO state, this is used, otherwise a generic version
is sufficient.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

39f7611f26-Feb-2014 Simon Glass <sjg@chromium.org>

dm: Add a demonstration/example driver

As an example of how to write a uclass and a driver, provide a demo version
of each, accessible through the 'demo' command.

To use these with driver model, de

dm: Add a demonstration/example driver

As an example of how to write a uclass and a driver, provide a demo version
of each, accessible through the 'demo' command.

To use these with driver model, define CONFIG_CMD_DEMO and CONFIG_DM_DEMO.

The two demo drivers are enabled with CONFIG_DM_DEMO_SIMPLE and
CONFIG_DM_DEMO_SHAPE.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Marek Vasut <marex@denx.de>
Signed-off-by: Pavel Herrmann <morpheus.ibis@gmail.com>
Signed-off-by: Viktor Křivák <viktor.krivak@gmail.com>
Signed-off-by: Tomas Hlavacek <tmshlvck@gmail.com>

show more ...

1ce6017626-Feb-2014 Simon Glass <sjg@chromium.org>

dm: Set up driver model after relocation

Make driver model available after relocation, by setting up data structures
and scanning for devices using compiled-in platform_data and (when available)
the

dm: Set up driver model after relocation

Make driver model available after relocation, by setting up data structures
and scanning for devices using compiled-in platform_data and (when available)
the device tree.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

16ff990226-Feb-2014 Simon Glass <sjg@chromium.org>

Add cmd_process_error() to report and process errors

U-Boot now uses errors defined in include/errno.h which are negative
integers. Commands which fail need to report the error and return 1
to indic

Add cmd_process_error() to report and process errors

U-Boot now uses errors defined in include/errno.h which are negative
integers. Commands which fail need to report the error and return 1
to indicate failure. Add this functionality in cmd_process_error().

For now this merely reports the error number. It would be possible
also to produce a helpful error message by storing the error strings
in U-Boot.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/hwinit-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/hwinit-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap4/hwinit.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/hwinit.c
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/phy.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-davinci/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mb86r0x/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-tnetv107x/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-zynq/sys_proto.h
/rk3399_rockchip-uboot/arch/m68k/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5227x/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf523x/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf52x2/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf532x/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf547x_8x/config.mk
/rk3399_rockchip-uboot/arch/sandbox/config.mk
/rk3399_rockchip-uboot/arch/sandbox/dts/Makefile
/rk3399_rockchip-uboot/arch/sandbox/dts/sandbox.dts
/rk3399_rockchip-uboot/arch/sh/config.mk
/rk3399_rockchip-uboot/arch/sh/cpu/sh2/config.mk
/rk3399_rockchip-uboot/arch/sh/cpu/sh3/config.mk
/rk3399_rockchip-uboot/arch/sh/cpu/sh4/config.mk
/rk3399_rockchip-uboot/arch/x86/config.mk
/rk3399_rockchip-uboot/board/BuS/vl_ma2sc/vl_ma2sc.c
/rk3399_rockchip-uboot/board/atmel/at91sam9263ek/at91sam9263ek.c
/rk3399_rockchip-uboot/board/compulab/cm_t335/spl.c
/rk3399_rockchip-uboot/board/freescale/mx6slevk/mx6slevk.c
/rk3399_rockchip-uboot/board/highbank/highbank.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/common/misc.c
/rk3399_rockchip-uboot/board/wandboard/wandboard.c
/rk3399_rockchip-uboot/board/xilinx/zynq/board.c
command.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/drivers/fpga/zynqpl.c
/rk3399_rockchip-uboot/drivers/gpio/at91_gpio.c
/rk3399_rockchip-uboot/drivers/mmc/zynq_sdhci.c
/rk3399_rockchip-uboot/drivers/net/xilinx_emaclite.c
/rk3399_rockchip-uboot/drivers/net/zynq_gem.c
/rk3399_rockchip-uboot/drivers/pci/pcie_imx.c
/rk3399_rockchip-uboot/drivers/serial/serial_zynq.c
/rk3399_rockchip-uboot/drivers/usb/gadget/f_thor.h
/rk3399_rockchip-uboot/include/command.h
/rk3399_rockchip-uboot/include/configs/at91rm9200ek.h
/rk3399_rockchip-uboot/include/configs/bcm28155_ap.h
/rk3399_rockchip-uboot/include/configs/beaver.h
/rk3399_rockchip-uboot/include/configs/cardhu.h
/rk3399_rockchip-uboot/include/configs/cpuat91.h
/rk3399_rockchip-uboot/include/configs/dalmore.h
/rk3399_rockchip-uboot/include/configs/devkit3250.h
/rk3399_rockchip-uboot/include/configs/harmony.h
/rk3399_rockchip-uboot/include/configs/hummingboard.h
/rk3399_rockchip-uboot/include/configs/mx6sabre_common.h
/rk3399_rockchip-uboot/include/configs/mx6slevk.h
/rk3399_rockchip-uboot/include/configs/omap1510.h
/rk3399_rockchip-uboot/include/configs/omap3_sdp3430.h
/rk3399_rockchip-uboot/include/configs/paz00.h
/rk3399_rockchip-uboot/include/configs/rpi_b.h
/rk3399_rockchip-uboot/include/configs/sandbox.h
/rk3399_rockchip-uboot/include/configs/sbc35_a9g20.h
/rk3399_rockchip-uboot/include/configs/seaboard.h
/rk3399_rockchip-uboot/include/configs/snapper9260.h
/rk3399_rockchip-uboot/include/configs/tegra-common.h
/rk3399_rockchip-uboot/include/configs/tnetv107x_evm.h
/rk3399_rockchip-uboot/include/configs/trats.h
/rk3399_rockchip-uboot/include/configs/trats2.h
/rk3399_rockchip-uboot/include/configs/trimslice.h
/rk3399_rockchip-uboot/include/configs/udoo.h
/rk3399_rockchip-uboot/include/configs/venice2.h
/rk3399_rockchip-uboot/include/configs/ventana.h
/rk3399_rockchip-uboot/include/configs/wandboard.h
/rk3399_rockchip-uboot/include/configs/whistler.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/linux/sizes.h
/rk3399_rockchip-uboot/include/netdev.h
/rk3399_rockchip-uboot/include/usb/s3c_udc.h
/rk3399_rockchip-uboot/nand_spl/board/sheldon/simpc8313/Makefile
/rk3399_rockchip-uboot/nand_spl/board/sheldon/simpc8313/config.mk
/rk3399_rockchip-uboot/post/lib_powerpc/fpu/Makefile
eeb72e6726-Feb-2014 Tom Rini <trini@ti.com>

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

Conflicts:
arch/arm/cpu/armv7/config.mk
board/ti/am43xx/mux.c
include/configs/am43xx_evm.h

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


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/ep93xx/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm946es/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm_intcm/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/clock_am43xx.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/clock_ti814x.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-bcm281xx.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-bsc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-core.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-core.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-sdio.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/reset.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/clk-stubs.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/hwinit-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/s_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap4/hw_data.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/prcm-regs.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/sa1100/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/ddr_defs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-bcm281xx/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-bcm281xx/sysmap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/kona-common/clk.h
/rk3399_rockchip-uboot/arch/arm/include/asm/kona-common/kona_sdhci.h
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/lib/board.c
/rk3399_rockchip-uboot/arch/arm/lib/interrupts.c
/rk3399_rockchip-uboot/arch/arm/lib/sections.c
/rk3399_rockchip-uboot/board/Barix/ipam390/u-boot-spl-ipam390.lds
/rk3399_rockchip-uboot/board/BuR/common/bur_common.h
/rk3399_rockchip-uboot/board/BuR/common/common.c
/rk3399_rockchip-uboot/board/BuR/kwb/Makefile
/rk3399_rockchip-uboot/board/BuR/kwb/board.c
/rk3399_rockchip-uboot/board/BuR/kwb/mux.c
/rk3399_rockchip-uboot/board/BuR/tseries/Makefile
/rk3399_rockchip-uboot/board/BuR/tseries/board.c
/rk3399_rockchip-uboot/board/BuR/tseries/mux.c
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/u-boot-spl.lds
/rk3399_rockchip-uboot/board/armltd/integrator/lowlevel_init.S
/rk3399_rockchip-uboot/board/broadcom/bcm28155_ap/Makefile
/rk3399_rockchip-uboot/board/broadcom/bcm28155_ap/bcm28155_ap.c
/rk3399_rockchip-uboot/board/cm4008/flash.c
/rk3399_rockchip-uboot/board/cm41xx/flash.c
/rk3399_rockchip-uboot/board/compulab/cm_t335/u-boot.lds
/rk3399_rockchip-uboot/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
/rk3399_rockchip-uboot/board/davinci/da8xxevm/u-boot-spl-hawk.lds
/rk3399_rockchip-uboot/board/freescale/mx31ads/u-boot.lds
/rk3399_rockchip-uboot/board/htkw/mcx/mcx.h
/rk3399_rockchip-uboot/board/mpl/vcma9/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/common/exynos-uboot-spl.lds
/rk3399_rockchip-uboot/board/samsung/goni/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/smdk2410/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/smdkc100/lowlevel_init.S
/rk3399_rockchip-uboot/board/silica/pengwyn/Makefile
/rk3399_rockchip-uboot/board/silica/pengwyn/board.c
/rk3399_rockchip-uboot/board/silica/pengwyn/board.h
/rk3399_rockchip-uboot/board/silica/pengwyn/mux.c
/rk3399_rockchip-uboot/board/ti/am335x/u-boot.lds
/rk3399_rockchip-uboot/board/ti/am43xx/board.c
/rk3399_rockchip-uboot/board/ti/am43xx/mux.c
/rk3399_rockchip-uboot/board/ti/omap5912osk/lowlevel_init.S
/rk3399_rockchip-uboot/board/vpac270/u-boot-spl.lds
/rk3399_rockchip-uboot/boards.cfg
Makefile
board_f.c
board_r.c
cmd_pxe.c
/rk3399_rockchip-uboot/doc/README.unaligned-memory-access.txt
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/kona_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/kona_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/kona_sdhci.c
/rk3399_rockchip-uboot/fs/ext4/ext4_common.c
/rk3399_rockchip-uboot/fs/ext4/ext4_common.h
/rk3399_rockchip-uboot/fs/ext4/ext4fs.c
/rk3399_rockchip-uboot/fs/ubifs/Makefile
/rk3399_rockchip-uboot/include/asm-generic/sections.h
/rk3399_rockchip-uboot/include/bitfield.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/bcm28155_ap.h
/rk3399_rockchip-uboot/include/configs/bur_am335x_common.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/kwb.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/pengwyn.h
/rk3399_rockchip-uboot/include/configs/rpi_b.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/ti_am335x_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/tseries.h
/rk3399_rockchip-uboot/lib/Makefile
/rk3399_rockchip-uboot/scripts/checkpatch.pl
1551df3525-Feb-2014 Tom Rini <trini@ti.com>

arm: Switch to -mno-unaligned-access when supported by the compiler

When we tell the compiler to optimize for ARMv7 (and ARMv6 for that
matter) it assumes a default of SCTRL.A being cleared and unal

arm: Switch to -mno-unaligned-access when supported by the compiler

When we tell the compiler to optimize for ARMv7 (and ARMv6 for that
matter) it assumes a default of SCTRL.A being cleared and unaligned
accesses being allowed and fast at the hardware level. We set this bit
and must pass along -mno-unaligned-access so that the compiler will
still breakdown accesses and not trigger a data abort.

To better help understand the requirements of the project with respect
to unaligned memory access, the
Documentation/unaligned-memory-access.txt file has been added as
doc/README.unaligned-memory-access.txt and is taken from the v3.14-rc1
tag of the kernel.

Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Cc: Mans Rullgard <mans@mansr.com>
Signed-off-by: Tom Rini <trini@ti.com>

show more ...

b60eff3122-Feb-2014 Albert ARIBAUD <albert.u.boot@aribaud.net>

arm: remove unneeded symbol offsets and _TEXT_BASE

Remove the last uses of symbol offsets in ARM U-Boot.
Remove some needless uses of _TEXT_BASE.
Remove all _TEXT_BASE definitions.

Signed-off-by: A

arm: remove unneeded symbol offsets and _TEXT_BASE

Remove the last uses of symbol offsets in ARM U-Boot.
Remove some needless uses of _TEXT_BASE.
Remove all _TEXT_BASE definitions.

Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>

show more ...


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm1176/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/ep93xx/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm946es/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm_intcm/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/clock_am43xx.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/clock_ti814x.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-bcm281xx.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-bsc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-core.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-core.h
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/clk-sdio.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/bcm281xx/reset.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/clk-stubs.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/hwinit-common.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/kona-common/s_init.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap4/hw_data.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/prcm-regs.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/socfpga/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/zynq/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/cpu/at91-common/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/sa1100/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/cpu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/ddr_defs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-bcm281xx/gpio.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-bcm281xx/sysmap.h
/rk3399_rockchip-uboot/arch/arm/include/asm/kona-common/clk.h
/rk3399_rockchip-uboot/arch/arm/include/asm/kona-common/kona_sdhci.h
/rk3399_rockchip-uboot/arch/arm/lib/Makefile
/rk3399_rockchip-uboot/arch/arm/lib/board.c
/rk3399_rockchip-uboot/arch/arm/lib/sections.c
/rk3399_rockchip-uboot/board/Barix/ipam390/u-boot-spl-ipam390.lds
/rk3399_rockchip-uboot/board/BuR/common/bur_common.h
/rk3399_rockchip-uboot/board/BuR/common/common.c
/rk3399_rockchip-uboot/board/BuR/kwb/Makefile
/rk3399_rockchip-uboot/board/BuR/kwb/board.c
/rk3399_rockchip-uboot/board/BuR/kwb/mux.c
/rk3399_rockchip-uboot/board/BuR/tseries/Makefile
/rk3399_rockchip-uboot/board/BuR/tseries/board.c
/rk3399_rockchip-uboot/board/BuR/tseries/mux.c
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/u-boot-spl.lds
/rk3399_rockchip-uboot/board/armltd/integrator/lowlevel_init.S
/rk3399_rockchip-uboot/board/broadcom/bcm28155_ap/Makefile
/rk3399_rockchip-uboot/board/broadcom/bcm28155_ap/bcm28155_ap.c
/rk3399_rockchip-uboot/board/cm4008/flash.c
/rk3399_rockchip-uboot/board/cm41xx/flash.c
/rk3399_rockchip-uboot/board/compulab/cm_t335/u-boot.lds
/rk3399_rockchip-uboot/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
/rk3399_rockchip-uboot/board/davinci/da8xxevm/u-boot-spl-hawk.lds
/rk3399_rockchip-uboot/board/freescale/mx31ads/u-boot.lds
/rk3399_rockchip-uboot/board/htkw/mcx/mcx.h
/rk3399_rockchip-uboot/board/mpl/vcma9/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/common/exynos-uboot-spl.lds
/rk3399_rockchip-uboot/board/samsung/goni/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/smdk2410/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/smdkc100/lowlevel_init.S
/rk3399_rockchip-uboot/board/silica/pengwyn/Makefile
/rk3399_rockchip-uboot/board/silica/pengwyn/board.c
/rk3399_rockchip-uboot/board/silica/pengwyn/board.h
/rk3399_rockchip-uboot/board/silica/pengwyn/mux.c
/rk3399_rockchip-uboot/board/ti/am335x/u-boot.lds
/rk3399_rockchip-uboot/board/ti/am43xx/board.c
/rk3399_rockchip-uboot/board/ti/am43xx/mux.c
/rk3399_rockchip-uboot/board/ti/omap5912osk/lowlevel_init.S
/rk3399_rockchip-uboot/board/vpac270/u-boot-spl.lds
/rk3399_rockchip-uboot/boards.cfg
board_f.c
board_r.c
/rk3399_rockchip-uboot/drivers/gpio/Makefile
/rk3399_rockchip-uboot/drivers/gpio/kona_gpio.c
/rk3399_rockchip-uboot/drivers/i2c/Makefile
/rk3399_rockchip-uboot/drivers/i2c/kona_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/kona_sdhci.c
/rk3399_rockchip-uboot/include/asm-generic/sections.h
/rk3399_rockchip-uboot/include/bitfield.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/bcm28155_ap.h
/rk3399_rockchip-uboot/include/configs/bur_am335x_common.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/kwb.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/pengwyn.h
/rk3399_rockchip-uboot/include/configs/rpi_b.h
/rk3399_rockchip-uboot/include/configs/tao3530.h
/rk3399_rockchip-uboot/include/configs/ti_am335x_common.h
/rk3399_rockchip-uboot/include/configs/ti_omap4_common.h
/rk3399_rockchip-uboot/include/configs/tseries.h
a7e8c15f25-Feb-2014 Tom Rini <trini@ti.com>

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

With this, fixup a trivial build error of get_effective_memsize needing
to be updated in the new board/freescale/p1010rdb/spl.c

Signed-off-

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

With this, fixup a trivial build error of get_effective_memsize needing
to be updated in the new board/freescale/p1010rdb/spl.c

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

show more ...


/rk3399_rockchip-uboot/Kbuild
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap3/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap4/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap5/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/pxa/config.mk
/rk3399_rockchip-uboot/arch/arm/imx-common/Makefile
/rk3399_rockchip-uboot/arch/blackfin/cpu/Makefile
/rk3399_rockchip-uboot/arch/mips/config.mk
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t2080_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t2080_serdes.c
/rk3399_rockchip-uboot/arch/sandbox/config.mk
/rk3399_rockchip-uboot/board/freescale/p1010rdb/Makefile
/rk3399_rockchip-uboot/board/freescale/p1010rdb/spl.c
/rk3399_rockchip-uboot/board/freescale/p1010rdb/spl_minimal.c
/rk3399_rockchip-uboot/board/freescale/p1010rdb/tlb.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/Makefile
/rk3399_rockchip-uboot/board/freescale/t208xqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/ddr.h
/rk3399_rockchip-uboot/board/freescale/t208xqds/eth_t208xqds.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/law.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/pci.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2080_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2081_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208x_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208xqds.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208xqds.h
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208xqds_qixis.h
/rk3399_rockchip-uboot/board/freescale/t208xqds/tlb.c
/rk3399_rockchip-uboot/board/hymod/config.mk
/rk3399_rockchip-uboot/boards.cfg
env_sf.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/doc/DocBook/Makefile
/rk3399_rockchip-uboot/drivers/net/phy/atheros.c
/rk3399_rockchip-uboot/drivers/power/power_core.c
/rk3399_rockchip-uboot/drivers/usb/host/ehci-fsl.c
/rk3399_rockchip-uboot/examples/api/Makefile
/rk3399_rockchip-uboot/examples/standalone/Makefile
/rk3399_rockchip-uboot/include/configs/MPC8536DS.h
/rk3399_rockchip-uboot/include/configs/MPC8569MDS.h
/rk3399_rockchip-uboot/include/configs/MPC8572DS.h
/rk3399_rockchip-uboot/include/configs/P1010RDB.h
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/configs/P1023RDS.h
/rk3399_rockchip-uboot/include/configs/P1_P2_RDB.h
/rk3399_rockchip-uboot/include/configs/T208xQDS.h
/rk3399_rockchip-uboot/include/configs/arndale.h
/rk3399_rockchip-uboot/include/configs/p1_p2_rdb_pc.h
/rk3399_rockchip-uboot/include/configs/smdk5420.h
/rk3399_rockchip-uboot/nand_spl/board/amcc/acadia/Makefile
/rk3399_rockchip-uboot/nand_spl/board/amcc/bamboo/Makefile
/rk3399_rockchip-uboot/nand_spl/board/amcc/canyonlands/Makefile
/rk3399_rockchip-uboot/nand_spl/board/amcc/kilauea/Makefile
/rk3399_rockchip-uboot/nand_spl/board/amcc/sequoia/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8315erdb/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8536ds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8569mds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mpc8572ds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/p1023rds/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/p1_p2_rdb/Makefile
/rk3399_rockchip-uboot/nand_spl/board/sheldon/simpc8313/Makefile
/rk3399_rockchip-uboot/scripts/gcc-stack-usage.sh
/rk3399_rockchip-uboot/scripts/kernel-doc
/rk3399_rockchip-uboot/spl/Makefile
5a89fa9224-Jan-2014 Ying Zhang <b40530@freescale.com>

SPL: P2020RDB: fix the problem booting from spi flash

There was no enough stack in SPL, so the buffer needed in SPL is to malloc
from memory pool and to repalce the temporary variable.

Signed-off-b

SPL: P2020RDB: fix the problem booting from spi flash

There was no enough stack in SPL, so the buffer needed in SPL is to malloc
from memory pool and to repalce the temporary variable.

Signed-off-by: Ying Zhang <b40530@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>

show more ...


/rk3399_rockchip-uboot/MAKEALL
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t2080_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t2080_serdes.c
/rk3399_rockchip-uboot/board/bf609-ezkit/bf609-ezkit.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/Makefile
/rk3399_rockchip-uboot/board/freescale/t208xqds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/ddr.h
/rk3399_rockchip-uboot/board/freescale/t208xqds/eth_t208xqds.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/law.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/pci.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2080_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t2081_rcw.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208x_pbi.cfg
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208xqds.c
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208xqds.h
/rk3399_rockchip-uboot/board/freescale/t208xqds/t208xqds_qixis.h
/rk3399_rockchip-uboot/board/freescale/t208xqds/tlb.c
/rk3399_rockchip-uboot/board/spear/spear300/spear300.c
/rk3399_rockchip-uboot/board/spear/spear310/spear310.c
/rk3399_rockchip-uboot/board/spear/spear320/spear320.c
/rk3399_rockchip-uboot/board/spear/spear600/spear600.c
/rk3399_rockchip-uboot/board/spear/x600/x600.c
/rk3399_rockchip-uboot/board/synopsys/arcangel4/Makefile
/rk3399_rockchip-uboot/board/synopsys/axs101/Makefile
/rk3399_rockchip-uboot/board/synopsys/axs101/axs101.c
/rk3399_rockchip-uboot/board/synopsys/axs101/nand.c
/rk3399_rockchip-uboot/boards.cfg
env_sf.c
/rk3399_rockchip-uboot/doc/README.ARC
/rk3399_rockchip-uboot/drivers/net/designware.c
/rk3399_rockchip-uboot/drivers/net/designware.h
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/serial/serial_arc.c
/rk3399_rockchip-uboot/examples/standalone/stubs.c
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/configs/T208xQDS.h
/rk3399_rockchip-uboot/include/configs/arcangel4-be.h
/rk3399_rockchip-uboot/include/configs/arcangel4.h
/rk3399_rockchip-uboot/include/configs/axs101.h
/rk3399_rockchip-uboot/include/configs/bf609-ezkit.h
/rk3399_rockchip-uboot/include/configs/p1_p2_rdb_pc.h
/rk3399_rockchip-uboot/include/configs/spear-common.h
/rk3399_rockchip-uboot/include/configs/spear6xx_evb.h
/rk3399_rockchip-uboot/include/configs/x600.h
/rk3399_rockchip-uboot/include/netdev.h
/rk3399_rockchip-uboot/net/eth.c
1674df6020-Jan-2014 Karicheri, Muralidharan <m-karicheri2@ti.com>

ubifs: fix checkpatch warning

Fix the following checkpatch warning:-

WARNING: externs should be avoided in .c files

Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>

1...<<919293949596979899100>>...211