History log of /rk3399_rockchip-uboot/common/ (Results 3476 – 3500 of 5256)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
2a523f5214-Oct-2011 Shengzhou Liu <Shengzhou.Liu@freescale.com>

fdt: Add new fdt_set_node_status & fdt_set_status_by_alias helpers

Add common function fdt_set_node_status() to assist in various locations
that we set a nodes status. This function utilizes the st

fdt: Add new fdt_set_node_status & fdt_set_status_by_alias helpers

Add common function fdt_set_node_status() to assist in various locations
that we set a nodes status. This function utilizes the status values
that are part of the EPAPR spec (on power.org).

fdt_set_status_by_alias() is based on fdt_set_node_status() but uses an
alias string to identify the node to update.

We also add some shortcut functions to help the common cases of setting
"okay" and "disabled":

fdt_status_okay()
fdt_status_disabled()
fdt_status_okay_by_alias()
fdt_status_disabled_by_alias()

Finally, we fixup the corenet_ds ethernet code which previously had
a function by the same name that can be replaced with the new helpers.

Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Gerald Van Baren <vanbaren@cideas.com>

show more ...


/rk3399_rockchip-uboot/.gitignore
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/spl.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/spl_mmc.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/spl_nand.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/liodn.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p2041_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p3041_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p3060_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p4080_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p5020_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/portals.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/fdt.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_liodn.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_portals.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_85xx.h
/rk3399_rockchip-uboot/board/freescale/corenet_ds/eth_hydra.c
/rk3399_rockchip-uboot/board/freescale/corenet_ds/eth_p4080.c
fdt_support.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/drivers/net/fm/init.c
/rk3399_rockchip-uboot/drivers/net/fm/p1023.c
/rk3399_rockchip-uboot/drivers/net/fm/p3060.c
/rk3399_rockchip-uboot/drivers/net/fm/p4080.c
/rk3399_rockchip-uboot/drivers/net/fm/p5020.c
/rk3399_rockchip-uboot/drivers/serial/usbtty.h
/rk3399_rockchip-uboot/include/.gitignore
/rk3399_rockchip-uboot/include/asm-generic/gpio.h
/rk3399_rockchip-uboot/include/configs/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/P3041DS.h
/rk3399_rockchip-uboot/include/configs/P5020DS.h
/rk3399_rockchip-uboot/include/fdt_support.h
/rk3399_rockchip-uboot/include/timestamp.h
/rk3399_rockchip-uboot/include/version.h
/rk3399_rockchip-uboot/rules.mk
9254935817-Sep-2011 Simon Glass <sjg@chromium.org>

sandbox: Use uintptr_t for 32/64-bit compatibility

This fixes a problems when building on some 64-bit machines.

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

fe34107e17-Sep-2011 Simon Glass <sjg@chromium.org>

sandbox: Disable built-in malloc

We prefer to U-Boot's malloc but for now it is easier to use the C library's
version.

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

6d6f123607-Oct-2011 Simon Glass <sjg@chromium.org>

sandbox: Add bootm support

This adds sandbox architecture support to bootm, although it is probably
not useful to load sandbox code into the address space and execute it.

This change at least make

sandbox: Add bootm support

This adds sandbox architecture support to bootm, although it is probably
not useful to load sandbox code into the address space and execute it.

This change at least make the file build correctly on 64-bit machines.

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

show more ...

6fcc3be417-Sep-2011 Simon Glass <sjg@chromium.org>

sandbox: Add board info for architecture

This is required for the bdinfo command to work.

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

Fix syntax error.
Signed-off-by: Wolfgang Denk <wd@denx.de>

0ec2ce4a23-Sep-2011 Simon Glass <sjg@chromium.org>

Fix use of int as pointer in image.c

It is better to use %p in this case.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>

06283a6431-Aug-2011 Jason Hobbs <jason.hobbs@calxeda.com>

Add pxe command

Add pxe command, which is intended to mimic PXELINUX functionality.
'pxe get' uses tftp to retrieve a file based on UUID, MAC address or IP
address. 'pxe boot' interprets the content

Add pxe command

Add pxe command, which is intended to mimic PXELINUX functionality.
'pxe get' uses tftp to retrieve a file based on UUID, MAC address or IP
address. 'pxe boot' interprets the contents of PXELINUX config like file
to boot using a specific initrd, kernel and kernel command line.

This patch also adds a README.pxe file - see it for more details on the
pxe command.

Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>

show more ...

4d91a6ec23-Aug-2011 Jason Hobbs <jason.hobbs@calxeda.com>

Replace space and tab checks with isblank

These are various places I found that checked for conditions equivalent
to isblank.

Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>

ce2d4c9523-Aug-2011 Jason Hobbs <jason.hobbs@calxeda.com>

cosmetic: remove unneeded curly braces

This prevents a checkpatch warning in the patch to use isblank

Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>

c8a2079e31-Aug-2011 Jason Hobbs <jason.hobbs@calxeda.com>

common: add run_command2 for running simple or hush commands

Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>

b41bc5a823-Aug-2011 Jason Hobbs <jason.hobbs@calxeda.com>

common, menu: use abortboot for menu timeout

Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>

b69bf52d23-Aug-2011 Jason Hobbs <jason.hobbs@calxeda.com>

Add generic, reusable menu code

This will be used first by the pxe code, but is intended to be
generic and reusable for other jobs in U-boot.

Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>


/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/mx31/generic.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/spear/Makefile
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx31/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx31/imx-regs.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/blackfin_local.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/cache.h
/rk3399_rockchip-uboot/arch/blackfin/include/asm/config.h
/rk3399_rockchip-uboot/arch/sh/cpu/sh2/Makefile
/rk3399_rockchip-uboot/arch/sh/cpu/sh3/Makefile
/rk3399_rockchip-uboot/arch/sh/cpu/sh4/Makefile
/rk3399_rockchip-uboot/board/BuS/eb_cpux9k2/Makefile
/rk3399_rockchip-uboot/board/LaCie/edminiv2/Makefile
/rk3399_rockchip-uboot/board/LaCie/netspace_v2/Makefile
/rk3399_rockchip-uboot/board/Marvell/aspenite/Makefile
/rk3399_rockchip-uboot/board/Marvell/dkb/Makefile
/rk3399_rockchip-uboot/board/Marvell/gplugd/Makefile
/rk3399_rockchip-uboot/board/Marvell/guruplug/Makefile
/rk3399_rockchip-uboot/board/Marvell/mv88f6281gtw_ge/Makefile
/rk3399_rockchip-uboot/board/Marvell/openrd/Makefile
/rk3399_rockchip-uboot/board/Marvell/rd6281a/Makefile
/rk3399_rockchip-uboot/board/Marvell/sheevaplug/Makefile
/rk3399_rockchip-uboot/board/Seagate/dockstar/Makefile
/rk3399_rockchip-uboot/board/a4m072/Makefile
/rk3399_rockchip-uboot/board/actux1/Makefile
/rk3399_rockchip-uboot/board/actux2/Makefile
/rk3399_rockchip-uboot/board/actux3/Makefile
/rk3399_rockchip-uboot/board/actux4/Makefile
/rk3399_rockchip-uboot/board/adder/Makefile
/rk3399_rockchip-uboot/board/afeb9260/Makefile
/rk3399_rockchip-uboot/board/alaska/Makefile
/rk3399_rockchip-uboot/board/altera/nios2-generic/Makefile
/rk3399_rockchip-uboot/board/amcc/acadia/Makefile
/rk3399_rockchip-uboot/board/amcc/bamboo/Makefile
/rk3399_rockchip-uboot/board/amcc/bluestone/Makefile
/rk3399_rockchip-uboot/board/amcc/bubinga/Makefile
/rk3399_rockchip-uboot/board/amcc/canyonlands/Makefile
/rk3399_rockchip-uboot/board/amcc/ebony/Makefile
/rk3399_rockchip-uboot/board/amcc/katmai/Makefile
/rk3399_rockchip-uboot/board/amcc/kilauea/Makefile
/rk3399_rockchip-uboot/board/amcc/luan/Makefile
/rk3399_rockchip-uboot/board/amcc/makalu/Makefile
/rk3399_rockchip-uboot/board/amcc/ocotea/Makefile
/rk3399_rockchip-uboot/board/amcc/redwood/Makefile
/rk3399_rockchip-uboot/board/amcc/sequoia/Makefile
/rk3399_rockchip-uboot/board/amcc/taihu/Makefile
/rk3399_rockchip-uboot/board/amcc/taishan/Makefile
/rk3399_rockchip-uboot/board/amcc/walnut/Makefile
/rk3399_rockchip-uboot/board/amcc/yosemite/Makefile
/rk3399_rockchip-uboot/board/amcc/yucca/Makefile
/rk3399_rockchip-uboot/board/amirix/ap1000/Makefile
/rk3399_rockchip-uboot/board/apollon/Makefile
/rk3399_rockchip-uboot/board/armltd/integrator/Makefile
/rk3399_rockchip-uboot/board/armltd/versatile/Makefile
/rk3399_rockchip-uboot/board/armltd/vexpress/Makefile
/rk3399_rockchip-uboot/board/atmel/at91rm9200ek/Makefile
/rk3399_rockchip-uboot/board/atmel/at91sam9260ek/Makefile
/rk3399_rockchip-uboot/board/atmel/at91sam9261ek/Makefile
/rk3399_rockchip-uboot/board/atmel/at91sam9263ek/Makefile
/rk3399_rockchip-uboot/board/atmel/at91sam9m10g45ek/Makefile
/rk3399_rockchip-uboot/board/atmel/at91sam9rlek/Makefile
/rk3399_rockchip-uboot/board/balloon3/Makefile
/rk3399_rockchip-uboot/board/bc3450/Makefile
/rk3399_rockchip-uboot/board/bct-brettl2/Makefile
/rk3399_rockchip-uboot/board/bf506f-ezkit/Makefile
/rk3399_rockchip-uboot/board/bf518f-ezbrd/Makefile
/rk3399_rockchip-uboot/board/bf525-ucr2/Makefile
/rk3399_rockchip-uboot/board/bf526-ezbrd/Makefile
/rk3399_rockchip-uboot/board/bf527-ad7160-eval/Makefile
/rk3399_rockchip-uboot/board/bf527-ezkit/Makefile
/rk3399_rockchip-uboot/board/bf527-sdp/Makefile
/rk3399_rockchip-uboot/board/bf533-ezkit/Makefile
/rk3399_rockchip-uboot/board/bf533-stamp/Makefile
/rk3399_rockchip-uboot/board/bf537-minotaur/Makefile
/rk3399_rockchip-uboot/board/bf537-pnav/Makefile
/rk3399_rockchip-uboot/board/bf537-srv1/Makefile
/rk3399_rockchip-uboot/board/bf537-stamp/Makefile
/rk3399_rockchip-uboot/board/bf538f-ezkit/Makefile
/rk3399_rockchip-uboot/board/bf548-ezkit/Makefile
/rk3399_rockchip-uboot/board/bf561-acvilon/Makefile
/rk3399_rockchip-uboot/board/bf561-ezkit/Makefile
/rk3399_rockchip-uboot/board/blackstamp/Makefile
/rk3399_rockchip-uboot/board/blackvme/Makefile
/rk3399_rockchip-uboot/board/bluewater/snapper9260/Makefile
/rk3399_rockchip-uboot/board/calao/sbc35_a9g20/Makefile
/rk3399_rockchip-uboot/board/calao/tny_a9260/Makefile
/rk3399_rockchip-uboot/board/canmb/Makefile
/rk3399_rockchip-uboot/board/cerf250/Makefile
/rk3399_rockchip-uboot/board/cm-bf527/Makefile
/rk3399_rockchip-uboot/board/cm-bf533/Makefile
/rk3399_rockchip-uboot/board/cm-bf537e/Makefile
/rk3399_rockchip-uboot/board/cm-bf537u/Makefile
/rk3399_rockchip-uboot/board/cm-bf548/Makefile
/rk3399_rockchip-uboot/board/cm-bf561/Makefile
/rk3399_rockchip-uboot/board/cm4008/Makefile
/rk3399_rockchip-uboot/board/cm41xx/Makefile
/rk3399_rockchip-uboot/board/cm5200/Makefile
/rk3399_rockchip-uboot/board/cm_t35/Makefile
/rk3399_rockchip-uboot/board/cmi/Makefile
/rk3399_rockchip-uboot/board/cogent/Makefile
/rk3399_rockchip-uboot/board/colibri_pxa270/Makefile
/rk3399_rockchip-uboot/board/comelit/dig297/Makefile
/rk3399_rockchip-uboot/board/cradle/Makefile
/rk3399_rockchip-uboot/board/cray/L1/Makefile
/rk3399_rockchip-uboot/board/csb226/Makefile
/rk3399_rockchip-uboot/board/csb272/Makefile
/rk3399_rockchip-uboot/board/csb472/Makefile
/rk3399_rockchip-uboot/board/dave/PPChameleonEVB/Makefile
/rk3399_rockchip-uboot/board/davedenx/aria/Makefile
/rk3399_rockchip-uboot/board/davedenx/qong/Makefile
/rk3399_rockchip-uboot/board/davinci/common/Makefile
/rk3399_rockchip-uboot/board/davinci/da8xxevm/Makefile
/rk3399_rockchip-uboot/board/davinci/dm355evm/Makefile
/rk3399_rockchip-uboot/board/davinci/dm355leopard/Makefile
/rk3399_rockchip-uboot/board/davinci/dm365evm/Makefile
/rk3399_rockchip-uboot/board/davinci/dm6467evm/Makefile
/rk3399_rockchip-uboot/board/davinci/dvevm/Makefile
/rk3399_rockchip-uboot/board/davinci/ea20/Makefile
/rk3399_rockchip-uboot/board/davinci/schmoogie/Makefile
/rk3399_rockchip-uboot/board/davinci/sffsdr/Makefile
/rk3399_rockchip-uboot/board/davinci/sonata/Makefile
/rk3399_rockchip-uboot/board/dnp5370/Makefile
/rk3399_rockchip-uboot/board/dvlhost/Makefile
/rk3399_rockchip-uboot/board/eNET/Makefile
/rk3399_rockchip-uboot/board/efikamx/Makefile
/rk3399_rockchip-uboot/board/eltec/bab7xx/Makefile
/rk3399_rockchip-uboot/board/eltec/elppc/Makefile
/rk3399_rockchip-uboot/board/emk/top5200/Makefile
/rk3399_rockchip-uboot/board/emk/top9000/Makefile
/rk3399_rockchip-uboot/board/ep8248/Makefile
/rk3399_rockchip-uboot/board/ep8260/Makefile
/rk3399_rockchip-uboot/board/ep82xxm/Makefile
/rk3399_rockchip-uboot/board/ep88x/Makefile
/rk3399_rockchip-uboot/board/esd/adciop/Makefile
/rk3399_rockchip-uboot/board/esd/apc405/Makefile
/rk3399_rockchip-uboot/board/esd/ar405/Makefile
/rk3399_rockchip-uboot/board/esd/ash405/Makefile
/rk3399_rockchip-uboot/board/esd/canbt/Makefile
/rk3399_rockchip-uboot/board/esd/cms700/Makefile
/rk3399_rockchip-uboot/board/esd/cpci2dp/Makefile
/rk3399_rockchip-uboot/board/esd/cpci405/Makefile
/rk3399_rockchip-uboot/board/esd/cpci5200/Makefile
/rk3399_rockchip-uboot/board/esd/cpciiser4/Makefile
/rk3399_rockchip-uboot/board/esd/dasa_sim/Makefile
/rk3399_rockchip-uboot/board/esd/dp405/Makefile
/rk3399_rockchip-uboot/board/esd/du405/Makefile
/rk3399_rockchip-uboot/board/esd/du440/Makefile
/rk3399_rockchip-uboot/board/esd/hh405/Makefile
/rk3399_rockchip-uboot/board/esd/hub405/Makefile
/rk3399_rockchip-uboot/board/esd/mecp5123/Makefile
/rk3399_rockchip-uboot/board/esd/mecp5200/Makefile
/rk3399_rockchip-uboot/board/esd/meesc/Makefile
/rk3399_rockchip-uboot/board/esd/ocrtc/Makefile
/rk3399_rockchip-uboot/board/esd/otc570/Makefile
/rk3399_rockchip-uboot/board/esd/pci405/Makefile
/rk3399_rockchip-uboot/board/esd/pf5200/Makefile
/rk3399_rockchip-uboot/board/esd/plu405/Makefile
/rk3399_rockchip-uboot/board/esd/pmc405/Makefile
/rk3399_rockchip-uboot/board/esd/pmc405de/Makefile
/rk3399_rockchip-uboot/board/esd/pmc440/Makefile
/rk3399_rockchip-uboot/board/esd/vme8349/Makefile
/rk3399_rockchip-uboot/board/esd/voh405/Makefile
/rk3399_rockchip-uboot/board/esd/vom405/Makefile
/rk3399_rockchip-uboot/board/esd/wuh405/Makefile
/rk3399_rockchip-uboot/board/espt/Makefile
/rk3399_rockchip-uboot/board/eukrea/cpu9260/Makefile
/rk3399_rockchip-uboot/board/eukrea/cpuat91/Makefile
/rk3399_rockchip-uboot/board/faraday/a320evb/Makefile
/rk3399_rockchip-uboot/board/freescale/common/Makefile
/rk3399_rockchip-uboot/board/freescale/corenet_ds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc5121ads/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc7448hpc2/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8260ads/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8266ads/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8308rdb/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8313erdb/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8315erdb/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8323erdb/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc832xemds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8349emds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8349itx/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8360emds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8360erdk/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc837xemds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc837xerdb/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8536ds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8540ads/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8541cds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8544ds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8548cds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8555cds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8560ads/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8568mds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8569mds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8572ds/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8610hpcd/Makefile
/rk3399_rockchip-uboot/board/freescale/mpc8641hpcn/Makefile
/rk3399_rockchip-uboot/board/freescale/mx25pdk/Makefile
/rk3399_rockchip-uboot/board/freescale/mx31ads/Makefile
/rk3399_rockchip-uboot/board/freescale/mx31pdk/Makefile
/rk3399_rockchip-uboot/board/freescale/mx35pdk/Makefile
/rk3399_rockchip-uboot/board/freescale/mx51evk/Makefile
/rk3399_rockchip-uboot/board/freescale/mx53ard/Makefile
/rk3399_rockchip-uboot/board/freescale/mx53evk/Makefile
/rk3399_rockchip-uboot/board/freescale/mx53loco/Makefile
/rk3399_rockchip-uboot/board/freescale/mx53smd/Makefile
/rk3399_rockchip-uboot/board/freescale/p1010rdb/Makefile
/rk3399_rockchip-uboot/board/freescale/p1022ds/Makefile
/rk3399_rockchip-uboot/board/freescale/p1023rds/Makefile
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb/Makefile
/rk3399_rockchip-uboot/board/freescale/p1_p2_rdb_pc/Makefile
/rk3399_rockchip-uboot/board/freescale/p2020ds/Makefile
/rk3399_rockchip-uboot/board/freescale/p2041rdb/Makefile
/rk3399_rockchip-uboot/board/funkwerk/vovpn-gw/Makefile
/rk3399_rockchip-uboot/board/g2000/Makefile
/rk3399_rockchip-uboot/board/gaisler/gr_cpci_ax2000/Makefile
/rk3399_rockchip-uboot/board/gaisler/gr_ep2s60/Makefile
/rk3399_rockchip-uboot/board/gaisler/gr_xc3s_1500/Makefile
/rk3399_rockchip-uboot/board/gaisler/grsim/Makefile
/rk3399_rockchip-uboot/board/gaisler/grsim_leon2/Makefile
/rk3399_rockchip-uboot/board/galaxy5200/Makefile
/rk3399_rockchip-uboot/board/gdsys/405ep/Makefile
/rk3399_rockchip-uboot/board/gdsys/common/Makefile
/rk3399_rockchip-uboot/board/gdsys/dlvision/Makefile
/rk3399_rockchip-uboot/board/gdsys/gdppc440etx/Makefile
/rk3399_rockchip-uboot/board/gdsys/intip/Makefile
/rk3399_rockchip-uboot/board/gdsys/neo/Makefile
/rk3399_rockchip-uboot/board/gw8260/Makefile
/rk3399_rockchip-uboot/board/ibf-dsp561/Makefile
/rk3399_rockchip-uboot/board/icecube/Makefile
/rk3399_rockchip-uboot/board/imx31_phycore/Makefile
/rk3399_rockchip-uboot/board/inka4x0/Makefile
/rk3399_rockchip-uboot/board/innokom/Makefile
/rk3399_rockchip-uboot/board/intercontrol/digsy_mtc/Makefile
/rk3399_rockchip-uboot/board/ip04/Makefile
/rk3399_rockchip-uboot/board/ipek01/Makefile
/rk3399_rockchip-uboot/board/iphase4539/Makefile
/rk3399_rockchip-uboot/board/isee/igep0020/Makefile
/rk3399_rockchip-uboot/board/isee/igep0030/Makefile
/rk3399_rockchip-uboot/board/ispan/Makefile
/rk3399_rockchip-uboot/board/jornada/Makefile
/rk3399_rockchip-uboot/board/jse/Makefile
/rk3399_rockchip-uboot/board/jupiter/Makefile
/rk3399_rockchip-uboot/board/karo/tx25/Makefile
/rk3399_rockchip-uboot/board/keymile/km82xx/Makefile
/rk3399_rockchip-uboot/board/keymile/km83xx/Makefile
/rk3399_rockchip-uboot/board/keymile/km_arm/Makefile
/rk3399_rockchip-uboot/board/korat/Makefile
/rk3399_rockchip-uboot/board/logicpd/am3517evm/Makefile
/rk3399_rockchip-uboot/board/logicpd/imx27lite/Makefile
/rk3399_rockchip-uboot/board/logicpd/imx31_litekit/Makefile
/rk3399_rockchip-uboot/board/logicpd/zoom1/Makefile
/rk3399_rockchip-uboot/board/logicpd/zoom2/Makefile
/rk3399_rockchip-uboot/board/lubbock/Makefile
/rk3399_rockchip-uboot/board/lwmon5/Makefile
/rk3399_rockchip-uboot/board/manroland/hmi1001/Makefile
/rk3399_rockchip-uboot/board/manroland/mucmc52/Makefile
/rk3399_rockchip-uboot/board/manroland/uc101/Makefile
/rk3399_rockchip-uboot/board/matrix_vision/common/Makefile
/rk3399_rockchip-uboot/board/matrix_vision/mergerbox/Makefile
/rk3399_rockchip-uboot/board/matrix_vision/mvbc_p/Makefile
/rk3399_rockchip-uboot/board/matrix_vision/mvblm7/Makefile
/rk3399_rockchip-uboot/board/matrix_vision/mvsmr/Makefile
/rk3399_rockchip-uboot/board/mcc200/Makefile
/rk3399_rockchip-uboot/board/mercury/mpq101/Makefile
/rk3399_rockchip-uboot/board/micronas/vct/Makefile
/rk3399_rockchip-uboot/board/ml2/Makefile
/rk3399_rockchip-uboot/board/mosaixtech/icon/Makefile
/rk3399_rockchip-uboot/board/motionpro/Makefile
/rk3399_rockchip-uboot/board/mpc8308_p1m/Makefile
/rk3399_rockchip-uboot/board/mpl/mip405/Makefile
/rk3399_rockchip-uboot/board/mpl/pati/Makefile
/rk3399_rockchip-uboot/board/mpl/pip405/Makefile
/rk3399_rockchip-uboot/board/mpl/vcma9/Makefile
/rk3399_rockchip-uboot/board/mpr2/Makefile
/rk3399_rockchip-uboot/board/ms7720se/Makefile
/rk3399_rockchip-uboot/board/ms7722se/Makefile
/rk3399_rockchip-uboot/board/ms7750se/Makefile
/rk3399_rockchip-uboot/board/muas3001/Makefile
/rk3399_rockchip-uboot/board/munices/Makefile
/rk3399_rockchip-uboot/board/mx1ads/Makefile
/rk3399_rockchip-uboot/board/ns9750dev/Makefile
/rk3399_rockchip-uboot/board/nvidia/harmony/Makefile
/rk3399_rockchip-uboot/board/nvidia/seaboard/Makefile
/rk3399_rockchip-uboot/board/o2dnt/Makefile
/rk3399_rockchip-uboot/board/overo/Makefile
/rk3399_rockchip-uboot/board/palmld/Makefile
/rk3399_rockchip-uboot/board/palmtc/Makefile
/rk3399_rockchip-uboot/board/pandora/Makefile
/rk3399_rockchip-uboot/board/pcs440ep/Makefile
/rk3399_rockchip-uboot/board/pdm360ng/Makefile
/rk3399_rockchip-uboot/board/phytec/pcm030/Makefile
/rk3399_rockchip-uboot/board/pleb2/Makefile
/rk3399_rockchip-uboot/board/pm520/Makefile
/rk3399_rockchip-uboot/board/ppmc7xx/Makefile
/rk3399_rockchip-uboot/board/ppmc8260/Makefile
/rk3399_rockchip-uboot/board/prodrive/alpr/Makefile
/rk3399_rockchip-uboot/board/prodrive/p3mx/Makefile
/rk3399_rockchip-uboot/board/prodrive/p3p440/Makefile
/rk3399_rockchip-uboot/board/prodrive/pdnb3/Makefile
/rk3399_rockchip-uboot/board/psyent/pci5441/Makefile
/rk3399_rockchip-uboot/board/psyent/pk1c20/Makefile
/rk3399_rockchip-uboot/board/pxa255_idp/Makefile
/rk3399_rockchip-uboot/board/qi/qi_lb60/Makefile
/rk3399_rockchip-uboot/board/quad100hd/Makefile
/rk3399_rockchip-uboot/board/rattler/Makefile
/rk3399_rockchip-uboot/board/renesas/MigoR/Makefile
/rk3399_rockchip-uboot/board/renesas/ap325rxa/Makefile
/rk3399_rockchip-uboot/board/renesas/r2dplus/Makefile
/rk3399_rockchip-uboot/board/renesas/r7780mp/Makefile
/rk3399_rockchip-uboot/board/renesas/rsk7203/Makefile
/rk3399_rockchip-uboot/board/renesas/rsk7264/Makefile
/rk3399_rockchip-uboot/board/renesas/sh7757lcr/Makefile
/rk3399_rockchip-uboot/board/renesas/sh7763rdp/Makefile
/rk3399_rockchip-uboot/board/renesas/sh7785lcr/Makefile
/rk3399_rockchip-uboot/board/ronetix/pm9261/Makefile
/rk3399_rockchip-uboot/board/ronetix/pm9263/Makefile
/rk3399_rockchip-uboot/board/ronetix/pm9g45/Makefile
/rk3399_rockchip-uboot/board/rpxsuper/Makefile
/rk3399_rockchip-uboot/board/rsdproto/Makefile
/rk3399_rockchip-uboot/board/sacsng/Makefile
/rk3399_rockchip-uboot/board/samsung/goni/Makefile
/rk3399_rockchip-uboot/board/samsung/smdk2410/Makefile
/rk3399_rockchip-uboot/board/samsung/smdk6400/Makefile
/rk3399_rockchip-uboot/board/samsung/smdkc100/Makefile
/rk3399_rockchip-uboot/board/samsung/universal_c210/Makefile
/rk3399_rockchip-uboot/board/sandburst/karef/Makefile
/rk3399_rockchip-uboot/board/sandburst/metrobox/Makefile
/rk3399_rockchip-uboot/board/sbc405/Makefile
/rk3399_rockchip-uboot/board/sbc8349/Makefile
/rk3399_rockchip-uboot/board/sbc8548/Makefile
/rk3399_rockchip-uboot/board/sbc8560/Makefile
/rk3399_rockchip-uboot/board/sbc8641d/Makefile
/rk3399_rockchip-uboot/board/sc3/Makefile
/rk3399_rockchip-uboot/board/scb9328/Makefile
/rk3399_rockchip-uboot/board/sheldon/simpc8313/Makefile
/rk3399_rockchip-uboot/board/shmin/Makefile
/rk3399_rockchip-uboot/board/siemens/SCM/Makefile
/rk3399_rockchip-uboot/board/socrates/Makefile
/rk3399_rockchip-uboot/board/sorcery/Makefile
/rk3399_rockchip-uboot/board/spear/common/Makefile
/rk3399_rockchip-uboot/board/spear/spear300/Makefile
/rk3399_rockchip-uboot/board/spear/spear310/Makefile
/rk3399_rockchip-uboot/board/spear/spear320/Makefile
/rk3399_rockchip-uboot/board/spear/spear600/Makefile
/rk3399_rockchip-uboot/board/st-ericsson/u8500/Makefile
/rk3399_rockchip-uboot/board/st/nhk8815/Makefile
/rk3399_rockchip-uboot/board/stx/stxgp3/Makefile
/rk3399_rockchip-uboot/board/stx/stxssa/Makefile
/rk3399_rockchip-uboot/board/sx1/Makefile
/rk3399_rockchip-uboot/board/syteco/jadecpu/Makefile
/rk3399_rockchip-uboot/board/syteco/zmx25/Makefile
/rk3399_rockchip-uboot/board/t3corp/Makefile
/rk3399_rockchip-uboot/board/tcm-bf518/Makefile
/rk3399_rockchip-uboot/board/tcm-bf537/Makefile
/rk3399_rockchip-uboot/board/ti/am3517crane/Makefile
/rk3399_rockchip-uboot/board/ti/beagle/Makefile
/rk3399_rockchip-uboot/board/ti/evm/Makefile
/rk3399_rockchip-uboot/board/ti/omap1510inn/Makefile
/rk3399_rockchip-uboot/board/ti/omap1610inn/Makefile
/rk3399_rockchip-uboot/board/ti/omap2420h4/Makefile
/rk3399_rockchip-uboot/board/ti/omap5912osk/Makefile
/rk3399_rockchip-uboot/board/ti/omap730p2/Makefile
/rk3399_rockchip-uboot/board/ti/panda/Makefile
/rk3399_rockchip-uboot/board/ti/sdp3430/Makefile
/rk3399_rockchip-uboot/board/ti/sdp4430/Makefile
/rk3399_rockchip-uboot/board/ti/tnetv107xevm/Makefile
/rk3399_rockchip-uboot/board/timll/devkit8000/Makefile
/rk3399_rockchip-uboot/board/total5200/Makefile
/rk3399_rockchip-uboot/board/tqc/tqm5200/Makefile
/rk3399_rockchip-uboot/board/tqc/tqm834x/Makefile
/rk3399_rockchip-uboot/board/tqc/tqm85xx/Makefile
/rk3399_rockchip-uboot/board/trizepsiv/Makefile
/rk3399_rockchip-uboot/board/ttcontrol/vision2/Makefile
/rk3399_rockchip-uboot/board/ttcontrol/vision2/vision2.c
/rk3399_rockchip-uboot/board/v38b/Makefile
/rk3399_rockchip-uboot/board/ve8313/Makefile
/rk3399_rockchip-uboot/board/vpac270/Makefile
/rk3399_rockchip-uboot/board/w7o/Makefile
/rk3399_rockchip-uboot/board/xaeniax/Makefile
/rk3399_rockchip-uboot/board/xes/common/Makefile
/rk3399_rockchip-uboot/board/xes/xpedite1000/Makefile
/rk3399_rockchip-uboot/board/xes/xpedite517x/Makefile
/rk3399_rockchip-uboot/board/xes/xpedite520x/Makefile
/rk3399_rockchip-uboot/board/xes/xpedite537x/Makefile
/rk3399_rockchip-uboot/board/xes/xpedite550x/Makefile
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/Makefile
/rk3399_rockchip-uboot/board/xilinx/ppc405-generic/Makefile
/rk3399_rockchip-uboot/board/xilinx/ppc440-generic/Makefile
/rk3399_rockchip-uboot/board/xm250/Makefile
/rk3399_rockchip-uboot/board/zeus/Makefile
/rk3399_rockchip-uboot/board/zipitz2/Makefile
/rk3399_rockchip-uboot/board/zpc1900/Makefile
Makefile
menu.c
/rk3399_rockchip-uboot/doc/README.menu
/rk3399_rockchip-uboot/drivers/gpio/kw_gpio.c
/rk3399_rockchip-uboot/drivers/net/dm9000x.c
/rk3399_rockchip-uboot/drivers/spi/bfin_spi.c
/rk3399_rockchip-uboot/drivers/video/Makefile
/rk3399_rockchip-uboot/drivers/video/cfb_console.c
/rk3399_rockchip-uboot/drivers/video/fsl_diu_fb.c
/rk3399_rockchip-uboot/drivers/video/ipu.h
/rk3399_rockchip-uboot/drivers/video/mx3fb.c
/rk3399_rockchip-uboot/drivers/video/mxc_ipuv3_fb.c
/rk3399_rockchip-uboot/fs/yaffs2/Makefile
/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/MPC8560ADS.h
/rk3399_rockchip-uboot/include/configs/RPXsuper.h
/rk3399_rockchip-uboot/include/configs/Rattler.h
/rk3399_rockchip-uboot/include/configs/SBC8540.h
/rk3399_rockchip-uboot/include/configs/SCM.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/ep8260.h
/rk3399_rockchip-uboot/include/configs/gw8260.h
/rk3399_rockchip-uboot/include/configs/hymod.h
/rk3399_rockchip-uboot/include/configs/imx31_phycore.h
/rk3399_rockchip-uboot/include/configs/muas3001.h
/rk3399_rockchip-uboot/include/configs/ppmc8260.h
/rk3399_rockchip-uboot/include/configs/qong.h
/rk3399_rockchip-uboot/include/configs/rsdproto.h
/rk3399_rockchip-uboot/include/configs/sacsng.h
/rk3399_rockchip-uboot/include/configs/sbc8560.h
/rk3399_rockchip-uboot/include/configs/stxgp3.h
/rk3399_rockchip-uboot/include/configs/stxssa.h
/rk3399_rockchip-uboot/include/configs/vision2.h
/rk3399_rockchip-uboot/include/ipu_pixfmt.h
/rk3399_rockchip-uboot/include/menu.h
/rk3399_rockchip-uboot/lib/zlib/inffast.c
fa28bd2e13-Oct-2011 Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>

common: fix missing function pointer relocation in fixup_cmdtable()

The command auto-completion does not work on architectures relying
on CONFIG_NEEDS_MANUAL_RELOC like MIPS. Cause is the missing fu

common: fix missing function pointer relocation in fixup_cmdtable()

The command auto-completion does not work on architectures relying
on CONFIG_NEEDS_MANUAL_RELOC like MIPS. Cause is the missing function
pointer fixup for cmd_tbl_t::complete function in fixup_cmdtable().

This patch adds the missing pointer fixup in case of CONFIG_AUTO_COMPLETE
is defined.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>

show more ...

50bf17bd20-Sep-2011 Timur Tabi <timur@freescale.com>

fdt: update fdt_alloc_phandle to use fdt_get_phandle

The device tree compiler, dtc, can use "phandle" and/or "linux,phandle"
properties to specify the phandle for any node. By default, it uses
both

fdt: update fdt_alloc_phandle to use fdt_get_phandle

The device tree compiler, dtc, can use "phandle" and/or "linux,phandle"
properties to specify the phandle for any node. By default, it uses
both, but "linux,phandle" is deprecated. One day, we'd like to stop using
"linux,phandle", but U-boot needs to support both properties equally
first.

fdt_alloc_phandle() generates a unique phandle, but it was only checking
the "linux,phandle" properties. Instead, we use fdt_get_phandle(),
which checks both properties automatically. This ensures that we
support dtbs that only use "phandle".

The side-effect is that fdt_alloc_phandle() now takes twice as long, since
it has to check for two properties instead of one in each node that it
searches.

Signed-off-by: Timur Tabi <timur@freescale.com>

show more ...

3c927ccc20-Sep-2011 Timur Tabi <timur@freescale.com>

fdt: check for fdt errors in fdt_create_phandle

fdt_create_phandle() was ignoring errors from fdt_set_phandle(). If an
error occurs, print an error message and return 0, which is an invalid
phandle

fdt: check for fdt errors in fdt_create_phandle

fdt_create_phandle() was ignoring errors from fdt_set_phandle(). If an
error occurs, print an error message and return 0, which is an invalid
phandle. We also need to change the return type for fdt_create_phandle()
to indicate that it cannot return an error code.

Signed-off-by: Timur Tabi <timur@freescale.com>

show more ...


/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/MAKEALL
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/s3c24x0/usb_ohci.c
/rk3399_rockchip-uboot/arch/microblaze/include/asm/processor.h
/rk3399_rockchip-uboot/arch/microblaze/include/asm/unaligned.h
/rk3399_rockchip-uboot/arch/microblaze/lib/board.c
/rk3399_rockchip-uboot/arch/mips/cpu/xburst/Makefile
/rk3399_rockchip-uboot/arch/mips/cpu/xburst/config.mk
/rk3399_rockchip-uboot/arch/mips/cpu/xburst/cpu.c
/rk3399_rockchip-uboot/arch/mips/cpu/xburst/jz4740.c
/rk3399_rockchip-uboot/arch/mips/cpu/xburst/jz_serial.c
/rk3399_rockchip-uboot/arch/mips/cpu/xburst/start.S
/rk3399_rockchip-uboot/arch/mips/cpu/xburst/timer.c
/rk3399_rockchip-uboot/arch/mips/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/mips/include/asm/jz4740.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/ddr.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/interactive.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/main.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_fman.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_85xx.h
/rk3399_rockchip-uboot/board/freescale/corenet_ds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8349emds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8536ds/mpc8536ds.c
/rk3399_rockchip-uboot/board/freescale/mpc8572ds/ddr.c
/rk3399_rockchip-uboot/board/freescale/mpc8641hpcn/ddr.c
/rk3399_rockchip-uboot/board/freescale/p1022ds/ddr.c
/rk3399_rockchip-uboot/board/freescale/p2020ds/ddr.c
/rk3399_rockchip-uboot/board/freescale/p2041rdb/ddr.c
/rk3399_rockchip-uboot/board/qi/qi_lb60/Makefile
/rk3399_rockchip-uboot/board/qi/qi_lb60/config.mk
/rk3399_rockchip-uboot/board/qi/qi_lb60/qi_lb60.c
/rk3399_rockchip-uboot/board/qi/qi_lb60/u-boot.lds
/rk3399_rockchip-uboot/boards.cfg
fdt_support.c
/rk3399_rockchip-uboot/doc/README.fsl-ddr
/rk3399_rockchip-uboot/drivers/block/fsl_sata.c
/rk3399_rockchip-uboot/drivers/mtd/nand/Makefile
/rk3399_rockchip-uboot/drivers/mtd/nand/davinci_nand.c
/rk3399_rockchip-uboot/drivers/mtd/nand/jz4740_nand.c
/rk3399_rockchip-uboot/drivers/mtd/ubi/build.c
/rk3399_rockchip-uboot/drivers/net/fm/dtsec.c
/rk3399_rockchip-uboot/drivers/net/fm/eth.c
/rk3399_rockchip-uboot/drivers/net/phy/teranetics.c
/rk3399_rockchip-uboot/fs/ubifs/super.c
/rk3399_rockchip-uboot/include/configs/MPC8536DS.h
/rk3399_rockchip-uboot/include/configs/MPC8548CDS.h
/rk3399_rockchip-uboot/include/configs/MPC8641HPCN.h
/rk3399_rockchip-uboot/include/configs/P1022DS.h
/rk3399_rockchip-uboot/include/configs/dlvision-10g.h
/rk3399_rockchip-uboot/include/configs/intip.h
/rk3399_rockchip-uboot/include/configs/p1_p2_rdb_pc.h
/rk3399_rockchip-uboot/include/configs/qi_lb60.h
/rk3399_rockchip-uboot/include/fdt_support.h
/rk3399_rockchip-uboot/include/mpc86xx.h
fad2e1b005-Oct-2011 Wolfgang Denk <wd@denx.de>

common/usb.c: fix warning: variable ... set but not used

Fix:
usb.c: In function 'usb_parse_config':
usb.c:331:17: warning: variable 'ch' set but not used [-Wunused-but-set-variable]
usb.c: In funct

common/usb.c: fix warning: variable ... set but not used

Fix:
usb.c: In function 'usb_parse_config':
usb.c:331:17: warning: variable 'ch' set but not used [-Wunused-but-set-variable]
usb.c: In function 'usb_hub_port_connect_change':
usb.c:1123:29: warning: variable 'portchange' set but not used [-Wunused-but-set-variable]
usb.c: In function 'usb_hub_configure':
usb.c:1183:25: warning: variable 'hubsts' set but not used [-Wunused-but-set-variable]

Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Remy Bohmer <linux@bohmer.net>
Acked-by: Remy Bohmer <linux@bohmer.net>

show more ...

10f4dd7805-Oct-2011 Wolfgang Denk <wd@denx.de>

common/cmd_usb.c: fix warning: variable ... set but not used

Fix:
cmd_usb.c: In function 'usb_show_tree_graph':
cmd_usb.c:284:29: warning: variable 'port' set but not used [-Wunused-but-set-variable

common/cmd_usb.c: fix warning: variable ... set but not used

Fix:
cmd_usb.c: In function 'usb_show_tree_graph':
cmd_usb.c:284:29: warning: variable 'port' set but not used [-Wunused-but-set-variable]

Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Remy Bohmer <linux@bohmer.net>
Acked-by: Remy Bohmer <linux@bohmer.net>

show more ...

419a1fe905-Oct-2011 Wolfgang Denk <wd@denx.de>

CFI: fix warning: variable ... set but not used

Fix:
cfi_mtd.c: In function 'cfi_mtd_init':
cfi_mtd.c:226:19: warning: variable 'mtd_list' set but not used [-Wunused-but-set-variable]
cfi_mtd.c: In

CFI: fix warning: variable ... set but not used

Fix:
cfi_mtd.c: In function 'cfi_mtd_init':
cfi_mtd.c:226:19: warning: variable 'mtd_list' set but not used [-Wunused-but-set-variable]
cfi_mtd.c: In function 'cfi_mtd_init':
cfi_mtd.c:225:6: warning: unused variable 'devices_found'
cfi_mtd.c: In function 'cfi_mtd_init':
cfi_mtd.c:226:19: warning: variable 'mtd_list' set but not used [-Wunused-but-set-variable]
[-Wunused-variable]

Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Stefan Roese <sr@denx.de>
Acked-by: Stefan Roese <sr@denx.de>

show more ...

ca366d0e06-Oct-2011 Che-liang Chiou <clchiou@chromium.org>

cmd_time: add time command

The 'time' command runs and reports execution time of commands.

Sample usage:
--------------------
u-boot# time crc 0x1000 1000
CRC32 for 00001000 ... 00001fff ==> ae94dc

cmd_time: add time command

The 'time' command runs and reports execution time of commands.

Sample usage:
--------------------
u-boot# time crc 0x1000 1000
CRC32 for 00001000 ... 00001fff ==> ae94dc4b

time: 0.004 seconds, 4 ticks
--------------------

Signed-off-by: Che-Liang Chiou <clchiou@chromium.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>

show more ...

e42624bb07-Oct-2011 Wolfgang Denk <wd@denx.de>

common/image.c: remove duplicated IH_TYPE entries.

Also rearrange IH_TYPE table slightly.

Signed-off-by: Wolfgang Denk <wd@denx.de>

49a23e4a25-Sep-2011 Michal Simek <monstr@monstr.eu>

serial: uartlite: Support for SERIAL_MULTI

Add support for SERIAL MULTI for uartlite.

Signed-off-by: Michal Simek <monstr@monstr.eu>

8e8a4bc203-Oct-2011 Kumar Gala <galak@kernel.crashing.org>

cmd_sf: Fix compiler warning

cmd_sf.c: In function 'do_spi_flash':
cmd_sf.c:164:9: warning: 'skipped' may be used uninitialized in this function

Signed-off-by: Kumar Gala <galak@kernel.crashing.org

cmd_sf: Fix compiler warning

cmd_sf.c: In function 'do_spi_flash':
cmd_sf.c:164:9: warning: 'skipped' may be used uninitialized in this function

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/api/api_net.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-kirkwood/config.h
/rk3399_rockchip-uboot/arch/arm/lib/board.c
/rk3399_rockchip-uboot/arch/avr32/lib/board.c
/rk3399_rockchip-uboot/arch/m68k/lib/board.c
/rk3399_rockchip-uboot/arch/mips/lib/board.c
/rk3399_rockchip-uboot/arch/nios2/lib/board.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8220/fec.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/ether_fcc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/ether_scc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/ether_fcc.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/miiphy.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/ppc4xx-emac.h
/rk3399_rockchip-uboot/arch/powerpc/lib/board.c
/rk3399_rockchip-uboot/arch/sparc/lib/board.c
/rk3399_rockchip-uboot/arch/x86/lib/board.c
/rk3399_rockchip-uboot/board/BuS/eb_cpux9k2/cpux9k2.c
/rk3399_rockchip-uboot/board/cm-bf537e/cm-bf537e.c
/rk3399_rockchip-uboot/board/cm-bf537u/cm-bf537u.c
/rk3399_rockchip-uboot/board/evb64260/eth.c
/rk3399_rockchip-uboot/board/tcm-bf537/tcm-bf537.c
cmd_sf.c
/rk3399_rockchip-uboot/doc/README.m53017evb
/rk3399_rockchip-uboot/doc/README.m5373evb
/rk3399_rockchip-uboot/doc/README.m54455evb
/rk3399_rockchip-uboot/doc/README.m5475evb
/rk3399_rockchip-uboot/doc/README.usb
/rk3399_rockchip-uboot/doc/feature-removal-schedule.txt
/rk3399_rockchip-uboot/drivers/net/4xx_enet.c
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/net/mcfmii.c
/rk3399_rockchip-uboot/drivers/net/mpc512x_fec.c
/rk3399_rockchip-uboot/include/configs/A3000.h
/rk3399_rockchip-uboot/include/configs/ADCIOP.h
/rk3399_rockchip-uboot/include/configs/AP1000.h
/rk3399_rockchip-uboot/include/configs/APC405.h
/rk3399_rockchip-uboot/include/configs/AR405.h
/rk3399_rockchip-uboot/include/configs/ASH405.h
/rk3399_rockchip-uboot/include/configs/Alaska8220.h
/rk3399_rockchip-uboot/include/configs/BAB7xx.h
/rk3399_rockchip-uboot/include/configs/BC3450.h
/rk3399_rockchip-uboot/include/configs/BMW.h
/rk3399_rockchip-uboot/include/configs/CATcenter.h
/rk3399_rockchip-uboot/include/configs/CMS700.h
/rk3399_rockchip-uboot/include/configs/CPC45.h
/rk3399_rockchip-uboot/include/configs/CPCI405.h
/rk3399_rockchip-uboot/include/configs/CPCI4052.h
/rk3399_rockchip-uboot/include/configs/CPCI405AB.h
/rk3399_rockchip-uboot/include/configs/CPCI405DT.h
/rk3399_rockchip-uboot/include/configs/CPCI750.h
/rk3399_rockchip-uboot/include/configs/CPCIISER4.h
/rk3399_rockchip-uboot/include/configs/CRAYL1.h
/rk3399_rockchip-uboot/include/configs/CU824.h
/rk3399_rockchip-uboot/include/configs/DASA_SIM.h
/rk3399_rockchip-uboot/include/configs/DB64360.h
/rk3399_rockchip-uboot/include/configs/DB64460.h
/rk3399_rockchip-uboot/include/configs/DU405.h
/rk3399_rockchip-uboot/include/configs/DU440.h
/rk3399_rockchip-uboot/include/configs/EB+MCF-EV123.h
/rk3399_rockchip-uboot/include/configs/ELPPC.h
/rk3399_rockchip-uboot/include/configs/EVB64260.h
/rk3399_rockchip-uboot/include/configs/EXBITGEN.h
/rk3399_rockchip-uboot/include/configs/G2000.h
/rk3399_rockchip-uboot/include/configs/HH405.h
/rk3399_rockchip-uboot/include/configs/HIDDEN_DRAGON.h
/rk3399_rockchip-uboot/include/configs/HUB405.h
/rk3399_rockchip-uboot/include/configs/IceCube.h
/rk3399_rockchip-uboot/include/configs/JSE.h
/rk3399_rockchip-uboot/include/configs/KAREF.h
/rk3399_rockchip-uboot/include/configs/M5208EVBE.h
/rk3399_rockchip-uboot/include/configs/M5235EVB.h
/rk3399_rockchip-uboot/include/configs/M5253DEMO.h
/rk3399_rockchip-uboot/include/configs/M5271EVB.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/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/MERGERBOX.h
/rk3399_rockchip-uboot/include/configs/METROBOX.h
/rk3399_rockchip-uboot/include/configs/MIP405.h
/rk3399_rockchip-uboot/include/configs/MOUSSE.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/MPC8360EMDS.h
/rk3399_rockchip-uboot/include/configs/MPC8360ERDK.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/MUSENKI.h
/rk3399_rockchip-uboot/include/configs/MVBC_P.h
/rk3399_rockchip-uboot/include/configs/MVBLM7.h
/rk3399_rockchip-uboot/include/configs/MVBLUE.h
/rk3399_rockchip-uboot/include/configs/MigoR.h
/rk3399_rockchip-uboot/include/configs/NETPHONE.h
/rk3399_rockchip-uboot/include/configs/NETTA.h
/rk3399_rockchip-uboot/include/configs/NETTA2.h
/rk3399_rockchip-uboot/include/configs/OCRTC.h
/rk3399_rockchip-uboot/include/configs/ORSG.h
/rk3399_rockchip-uboot/include/configs/OXC.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/P2020DS.h
/rk3399_rockchip-uboot/include/configs/P2041RDB.h
/rk3399_rockchip-uboot/include/configs/P3G4.h
/rk3399_rockchip-uboot/include/configs/PCIPPC2.h
/rk3399_rockchip-uboot/include/configs/PCIPPC6.h
/rk3399_rockchip-uboot/include/configs/PIP405.h
/rk3399_rockchip-uboot/include/configs/PK1C20.h
/rk3399_rockchip-uboot/include/configs/PLU405.h
/rk3399_rockchip-uboot/include/configs/PM520.h
/rk3399_rockchip-uboot/include/configs/PM826.h
/rk3399_rockchip-uboot/include/configs/PM828.h
/rk3399_rockchip-uboot/include/configs/PMC405.h
/rk3399_rockchip-uboot/include/configs/PMC405DE.h
/rk3399_rockchip-uboot/include/configs/PMC440.h
/rk3399_rockchip-uboot/include/configs/PN62.h
/rk3399_rockchip-uboot/include/configs/PPChameleonEVB.h
/rk3399_rockchip-uboot/include/configs/SBC8540.h
/rk3399_rockchip-uboot/include/configs/SIMPC8313.h
/rk3399_rockchip-uboot/include/configs/Sandpoint8240.h
/rk3399_rockchip-uboot/include/configs/Sandpoint8245.h
/rk3399_rockchip-uboot/include/configs/TOP860.h
/rk3399_rockchip-uboot/include/configs/TQM5200.h
/rk3399_rockchip-uboot/include/configs/TQM834x.h
/rk3399_rockchip-uboot/include/configs/TQM85xx.h
/rk3399_rockchip-uboot/include/configs/TQM862L.h
/rk3399_rockchip-uboot/include/configs/TQM862M.h
/rk3399_rockchip-uboot/include/configs/Total5200.h
/rk3399_rockchip-uboot/include/configs/VCMA9.h
/rk3399_rockchip-uboot/include/configs/VOH405.h
/rk3399_rockchip-uboot/include/configs/VOM405.h
/rk3399_rockchip-uboot/include/configs/W7OLMC.h
/rk3399_rockchip-uboot/include/configs/W7OLMG.h
/rk3399_rockchip-uboot/include/configs/WUH405.h
/rk3399_rockchip-uboot/include/configs/Yukon8220.h
/rk3399_rockchip-uboot/include/configs/ZUMA.h
/rk3399_rockchip-uboot/include/configs/a320evb.h
/rk3399_rockchip-uboot/include/configs/a4m072.h
/rk3399_rockchip-uboot/include/configs/actux1.h
/rk3399_rockchip-uboot/include/configs/actux2.h
/rk3399_rockchip-uboot/include/configs/actux3.h
/rk3399_rockchip-uboot/include/configs/actux4.h
/rk3399_rockchip-uboot/include/configs/aev.h
/rk3399_rockchip-uboot/include/configs/afeb9260.h
/rk3399_rockchip-uboot/include/configs/alpr.h
/rk3399_rockchip-uboot/include/configs/amcc-common.h
/rk3399_rockchip-uboot/include/configs/ap325rxa.h
/rk3399_rockchip-uboot/include/configs/apollon.h
/rk3399_rockchip-uboot/include/configs/aria.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/atc.h
/rk3399_rockchip-uboot/include/configs/atngw100.h
/rk3399_rockchip-uboot/include/configs/atstk1002.h
/rk3399_rockchip-uboot/include/configs/atstk1006.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-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf533-ezkit.h
/rk3399_rockchip-uboot/include/configs/bf533-stamp.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/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/blackstamp.h
/rk3399_rockchip-uboot/include/configs/blackvme.h
/rk3399_rockchip-uboot/include/configs/ca9x4_ct_vxp.h
/rk3399_rockchip-uboot/include/configs/cerf250.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/cm4008.h
/rk3399_rockchip-uboot/include/configs/cm41xx.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/cobra5272.h
/rk3399_rockchip-uboot/include/configs/colibri_pxa270.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/cpci5200.h
/rk3399_rockchip-uboot/include/configs/cpu9260.h
/rk3399_rockchip-uboot/include/configs/cpuat91.h
/rk3399_rockchip-uboot/include/configs/cradle.h
/rk3399_rockchip-uboot/include/configs/csb226.h
/rk3399_rockchip-uboot/include/configs/csb272.h
/rk3399_rockchip-uboot/include/configs/csb472.h
/rk3399_rockchip-uboot/include/configs/da830evm.h
/rk3399_rockchip-uboot/include/configs/da850evm.h
/rk3399_rockchip-uboot/include/configs/davinci_dm355evm.h
/rk3399_rockchip-uboot/include/configs/davinci_dm355leopard.h
/rk3399_rockchip-uboot/include/configs/davinci_dm365evm.h
/rk3399_rockchip-uboot/include/configs/davinci_dm6467evm.h
/rk3399_rockchip-uboot/include/configs/davinci_dvevm.h
/rk3399_rockchip-uboot/include/configs/davinci_schmoogie.h
/rk3399_rockchip-uboot/include/configs/davinci_sffsdr.h
/rk3399_rockchip-uboot/include/configs/davinci_sonata.h
/rk3399_rockchip-uboot/include/configs/dbau1x00.h
/rk3399_rockchip-uboot/include/configs/debris.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/dig297.h
/rk3399_rockchip-uboot/include/configs/dnp5370.h
/rk3399_rockchip-uboot/include/configs/dvlhost.h
/rk3399_rockchip-uboot/include/configs/eNET.h
/rk3399_rockchip-uboot/include/configs/eXalion.h
/rk3399_rockchip-uboot/include/configs/ea20.h
/rk3399_rockchip-uboot/include/configs/eb_cpux9k2.h
/rk3399_rockchip-uboot/include/configs/edminiv2.h
/rk3399_rockchip-uboot/include/configs/ep8248.h
/rk3399_rockchip-uboot/include/configs/ep82xxm.h
/rk3399_rockchip-uboot/include/configs/espt.h
/rk3399_rockchip-uboot/include/configs/favr-32-ezkit.h
/rk3399_rockchip-uboot/include/configs/gplugd.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/gth2.h
/rk3399_rockchip-uboot/include/configs/hammerhead.h
/rk3399_rockchip-uboot/include/configs/hawkboard.h
/rk3399_rockchip-uboot/include/configs/ibf-dsp561.h
/rk3399_rockchip-uboot/include/configs/idmr.h
/rk3399_rockchip-uboot/include/configs/igep0020.h
/rk3399_rockchip-uboot/include/configs/imx27lite-common.h
/rk3399_rockchip-uboot/include/configs/imx31_litekit.h
/rk3399_rockchip-uboot/include/configs/imx31_phycore.h
/rk3399_rockchip-uboot/include/configs/incaip.h
/rk3399_rockchip-uboot/include/configs/innokom.h
/rk3399_rockchip-uboot/include/configs/integratorap.h
/rk3399_rockchip-uboot/include/configs/integratorcp.h
/rk3399_rockchip-uboot/include/configs/ip04.h
/rk3399_rockchip-uboot/include/configs/ipek01.h
/rk3399_rockchip-uboot/include/configs/jadecpu.h
/rk3399_rockchip-uboot/include/configs/jupiter.h
/rk3399_rockchip-uboot/include/configs/km/km82xx-common.h
/rk3399_rockchip-uboot/include/configs/km/km83xx-common.h
/rk3399_rockchip-uboot/include/configs/km/km_arm.h
/rk3399_rockchip-uboot/include/configs/korat.h
/rk3399_rockchip-uboot/include/configs/kvme080.h
/rk3399_rockchip-uboot/include/configs/linkstation.h
/rk3399_rockchip-uboot/include/configs/lubbock.h
/rk3399_rockchip-uboot/include/configs/lwmon5.h
/rk3399_rockchip-uboot/include/configs/mecp5123.h
/rk3399_rockchip-uboot/include/configs/mecp5200.h
/rk3399_rockchip-uboot/include/configs/meesc.h
/rk3399_rockchip-uboot/include/configs/microblaze-generic.h
/rk3399_rockchip-uboot/include/configs/mimc200.h
/rk3399_rockchip-uboot/include/configs/mpc5121ads.h
/rk3399_rockchip-uboot/include/configs/mpc7448hpc2.h
/rk3399_rockchip-uboot/include/configs/mpc8308_p1m.h
/rk3399_rockchip-uboot/include/configs/mpq101.h
/rk3399_rockchip-uboot/include/configs/ms7722se.h
/rk3399_rockchip-uboot/include/configs/mx1ads.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/mx53evk.h
/rk3399_rockchip-uboot/include/configs/mx53loco.h
/rk3399_rockchip-uboot/include/configs/mx53smd.h
/rk3399_rockchip-uboot/include/configs/nhk8815.h
/rk3399_rockchip-uboot/include/configs/nios2-generic.h
/rk3399_rockchip-uboot/include/configs/o2dnt.h
/rk3399_rockchip-uboot/include/configs/omap1510inn.h
/rk3399_rockchip-uboot/include/configs/omap1610h2.h
/rk3399_rockchip-uboot/include/configs/omap1610inn.h
/rk3399_rockchip-uboot/include/configs/omap2420h4.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap3_evm.h
/rk3399_rockchip-uboot/include/configs/omap3_overo.h
/rk3399_rockchip-uboot/include/configs/omap3_sdp3430.h
/rk3399_rockchip-uboot/include/configs/omap5912osk.h
/rk3399_rockchip-uboot/include/configs/omap730p2.h
/rk3399_rockchip-uboot/include/configs/otc570.h
/rk3399_rockchip-uboot/include/configs/p3mx.h
/rk3399_rockchip-uboot/include/configs/p3p440.h
/rk3399_rockchip-uboot/include/configs/pb1x00.h
/rk3399_rockchip-uboot/include/configs/pcs440ep.h
/rk3399_rockchip-uboot/include/configs/pdm360ng.h
/rk3399_rockchip-uboot/include/configs/pdnb3.h
/rk3399_rockchip-uboot/include/configs/pf5200.h
/rk3399_rockchip-uboot/include/configs/pleb2.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/ppmc7xx.h
/rk3399_rockchip-uboot/include/configs/pxa255_idp.h
/rk3399_rockchip-uboot/include/configs/qemu-mips.h
/rk3399_rockchip-uboot/include/configs/qong.h
/rk3399_rockchip-uboot/include/configs/quad100hd.h
/rk3399_rockchip-uboot/include/configs/r2dplus.h
/rk3399_rockchip-uboot/include/configs/r7780mp.h
/rk3399_rockchip-uboot/include/configs/rsk7203.h
/rk3399_rockchip-uboot/include/configs/rsk7264.h
/rk3399_rockchip-uboot/include/configs/sbc35_a9g20.h
/rk3399_rockchip-uboot/include/configs/sbc405.h
/rk3399_rockchip-uboot/include/configs/sbc8349.h
/rk3399_rockchip-uboot/include/configs/sbc8548.h
/rk3399_rockchip-uboot/include/configs/sbc8560.h
/rk3399_rockchip-uboot/include/configs/sbc8641d.h
/rk3399_rockchip-uboot/include/configs/sc3.h
/rk3399_rockchip-uboot/include/configs/scb9328.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/smdk2410.h
/rk3399_rockchip-uboot/include/configs/smdk6400.h
/rk3399_rockchip-uboot/include/configs/smdkc100.h
/rk3399_rockchip-uboot/include/configs/smdkv310.h
/rk3399_rockchip-uboot/include/configs/snapper9260.h
/rk3399_rockchip-uboot/include/configs/socrates.h
/rk3399_rockchip-uboot/include/configs/sorcery.h
/rk3399_rockchip-uboot/include/configs/spieval.h
/rk3399_rockchip-uboot/include/configs/stxgp3.h
/rk3399_rockchip-uboot/include/configs/stxssa.h
/rk3399_rockchip-uboot/include/configs/stxxtc.h
/rk3399_rockchip-uboot/include/configs/tb0229.h
/rk3399_rockchip-uboot/include/configs/tcm-bf518.h
/rk3399_rockchip-uboot/include/configs/tcm-bf537.h
/rk3399_rockchip-uboot/include/configs/top9000.h
/rk3399_rockchip-uboot/include/configs/trizepsiv.h
/rk3399_rockchip-uboot/include/configs/tx25.h
/rk3399_rockchip-uboot/include/configs/utx8245.h
/rk3399_rockchip-uboot/include/configs/vct.h
/rk3399_rockchip-uboot/include/configs/ve8313.h
/rk3399_rockchip-uboot/include/configs/versatile.h
/rk3399_rockchip-uboot/include/configs/vision2.h
/rk3399_rockchip-uboot/include/configs/vme8349.h
/rk3399_rockchip-uboot/include/configs/vpac270.h
/rk3399_rockchip-uboot/include/configs/xaeniax.h
/rk3399_rockchip-uboot/include/configs/xm250.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/zeus.h
/rk3399_rockchip-uboot/include/configs/zmx25.h
/rk3399_rockchip-uboot/include/net.h
/rk3399_rockchip-uboot/mkconfig
/rk3399_rockchip-uboot/net/eth.c
/rk3399_rockchip-uboot/net/net.c
/rk3399_rockchip-uboot/net/nfs.c
/rk3399_rockchip-uboot/net/tftp.c
476af29903-Oct-2011 Mike Frysinger <vapier@gentoo.org>

image: push default arch values to arch headers

This pushes the ugly duplicated arch ifdef lists we maintain in various
image related files out to the arch headers themselves.

Acked-by: Nobuhiro Iw

image: push default arch values to arch headers

This pushes the ugly duplicated arch ifdef lists we maintain in various
image related files out to the arch headers themselves.

Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Tested-by: Thomas Chou <thomas@wytron.com.tw>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>

show more ...

9558b48a01-Sep-2011 Graeme Russ <graeme.russ@gmail.com>

console: Implement pre-console buffer

Allow redirection of console output prior to console initialisation to a
temporary buffer.

To enable this functionality, the board (or arch) must define:
- CO

console: Implement pre-console buffer

Allow redirection of console output prior to console initialisation to a
temporary buffer.

To enable this functionality, the board (or arch) must define:
- CONFIG_PRE_CONSOLE_BUFFER - Enable pre-console buffer
- CONFIG_PRE_CON_BUF_ADDR - Base address of pre-console buffer
- CONFIG_PRE_CON_BUF_SZ - Size of pre-console buffer (in bytes)

The pre-console buffer will buffer the last CONFIG_PRE_CON_BUF_SZ bytes
Any earlier characters are silently dropped.

show more ...

4f7549d204-Oct-2011 Wolfgang Denk <wd@denx.de>

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

* 'master' of git://git.denx.de/u-boot-nand-flash:
PPC: Fix socrates NAND problem
PPC: Fix fsl_upm.c by renaming nand handling functi

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

* 'master' of git://git.denx.de/u-boot-nand-flash:
PPC: Fix socrates NAND problem
PPC: Fix fsl_upm.c by renaming nand handling functions
NAND: Make page, erase, oob size available via cmd_nand
mtd: eLBC NAND: remove elbc_fcm_ctrl->oob_poi
NAND: Add -y option to nand scrub command
NAND: Add nand read.raw and write.raw commands
NAND: Really ignore bad blocks when scrubbing
spl, nand: add 4bit HW ecc oob first nand_read_page function
mxc_nand: fix a problem writing more than 32MB
mxc_nand: fixed some typos (cosmetic)
nand: increase chip_delay in mv kirkwood nand driver

show more ...

1...<<131132133134135136137138139140>>...211