History log of /rk3399_rockchip-uboot/common/ (Results 3026 – 3050 of 5256)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
b6a3044430-Oct-2012 Stephen Warren <swarren@nvidia.com>

cmd_ext4: remove TABs from command help text

TABs in the help text won't line up in the same place on the console as
in a source editor. Replace them with spaces to make ensuring correct
alignment e

cmd_ext4: remove TABs from command help text

TABs in the help text won't line up in the same place on the console as
in a source editor. Replace them with spaces to make ensuring correct
alignment easier.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>

show more ...

b6458d3829-Oct-2012 Simon Glass <sjg@chromium.org>

ide: Correct function signatures for ide_read/write()

The prototypes in the header were changed by commit 4ac8f8e0 but the
functions no longer match. Correct this.

It seems odd that block devices t

ide: Correct function signatures for ide_read/write()

The prototypes in the header were changed by commit 4ac8f8e0 but the
functions no longer match. Correct this.

It seems odd that block devices take an lbaint_t for the block count, but
an unsigned long for the blknr. Surely we should promote blknr to lbaint_t
also?

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@ti.com>

show more ...

b4c5bbce29-Oct-2012 Gabe Black <gabeblack@chromium.org>

ahci: Support 64-bit LBA option when reading capacity

Capacity needs to allow for a 64-bit value.

Signed-off-by: Gabe Black <gabeblack@google.com>
Signed-off-by: Simon Glass <sjg@chromium.org>

447c031b29-Oct-2012 Stefan Reinauer <reinauer@chromium.org>

scsi: Add function and env var to report number of scsi drives

Add a new function to find out the number of available SCSI disks. Also
set the 'scsidevs' environment variable after each scan.

Signe

scsi: Add function and env var to report number of scsi drives

Add a new function to find out the number of available SCSI disks. Also
set the 'scsidevs' environment variable after each scan.

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

show more ...

758c9e6929-Oct-2012 Hung-Te Lin <hungte@chromium.org>

scsi: Add scsi_write to SCSI driver

Implement write functionality in the scsi layer. A ''scsi write'
command is also added to console for testing.

Signed-off-by: Hung-Te Lin <hungte@chromium.org>
S

scsi: Add scsi_write to SCSI driver

Implement write functionality in the scsi layer. A ''scsi write'
command is also added to console for testing.

Signed-off-by: Hung-Te Lin <hungte@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

4ae5eb7c29-Oct-2012 Vadim Bendebury <vbendeb@chromium.org>

scsi: Provide support for a list of AHCI controllers.

Many AHCI controllers are identical, the main (and often the
only) difference being the PCI Vendor ID/Device ID combination
reported by the devi

scsi: Provide support for a list of AHCI controllers.

Many AHCI controllers are identical, the main (and often the
only) difference being the PCI Vendor ID/Device ID combination
reported by the device.

This change allows the config file to define a list of PCI vendor
ID/device ID pairs. The driver would scan the list and initialize
the first device it finds.

No actual multiple device list is introduced yet, this change
just add the framework.

Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Signed-off-by: Taylor Hutt <thutt@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

af8d1d3f26-Oct-2012 Stefan Roese <sr@denx.de>

ZFS: Fix compile warning in cmd_zfs.c (GCC 4.6.4 from ELDK 5.2.1)

This patch fixes the following compile warnings:

cmd_zfs.c:177:1: warning: initialization from incompatible pointer type [enabled b

ZFS: Fix compile warning in cmd_zfs.c (GCC 4.6.4 from ELDK 5.2.1)

This patch fixes the following compile warnings:

cmd_zfs.c:177:1: warning: initialization from incompatible pointer type [enabled by default]
cmd_zfs.c:177:1: warning: (near initialization for '_u_boot_list_cmd_zfsls.cmd') [enabled by default]
cmd_zfs.c:182:1: warning: initialization from incompatible pointer type [enabled by default]
cmd_zfs.c:182:1: warning: (near initialization for '_u_boot_list_cmd_zfsload.cmd') [enabled by default]

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Jorgen Lundman <lundman@lundman.net>

show more ...

085b9c3a29-Oct-2012 Tom Rini <trini@ti.com>

cmd_fdt.c: Use %p when printing pointers

When putting pointers into a format string use %p to ensure that they
are printed correctly regardless of bitsize. This fixes warnings on
sandbox on 64bit s

cmd_fdt.c: Use %p when printing pointers

When putting pointers into a format string use %p to ensure that they
are printed correctly regardless of bitsize. This fixes warnings on
sandbox on 64bit systems.

Cc: Joe Hershberger <joe.hershberger@ni.com>
Cc: Gerald Van Baren <vanbaren@cideas.com>
Signed-off-by: Tom Rini <trini@ti.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>

show more ...

b9dc494123-Oct-2012 Simon Glass <sjg@chromium.org>

ext4: Fix printf() format string error

Fix the following error in the ext4 command:

cmd_ext4.c:110:3: error: format '%lu' expects argument of type
'long unsigned int', but argument 4 has type 'int'

ext4: Fix printf() format string error

Fix the following error in the ext4 command:

cmd_ext4.c:110:3: error: format '%lu' expects argument of type
'long unsigned int', but argument 4 has type 'int' [-Werror=format]

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

show more ...

045fa1e122-Oct-2012 Stephen Warren <swarren@nvidia.com>

fs: add filesystem switch libary, implement ls and fsload commands

Implement "ls" and "fsload" commands that act like {fat,ext2}{ls,load},
and transparently handle either file-system. This scheme co

fs: add filesystem switch libary, implement ls and fsload commands

Implement "ls" and "fsload" commands that act like {fat,ext2}{ls,load},
and transparently handle either file-system. This scheme could easily be
extended to other filesystem types; I only didn't do it for zfs because
I don't have any filesystems of that type to test with.

Replace the implementation of {fat,ext[24]}{ls,load} with this new code
too.

Signed-off-by: Stephen Warren <swarren@nvidia.com>

show more ...


/rk3399_rockchip-uboot/CREDITS
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/interrupts.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/ks8695/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/emif4.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/mux.c
/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/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/mux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/spl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-arm720t/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/dss.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/fec.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xx/scc.c
/rk3399_rockchip-uboot/board/atmel/at91sam9x5ek/at91sam9x5ek.c
/rk3399_rockchip-uboot/board/esteem192e/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m54418twr/u-boot.lds
/rk3399_rockchip-uboot/board/htkw/mcx/mcx.c
/rk3399_rockchip-uboot/board/htkw/mcx/mcx.h
/rk3399_rockchip-uboot/board/samsung/origen/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/origen/origen_setup.h
/rk3399_rockchip-uboot/board/teejet/mt_ventoux/mt_ventoux.c
/rk3399_rockchip-uboot/board/ti/am335x/Makefile
/rk3399_rockchip-uboot/board/ti/am335x/board.c
/rk3399_rockchip-uboot/board/ti/am335x/board.h
/rk3399_rockchip-uboot/board/ti/am335x/mux.c
/rk3399_rockchip-uboot/board/tqc/tqm8xx/u-boot.lds
/rk3399_rockchip-uboot/boards.cfg
Makefile
cmd_ext2.c
cmd_ext4.c
cmd_fat.c
cmd_fs.c
/rk3399_rockchip-uboot/doc/README.ext4
/rk3399_rockchip-uboot/doc/README.scrapyard
/rk3399_rockchip-uboot/doc/driver-model/UDM-serial.txt
/rk3399_rockchip-uboot/drivers/i2c/soft_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/gen_atmel_mci.c
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/spi/omap3_spi.c
/rk3399_rockchip-uboot/drivers/usb/musb/musb_udc.c
/rk3399_rockchip-uboot/fs/Makefile
/rk3399_rockchip-uboot/fs/ext4/Makefile
/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/fat/Makefile
/rk3399_rockchip-uboot/fs/fs.c
/rk3399_rockchip-uboot/include/atmel_mci.h
/rk3399_rockchip-uboot/include/commproc.h
/rk3399_rockchip-uboot/include/config_fallbacks.h
/rk3399_rockchip-uboot/include/configs/M54418TWR.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am3517_crane.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/at91sam9x5ek.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/igep00x0.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/mx28evk.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/mx6qarm2.h
/rk3399_rockchip-uboot/include/configs/mx6qsabrelite.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap3_evm.h
/rk3399_rockchip-uboot/include/configs/omap3_logic.h
/rk3399_rockchip-uboot/include/configs/omap3_overo.h
/rk3399_rockchip-uboot/include/configs/omap3_zoom1.h
/rk3399_rockchip-uboot/include/configs/omap4_common.h
/rk3399_rockchip-uboot/include/configs/omap5_evm.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/include/ext4fs.h
/rk3399_rockchip-uboot/include/ext_common.h
/rk3399_rockchip-uboot/include/flash.h
/rk3399_rockchip-uboot/include/fs.h
/rk3399_rockchip-uboot/include/pcmcia.h
/rk3399_rockchip-uboot/include/status_led.h
/rk3399_rockchip-uboot/post/cpu/mpc8xx/ether.c
/rk3399_rockchip-uboot/spl/Makefile
/rk3399_rockchip-uboot/tools/omapimage.c
0f89980225-Oct-2012 Allen Martin <amartin@nvidia.com>

serial: remove calls to serial_assign()

Remove calls to serial_assign() that are failing now that it returns a
proper error code. This calls were not actually doing anything
because they passed the

serial: remove calls to serial_assign()

Remove calls to serial_assign() that are failing now that it returns a
proper error code. This calls were not actually doing anything
because they passed the name of a stdio_dev when a serial_device name
is exptectd.

Signed-off-by: Allen Martin <amartin@nvidia.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Marek Vasut <marex@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Tested-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>

show more ...

a759f1e019-Oct-2012 Allen Martin <amartin@nvidia.com>

SPL: make jump_to_image_no_args a weak symbol

Change jump_to_image_no_args() to a weak symbol to allow override by
SoC specific code. This is required by tegra because the SPL runs on
a different C

SPL: make jump_to_image_no_args a weak symbol

Change jump_to_image_no_args() to a weak symbol to allow override by
SoC specific code. This is required by tegra because the SPL runs on
a different CPU from the image it is loading, so tegra specific
initialization is required to start the host CPU. Pass in spl_image
as a parameter for the same reason.

Signed-off-by: Allen Martin <amartin@nvidia.com>
Acked-by: Tom Rini <trini@ti.com>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>

show more ...


/rk3399_rockchip-uboot/CREDITS
/rk3399_rockchip-uboot/MAINTAINERS
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm1136/mx35/generic.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/interrupts.c
/rk3399_rockchip-uboot/arch/arm/cpu/arm720t/start.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/ks8695/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/board.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/config.mk
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/emif4.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/am33xx/mux.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx5/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/mx5/lowlevel_init.S
/rk3399_rockchip-uboot/arch/arm/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/imx-common/iomux-v3.c
/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/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/mux.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/spl.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-am33xx/sys_proto.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-arm720t/hardware.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx25/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx35/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx35/lowlevel_macro.S
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx5/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/imx-regs.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/mx6x_pins.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx6/mxc_hdmi.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-omap3/dss.h
/rk3399_rockchip-uboot/arch/arm/include/asm/imx-common/iomux-v3.h
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5227x/cpu_init.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/cpu.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/cpu_init.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/speed.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/start.S
/rk3399_rockchip-uboot/arch/m68k/include/asm/cache.h
/rk3399_rockchip-uboot/arch/m68k/include/asm/immap.h
/rk3399_rockchip-uboot/arch/m68k/include/asm/immap_5441x.h
/rk3399_rockchip-uboot/arch/m68k/include/asm/m5441x.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_83xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_qe.h
/rk3399_rockchip-uboot/board/CarMediaLab/flea3/lowlevel_init.S
/rk3399_rockchip-uboot/board/atmel/at91sam9x5ek/at91sam9x5ek.c
/rk3399_rockchip-uboot/board/avionic-design/medcom-wide/Makefile
/rk3399_rockchip-uboot/board/avionic-design/plutux/Makefile
/rk3399_rockchip-uboot/board/avionic-design/tec/Makefile
/rk3399_rockchip-uboot/board/compal/paz00/Makefile
/rk3399_rockchip-uboot/board/compulab/trimslice/Makefile
/rk3399_rockchip-uboot/board/esg/ima3-mx53/ima3-mx53.c
/rk3399_rockchip-uboot/board/freescale/m54418twr/Makefile
/rk3399_rockchip-uboot/board/freescale/m54418twr/config.mk
/rk3399_rockchip-uboot/board/freescale/m54418twr/m54418twr.c
/rk3399_rockchip-uboot/board/freescale/m54418twr/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/mx35pdk/lowlevel_init.S
/rk3399_rockchip-uboot/board/freescale/mx35pdk/mx35pdk.c
/rk3399_rockchip-uboot/board/freescale/mx35pdk/mx35pdk.h
/rk3399_rockchip-uboot/board/freescale/mx51evk/mx51evk.c
/rk3399_rockchip-uboot/board/freescale/mx53ard/mx53ard.c
/rk3399_rockchip-uboot/board/freescale/mx53evk/mx53evk.c
/rk3399_rockchip-uboot/board/freescale/mx53loco/mx53loco.c
/rk3399_rockchip-uboot/board/freescale/mx53smd/mx53smd.c
/rk3399_rockchip-uboot/board/freescale/mx6qarm2/mx6qarm2.c
/rk3399_rockchip-uboot/board/freescale/mx6qsabreauto/mx6qsabreauto.c
/rk3399_rockchip-uboot/board/freescale/mx6qsabrelite/mx6qsabrelite.c
/rk3399_rockchip-uboot/board/freescale/mx6qsabresd/mx6qsabresd.c
/rk3399_rockchip-uboot/board/genesi/mx51_efikamx/efikamx.c
/rk3399_rockchip-uboot/board/htkw/mcx/mcx.c
/rk3399_rockchip-uboot/board/htkw/mcx/mcx.h
/rk3399_rockchip-uboot/board/keymile/km83xx/km83xx.c
/rk3399_rockchip-uboot/board/nvidia/common/Makefile
/rk3399_rockchip-uboot/board/nvidia/common/common.mk
/rk3399_rockchip-uboot/board/nvidia/dts/tegra20-harmony.dts
/rk3399_rockchip-uboot/board/nvidia/dts/tegra20-whistler.dts
/rk3399_rockchip-uboot/board/nvidia/harmony/harmony.c
/rk3399_rockchip-uboot/board/nvidia/seaboard/seaboard.c
/rk3399_rockchip-uboot/board/samsung/origen/lowlevel_init.S
/rk3399_rockchip-uboot/board/samsung/origen/origen_setup.h
/rk3399_rockchip-uboot/board/teejet/mt_ventoux/mt_ventoux.c
/rk3399_rockchip-uboot/board/ti/am335x/Makefile
/rk3399_rockchip-uboot/board/ti/am335x/board.c
/rk3399_rockchip-uboot/board/ti/am335x/board.h
/rk3399_rockchip-uboot/board/ti/am335x/mux.c
/rk3399_rockchip-uboot/board/toradex/colibri_t20-common/colibri_t20-common.c
/rk3399_rockchip-uboot/board/toradex/colibri_t20-common/colibri_t20-common.h
/rk3399_rockchip-uboot/board/toradex/colibri_t20_iris/Makefile
/rk3399_rockchip-uboot/board/toradex/colibri_t20_iris/colibri_t20_iris.c
/rk3399_rockchip-uboot/board/toradex/dts/tegra20-colibri_t20_iris.dts
/rk3399_rockchip-uboot/board/ttcontrol/vision2/vision2.c
/rk3399_rockchip-uboot/boards.cfg
spl/spl.c
/rk3399_rockchip-uboot/doc/README.m54418twr
/rk3399_rockchip-uboot/doc/README.scrapyard
/rk3399_rockchip-uboot/doc/driver-model/UDM-serial.txt
/rk3399_rockchip-uboot/drivers/i2c/soft_i2c.c
/rk3399_rockchip-uboot/drivers/mmc/fsl_esdhc.c
/rk3399_rockchip-uboot/drivers/mmc/gen_atmel_mci.c
/rk3399_rockchip-uboot/drivers/mtd/nand/tegra_nand.c
/rk3399_rockchip-uboot/drivers/net/Makefile
/rk3399_rockchip-uboot/drivers/qe/qe.c
/rk3399_rockchip-uboot/drivers/serial/Makefile
/rk3399_rockchip-uboot/drivers/serial/serial.c
/rk3399_rockchip-uboot/drivers/spi/omap3_spi.c
/rk3399_rockchip-uboot/drivers/usb/musb/musb_udc.c
/rk3399_rockchip-uboot/drivers/video/mxc_ipuv3_fb.c
/rk3399_rockchip-uboot/include/atmel_mci.h
/rk3399_rockchip-uboot/include/configs/M54418TWR.h
/rk3399_rockchip-uboot/include/configs/MPC8308RDB.h
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am3517_crane.h
/rk3399_rockchip-uboot/include/configs/am3517_evm.h
/rk3399_rockchip-uboot/include/configs/at91sam9x5ek.h
/rk3399_rockchip-uboot/include/configs/cm_t35.h
/rk3399_rockchip-uboot/include/configs/colibri_t20_iris.h
/rk3399_rockchip-uboot/include/configs/devkit8000.h
/rk3399_rockchip-uboot/include/configs/harmony.h
/rk3399_rockchip-uboot/include/configs/igep00x0.h
/rk3399_rockchip-uboot/include/configs/km/km8309-common.h
/rk3399_rockchip-uboot/include/configs/km/km8321-common.h
/rk3399_rockchip-uboot/include/configs/km/km83xx-common.h
/rk3399_rockchip-uboot/include/configs/mcx.h
/rk3399_rockchip-uboot/include/configs/mpc8308_p1m.h
/rk3399_rockchip-uboot/include/configs/mx25pdk.h
/rk3399_rockchip-uboot/include/configs/mx28evk.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/mx6qarm2.h
/rk3399_rockchip-uboot/include/configs/mx6qsabre_common.h
/rk3399_rockchip-uboot/include/configs/mx6qsabreauto.h
/rk3399_rockchip-uboot/include/configs/mx6qsabrelite.h
/rk3399_rockchip-uboot/include/configs/mx6qsabresd.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/omap3_evm.h
/rk3399_rockchip-uboot/include/configs/omap3_logic.h
/rk3399_rockchip-uboot/include/configs/omap3_overo.h
/rk3399_rockchip-uboot/include/configs/omap3_zoom1.h
/rk3399_rockchip-uboot/include/configs/omap4_common.h
/rk3399_rockchip-uboot/include/configs/omap5_evm.h
/rk3399_rockchip-uboot/include/configs/seaboard.h
/rk3399_rockchip-uboot/include/configs/suvd3.h
/rk3399_rockchip-uboot/include/configs/tegra-common-post.h
/rk3399_rockchip-uboot/include/configs/tegra20-common.h
/rk3399_rockchip-uboot/include/configs/tricorder.h
/rk3399_rockchip-uboot/include/flash.h
/rk3399_rockchip-uboot/include/fsl_esdhc.h
/rk3399_rockchip-uboot/include/ipu_pixfmt.h
/rk3399_rockchip-uboot/include/mpc83xx.h
/rk3399_rockchip-uboot/spl/Makefile
/rk3399_rockchip-uboot/tools/imximage.c
/rk3399_rockchip-uboot/tools/imximage.h
/rk3399_rockchip-uboot/tools/omapimage.c
8440f18a25-Oct-2012 Allen Martin <amartin@nvidia.com>

serial: remove calls to serial_assign()

Remove calls to serial_assign() that are failing now that it returns a
proper error code. This calls were not actually doing anything
because they passed the

serial: remove calls to serial_assign()

Remove calls to serial_assign() that are failing now that it returns a
proper error code. This calls were not actually doing anything
because they passed the name of a stdio_dev when a serial_device name
is exptectd.

Signed-off-by: Allen Martin <amartin@nvidia.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Acked-by: Marek Vasut <marex@denx.de>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Tested-by: Stephen Warren <swarren@nvidia.com>

show more ...

5e8f983117-Oct-2012 Stephen Warren <swarren@nvidia.com>

FAT: implement fat_set_blk_dev(), convert cmd_fat.c

This makes the FAT filesystem API more consistent with other block-based
filesystems. If in the future standard multi-filesystem commands such as

FAT: implement fat_set_blk_dev(), convert cmd_fat.c

This makes the FAT filesystem API more consistent with other block-based
filesystems. If in the future standard multi-filesystem commands such as
"ls" or "load" are implemented, having FAT work the same way as other
filesystems will be necessary.

Convert cmd_fat.c to the new API, so the code looks more like other files
implementing the same commands for other filesystems.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>

show more ...


/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5227x/cpu_init.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/config.mk
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/cpu.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/cpu_init.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/speed.c
/rk3399_rockchip-uboot/arch/m68k/cpu/mcf5445x/start.S
/rk3399_rockchip-uboot/arch/m68k/include/asm/cache.h
/rk3399_rockchip-uboot/arch/m68k/include/asm/immap.h
/rk3399_rockchip-uboot/arch/m68k/include/asm/immap_5441x.h
/rk3399_rockchip-uboot/arch/m68k/include/asm/m5441x.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/global_data.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_83xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_qe.h
/rk3399_rockchip-uboot/board/freescale/m54418twr/Makefile
/rk3399_rockchip-uboot/board/freescale/m54418twr/config.mk
/rk3399_rockchip-uboot/board/freescale/m54418twr/m54418twr.c
/rk3399_rockchip-uboot/board/freescale/m54418twr/u-boot.lds
/rk3399_rockchip-uboot/board/keymile/km83xx/km83xx.c
/rk3399_rockchip-uboot/boards.cfg
cmd_fat.c
/rk3399_rockchip-uboot/doc/README.m54418twr
/rk3399_rockchip-uboot/drivers/i2c/fsl_i2c.c
/rk3399_rockchip-uboot/drivers/qe/qe.c
/rk3399_rockchip-uboot/drivers/serial/serial_ns16550.c
/rk3399_rockchip-uboot/fs/fat/fat.c
/rk3399_rockchip-uboot/include/configs/M54418TWR.h
/rk3399_rockchip-uboot/include/configs/MPC8308RDB.h
/rk3399_rockchip-uboot/include/configs/km/km8309-common.h
/rk3399_rockchip-uboot/include/configs/km/km8321-common.h
/rk3399_rockchip-uboot/include/configs/km/km83xx-common.h
/rk3399_rockchip-uboot/include/configs/mpc8308_p1m.h
/rk3399_rockchip-uboot/include/configs/suvd3.h
/rk3399_rockchip-uboot/include/fat.h
/rk3399_rockchip-uboot/include/mpc83xx.h
7172483023-Oct-2012 Tom Rini <trini@ti.com>

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


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/Makefile
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/b4860_ids.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.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/cpu_init.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/ddr-gen3.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fdt.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet2_serdes.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/liodn.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/mp.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/mp.h
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p5040_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/p5040_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/portals.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/release.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/speed.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/start.S
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t4240_ids.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/t4240_serdes.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/tlb.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/fdt.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/mp.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/cpu.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/interactive.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/lc_common_dimm_params.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/main.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/options.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/ddr/util.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/fdt.c
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/srio.c
/rk3399_rockchip-uboot/arch/powerpc/include/asm/config_mpc85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_ddr_sdram.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_fman.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_liodn.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_memac.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_portals.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/fsl_serdes.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/immap_85xx.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/mp.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/mpc85xx_gpio.h
/rk3399_rockchip-uboot/arch/powerpc/include/asm/processor.h
/rk3399_rockchip-uboot/arch/powerpc/lib/board.c
/rk3399_rockchip-uboot/board/freescale/common/Makefile
/rk3399_rockchip-uboot/board/freescale/common/qixis.c
/rk3399_rockchip-uboot/board/freescale/common/qixis.h
/rk3399_rockchip-uboot/board/freescale/common/vsc3316_3308.c
/rk3399_rockchip-uboot/board/freescale/common/vsc3316_3308.h
/rk3399_rockchip-uboot/board/freescale/t4qds/Makefile
/rk3399_rockchip-uboot/board/freescale/t4qds/ddr.c
/rk3399_rockchip-uboot/board/freescale/t4qds/eth.c
/rk3399_rockchip-uboot/board/freescale/t4qds/law.c
/rk3399_rockchip-uboot/board/freescale/t4qds/pci.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4240qds_qixis.h
/rk3399_rockchip-uboot/board/freescale/t4qds/t4qds.c
/rk3399_rockchip-uboot/board/freescale/t4qds/t4qds.h
/rk3399_rockchip-uboot/board/freescale/t4qds/tlb.c
/rk3399_rockchip-uboot/boards.cfg
cmd_fdt.c
image.c
/rk3399_rockchip-uboot/doc/README.VSC3316-3308
/rk3399_rockchip-uboot/doc/README.fsl-ddr
/rk3399_rockchip-uboot/doc/README.mpc85xx-spin-table
/rk3399_rockchip-uboot/doc/README.t4240qds
/rk3399_rockchip-uboot/drivers/net/fm/Makefile
/rk3399_rockchip-uboot/drivers/net/fm/eth.c
/rk3399_rockchip-uboot/drivers/net/fm/init.c
/rk3399_rockchip-uboot/drivers/net/fm/memac.c
/rk3399_rockchip-uboot/drivers/net/fm/memac_phy.c
/rk3399_rockchip-uboot/drivers/net/fm/t4240.c
/rk3399_rockchip-uboot/drivers/pci/fsl_pci_init.c
/rk3399_rockchip-uboot/drivers/spi/fsl_espi.c
/rk3399_rockchip-uboot/include/config_phylib_all_drivers.h
/rk3399_rockchip-uboot/include/configs/P3041DS.h
/rk3399_rockchip-uboot/include/configs/P4080DS.h
/rk3399_rockchip-uboot/include/configs/P5020DS.h
/rk3399_rockchip-uboot/include/configs/T4240QDS.h
/rk3399_rockchip-uboot/include/configs/corenet_ds.h
/rk3399_rockchip-uboot/include/configs/t4qds.h
/rk3399_rockchip-uboot/include/e500.h
/rk3399_rockchip-uboot/include/fm_eth.h
/rk3399_rockchip-uboot/include/fsl_mdio.h
/rk3399_rockchip-uboot/include/image.h
/rk3399_rockchip-uboot/include/libfdt.h
/rk3399_rockchip-uboot/lib/libfdt/Makefile
/rk3399_rockchip-uboot/lib/libfdt/fdt_empty_tree.c
/rk3399_rockchip-uboot/lib/libfdt/fdt_rw.c
cae4a8a223-Oct-2012 Gerald Van Baren <gvb@unssw.com>

Merge branch 'next'

bdc3ff6e22-Oct-2012 Tom Rini <trini@ti.com>

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

84cd932712-Oct-2012 Gabe Black <gabeblack@chromium.org>

fs: Add a Coreboot Filesystem (CBFS) driver and commands

This change adds CBFS support and some commands to use it to u-boot. These
commands are:

cbfsinit - Initialize CBFS support and pull all met

fs: Add a Coreboot Filesystem (CBFS) driver and commands

This change adds CBFS support and some commands to use it to u-boot. These
commands are:

cbfsinit - Initialize CBFS support and pull all metadata into RAM. The end of
the ROM is an optional parameter which defaults to the standard 0xffffffff and
can be used to support multiple CBFSes in a system. The last one set up with
cbfsinit is the one that will be used.

cbfsinfo - Print information from the CBFS header.

cbfsls - Print out the size, type, and name of all the files in the current
CBFS. Recognized types are translated into symbolic names.

cbfsload - Load a file from CBFS into memory. Like the similar command for fat
filesystems, you can optionally provide a maximum size.

Support for CBFS is compiled in when the CONFIG_CMD_CBFS option is specified.

The CBFS driver can also be used programmatically from within u-boot.

If u-boot needs something out of CBFS very early before the heap is
configured, it won't be able to use the normal CBFS support which caches some
information in memory it allocates from the heap. The
cbfs_file_find_uncached function searches a CBFS instance without touching
the heap.

Signed-off-by: Gabe Black <gabeblack@google.com>
Signed-off-by: Stefan Reinauer <reinauer@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/ep93xx/u-boot.lds
/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/ixp/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/avr32/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/blackfin/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/microblaze/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/nds32/cpu/n1213/u-boot.lds
/rk3399_rockchip-uboot/arch/nios2/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/74xx_7xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc512x/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/u-boot-customlayout.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8220/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc824x/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/u-boot-nand.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/u-boot.lds
/rk3399_rockchip-uboot/arch/sandbox/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/sh/cpu/sh2/u-boot.lds
/rk3399_rockchip-uboot/arch/sh/cpu/sh3/u-boot.lds
/rk3399_rockchip-uboot/arch/sh/cpu/sh4/u-boot.lds
/rk3399_rockchip-uboot/arch/x86/cpu/u-boot.lds
/rk3399_rockchip-uboot/board/BuS/eb_cpu5282/u-boot.lds
/rk3399_rockchip-uboot/board/LEOX/elpt860/u-boot.lds
/rk3399_rockchip-uboot/board/RPXClassic/u-boot.lds
/rk3399_rockchip-uboot/board/RPXClassic/u-boot.lds.debug
/rk3399_rockchip-uboot/board/RPXlite/u-boot.lds
/rk3399_rockchip-uboot/board/RPXlite/u-boot.lds.debug
/rk3399_rockchip-uboot/board/RPXlite_dw/u-boot.lds
/rk3399_rockchip-uboot/board/RPXlite_dw/u-boot.lds.debug
/rk3399_rockchip-uboot/board/RRvision/u-boot.lds
/rk3399_rockchip-uboot/board/actux1/u-boot.lds
/rk3399_rockchip-uboot/board/actux2/u-boot.lds
/rk3399_rockchip-uboot/board/actux3/u-boot.lds
/rk3399_rockchip-uboot/board/adder/u-boot.lds
/rk3399_rockchip-uboot/board/altera/nios2-generic/u-boot.lds
/rk3399_rockchip-uboot/board/amcc/acadia/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/bamboo/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/canyonlands/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/kilauea/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/sequoia/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/sequoia/u-boot-ram.lds
/rk3399_rockchip-uboot/board/astro/mcf5373l/u-boot.lds
/rk3399_rockchip-uboot/board/c2mon/u-boot.lds
/rk3399_rockchip-uboot/board/c2mon/u-boot.lds.debug
/rk3399_rockchip-uboot/board/cobra5272/u-boot.lds
/rk3399_rockchip-uboot/board/cogent/u-boot.lds
/rk3399_rockchip-uboot/board/cogent/u-boot.lds.debug
/rk3399_rockchip-uboot/board/cray/L1/u-boot.lds.debug
/rk3399_rockchip-uboot/board/dave/PPChameleonEVB/u-boot.lds
/rk3399_rockchip-uboot/board/dbau1x00/u-boot.lds
/rk3399_rockchip-uboot/board/dvlhost/u-boot.lds
/rk3399_rockchip-uboot/board/eltec/mhpc/u-boot.lds
/rk3399_rockchip-uboot/board/eltec/mhpc/u-boot.lds.debug
/rk3399_rockchip-uboot/board/emk/top860/u-boot.lds
/rk3399_rockchip-uboot/board/ep88x/u-boot.lds
/rk3399_rockchip-uboot/board/esd/dasa_sim/u-boot.lds
/rk3399_rockchip-uboot/board/esd/pmc440/u-boot-nand.lds
/rk3399_rockchip-uboot/board/esd/tasreg/u-boot.lds
/rk3399_rockchip-uboot/board/esteem192e/u-boot.lds
/rk3399_rockchip-uboot/board/etx094/u-boot.lds
/rk3399_rockchip-uboot/board/evb64260/u-boot.lds
/rk3399_rockchip-uboot/board/fads/u-boot.lds
/rk3399_rockchip-uboot/board/flagadm/u-boot.lds
/rk3399_rockchip-uboot/board/flagadm/u-boot.lds.debug
/rk3399_rockchip-uboot/board/freescale/m5208evbe/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m52277evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5235evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5249evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5253demo/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5253evbe/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5271evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5272c3/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5275evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5282evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m53017evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5329evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5373evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m54451evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m54455evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m547xevb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m548xevb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/mx31ads/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/gr_cpci_ax2000/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/gr_ep2s60/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/gr_xc3s_1500/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/grsim/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/grsim_leon2/u-boot.lds
/rk3399_rockchip-uboot/board/gen860t/u-boot-flashenv.lds
/rk3399_rockchip-uboot/board/gen860t/u-boot.lds
/rk3399_rockchip-uboot/board/genietv/u-boot.lds
/rk3399_rockchip-uboot/board/genietv/u-boot.lds.debug
/rk3399_rockchip-uboot/board/hermes/u-boot.lds
/rk3399_rockchip-uboot/board/hermes/u-boot.lds.debug
/rk3399_rockchip-uboot/board/hymod/u-boot.lds
/rk3399_rockchip-uboot/board/hymod/u-boot.lds.debug
/rk3399_rockchip-uboot/board/icu862/u-boot.lds
/rk3399_rockchip-uboot/board/icu862/u-boot.lds.debug
/rk3399_rockchip-uboot/board/idmr/u-boot.lds
/rk3399_rockchip-uboot/board/incaip/u-boot.lds
/rk3399_rockchip-uboot/board/ip860/u-boot.lds
/rk3399_rockchip-uboot/board/ip860/u-boot.lds.debug
/rk3399_rockchip-uboot/board/ivm/u-boot.lds
/rk3399_rockchip-uboot/board/ivm/u-boot.lds.debug
/rk3399_rockchip-uboot/board/korat/u-boot-F7FC.lds
/rk3399_rockchip-uboot/board/kup/kup4k/u-boot.lds
/rk3399_rockchip-uboot/board/kup/kup4k/u-boot.lds.debug
/rk3399_rockchip-uboot/board/kup/kup4x/u-boot.lds
/rk3399_rockchip-uboot/board/kup/kup4x/u-boot.lds.debug
/rk3399_rockchip-uboot/board/lantec/u-boot.lds
/rk3399_rockchip-uboot/board/lantec/u-boot.lds.debug
/rk3399_rockchip-uboot/board/lwmon/u-boot.lds
/rk3399_rockchip-uboot/board/lwmon/u-boot.lds.debug
/rk3399_rockchip-uboot/board/manroland/uc100/u-boot.lds
/rk3399_rockchip-uboot/board/matrix_vision/mvsmr/u-boot.lds
/rk3399_rockchip-uboot/board/mbx8xx/u-boot.lds
/rk3399_rockchip-uboot/board/mbx8xx/u-boot.lds.debug
/rk3399_rockchip-uboot/board/micronas/vct/u-boot.lds
/rk3399_rockchip-uboot/board/mousse/u-boot.lds
/rk3399_rockchip-uboot/board/mousse/u-boot.lds.ram
/rk3399_rockchip-uboot/board/mousse/u-boot.lds.rom
/rk3399_rockchip-uboot/board/mpl/pip405/u-boot.lds.debug
/rk3399_rockchip-uboot/board/mvblue/u-boot.lds
/rk3399_rockchip-uboot/board/netphone/u-boot.lds
/rk3399_rockchip-uboot/board/netphone/u-boot.lds.debug
/rk3399_rockchip-uboot/board/netta/u-boot.lds
/rk3399_rockchip-uboot/board/netta/u-boot.lds.debug
/rk3399_rockchip-uboot/board/netta2/u-boot.lds
/rk3399_rockchip-uboot/board/netta2/u-boot.lds.debug
/rk3399_rockchip-uboot/board/netvia/u-boot.lds
/rk3399_rockchip-uboot/board/netvia/u-boot.lds.debug
/rk3399_rockchip-uboot/board/nx823/u-boot.lds
/rk3399_rockchip-uboot/board/nx823/u-boot.lds.debug
/rk3399_rockchip-uboot/board/openrisc/openrisc-generic/u-boot.lds
/rk3399_rockchip-uboot/board/pb1x00/u-boot.lds
/rk3399_rockchip-uboot/board/qemu-mips/u-boot.lds
/rk3399_rockchip-uboot/board/qi/qi_lb60/u-boot.lds
/rk3399_rockchip-uboot/board/quantum/u-boot.lds
/rk3399_rockchip-uboot/board/r360mpi/u-boot.lds
/rk3399_rockchip-uboot/board/rbc823/u-boot.lds
/rk3399_rockchip-uboot/board/renesas/sh7757lcr/u-boot.lds
/rk3399_rockchip-uboot/board/rsdproto/u-boot.lds
/rk3399_rockchip-uboot/board/samsung/smdk6400/u-boot-nand.lds
/rk3399_rockchip-uboot/board/sandburst/karef/u-boot.lds.debug
/rk3399_rockchip-uboot/board/sandburst/metrobox/u-boot.lds.debug
/rk3399_rockchip-uboot/board/sandpoint/u-boot.lds
/rk3399_rockchip-uboot/board/siemens/IAD210/u-boot.lds
/rk3399_rockchip-uboot/board/sixnet/u-boot.lds
/rk3399_rockchip-uboot/board/snmc/qs850/u-boot.lds
/rk3399_rockchip-uboot/board/snmc/qs860t/u-boot.lds
/rk3399_rockchip-uboot/board/spc1920/u-boot.lds
/rk3399_rockchip-uboot/board/spd8xx/u-boot.lds
/rk3399_rockchip-uboot/board/spd8xx/u-boot.lds.debug
/rk3399_rockchip-uboot/board/stx/stxxtc/u-boot.lds
/rk3399_rockchip-uboot/board/stx/stxxtc/u-boot.lds.debug
/rk3399_rockchip-uboot/board/svm_sc8xx/u-boot.lds
/rk3399_rockchip-uboot/board/tqc/tqm8xx/u-boot.lds
/rk3399_rockchip-uboot/board/v37/u-boot.lds
/rk3399_rockchip-uboot/board/w7o/u-boot.lds.debug
/rk3399_rockchip-uboot/board/westel/amx860/u-boot.lds
/rk3399_rockchip-uboot/board/westel/amx860/u-boot.lds.debug
/rk3399_rockchip-uboot/board/xes/xpedite1000/u-boot.lds.debug
Makefile
cmd_cbfs.c
/rk3399_rockchip-uboot/disk/part.c
/rk3399_rockchip-uboot/disk/part_efi.c
/rk3399_rockchip-uboot/doc/DocBook/Makefile
/rk3399_rockchip-uboot/doc/DocBook/linker_lists.tmpl
/rk3399_rockchip-uboot/fs/Makefile
/rk3399_rockchip-uboot/fs/cbfs/Makefile
/rk3399_rockchip-uboot/fs/cbfs/cbfs.c
/rk3399_rockchip-uboot/include/cbfs.h
/rk3399_rockchip-uboot/include/command.h
/rk3399_rockchip-uboot/include/ide.h
/rk3399_rockchip-uboot/nand_spl/board/freescale/mx31pdk/u-boot.lds
/rk3399_rockchip-uboot/nand_spl/board/karo/tx25/u-boot.lds
/rk3399_rockchip-uboot/nand_spl/board/samsung/smdk6400/u-boot.lds
6c7c946c12-Oct-2012 Marek Vasut <marex@denx.de>

common: Convert the U-Boot commands to LG-arrays

This patch converts the old method of creating a list of command
onto the new LG-arrays code. The old u_boot_cmd section is converted
to new u_boot_l

common: Convert the U-Boot commands to LG-arrays

This patch converts the old method of creating a list of command
onto the new LG-arrays code. The old u_boot_cmd section is converted
to new u_boot_list_cmd subsection and LG-array macros used as needed.

Minor adjustments had to be made to the common code to work with the
LG-array macros, mostly the fixup_cmdtable() calls are now passed the
ll_entry_start and ll_entry_count instead of linker-generated symbols.

The command.c had to be adjusted as well so it would use the newly
introduced LG-array API instead of directly using linker-generated
symbols.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Joe Hershberger <joe.hershberger@gmail.com>
Cc: Mike Frysinger <vapier@gentoo.org>

show more ...


/rk3399_rockchip-uboot/.gitignore
/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/arm920t/ep93xx/u-boot.lds
/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/armv7/omap-common/u-boot-spl.lds
/rk3399_rockchip-uboot/arch/arm/cpu/ixp/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/arm/imx-common/cmd_bmode.c
/rk3399_rockchip-uboot/arch/avr32/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/avr32/lib/board.c
/rk3399_rockchip-uboot/arch/blackfin/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/m68k/lib/board.c
/rk3399_rockchip-uboot/arch/microblaze/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/mips/lib/board.c
/rk3399_rockchip-uboot/arch/nds32/cpu/n1213/u-boot.lds
/rk3399_rockchip-uboot/arch/nds32/lib/board.c
/rk3399_rockchip-uboot/arch/nios2/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/74xx_7xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc512x/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/u-boot-customlayout.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc5xxx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8220/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc824x/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8260/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/u-boot-nand.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc86xx/u-boot.lds
/rk3399_rockchip-uboot/arch/powerpc/cpu/ppc4xx/u-boot.lds
/rk3399_rockchip-uboot/arch/sandbox/cpu/u-boot.lds
/rk3399_rockchip-uboot/arch/sh/cpu/sh2/u-boot.lds
/rk3399_rockchip-uboot/arch/sh/cpu/sh3/u-boot.lds
/rk3399_rockchip-uboot/arch/sh/cpu/sh4/u-boot.lds
/rk3399_rockchip-uboot/arch/sparc/lib/board.c
/rk3399_rockchip-uboot/arch/x86/cpu/u-boot.lds
/rk3399_rockchip-uboot/board/BuS/eb_cpu5282/u-boot.lds
/rk3399_rockchip-uboot/board/LEOX/elpt860/u-boot.lds
/rk3399_rockchip-uboot/board/RPXClassic/u-boot.lds
/rk3399_rockchip-uboot/board/RPXClassic/u-boot.lds.debug
/rk3399_rockchip-uboot/board/RPXlite/u-boot.lds
/rk3399_rockchip-uboot/board/RPXlite/u-boot.lds.debug
/rk3399_rockchip-uboot/board/RPXlite_dw/u-boot.lds
/rk3399_rockchip-uboot/board/RPXlite_dw/u-boot.lds.debug
/rk3399_rockchip-uboot/board/RRvision/u-boot.lds
/rk3399_rockchip-uboot/board/actux1/u-boot.lds
/rk3399_rockchip-uboot/board/actux2/u-boot.lds
/rk3399_rockchip-uboot/board/actux3/u-boot.lds
/rk3399_rockchip-uboot/board/adder/u-boot.lds
/rk3399_rockchip-uboot/board/ait/cam_enc_4xx/u-boot-spl.lds
/rk3399_rockchip-uboot/board/altera/nios2-generic/u-boot.lds
/rk3399_rockchip-uboot/board/amcc/acadia/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/bamboo/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/canyonlands/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/kilauea/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/sequoia/u-boot-nand.lds
/rk3399_rockchip-uboot/board/amcc/sequoia/u-boot-ram.lds
/rk3399_rockchip-uboot/board/astro/mcf5373l/u-boot.lds
/rk3399_rockchip-uboot/board/c2mon/u-boot.lds
/rk3399_rockchip-uboot/board/c2mon/u-boot.lds.debug
/rk3399_rockchip-uboot/board/cobra5272/u-boot.lds
/rk3399_rockchip-uboot/board/cogent/u-boot.lds
/rk3399_rockchip-uboot/board/cogent/u-boot.lds.debug
/rk3399_rockchip-uboot/board/cray/L1/u-boot.lds.debug
/rk3399_rockchip-uboot/board/dave/PPChameleonEVB/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/dbau1x00/u-boot.lds
/rk3399_rockchip-uboot/board/dvlhost/u-boot.lds
/rk3399_rockchip-uboot/board/eltec/mhpc/u-boot.lds
/rk3399_rockchip-uboot/board/eltec/mhpc/u-boot.lds.debug
/rk3399_rockchip-uboot/board/emk/top860/u-boot.lds
/rk3399_rockchip-uboot/board/ep88x/u-boot.lds
/rk3399_rockchip-uboot/board/esd/dasa_sim/u-boot.lds
/rk3399_rockchip-uboot/board/esd/pmc440/u-boot-nand.lds
/rk3399_rockchip-uboot/board/esd/tasreg/u-boot.lds
/rk3399_rockchip-uboot/board/esteem192e/u-boot.lds
/rk3399_rockchip-uboot/board/etx094/u-boot.lds
/rk3399_rockchip-uboot/board/evb64260/u-boot.lds
/rk3399_rockchip-uboot/board/fads/u-boot.lds
/rk3399_rockchip-uboot/board/flagadm/u-boot.lds
/rk3399_rockchip-uboot/board/flagadm/u-boot.lds.debug
/rk3399_rockchip-uboot/board/freescale/m5208evbe/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m52277evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5235evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5249evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5253demo/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5253evbe/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5271evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5272c3/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5275evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5282evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m53017evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5329evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m5373evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m54451evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m54455evb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m547xevb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/m548xevb/u-boot.lds
/rk3399_rockchip-uboot/board/freescale/mx31ads/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/gr_cpci_ax2000/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/gr_ep2s60/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/gr_xc3s_1500/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/grsim/u-boot.lds
/rk3399_rockchip-uboot/board/gaisler/grsim_leon2/u-boot.lds
/rk3399_rockchip-uboot/board/gen860t/u-boot-flashenv.lds
/rk3399_rockchip-uboot/board/gen860t/u-boot.lds
/rk3399_rockchip-uboot/board/genietv/u-boot.lds
/rk3399_rockchip-uboot/board/genietv/u-boot.lds.debug
/rk3399_rockchip-uboot/board/hermes/u-boot.lds
/rk3399_rockchip-uboot/board/hermes/u-boot.lds.debug
/rk3399_rockchip-uboot/board/hymod/u-boot.lds
/rk3399_rockchip-uboot/board/hymod/u-boot.lds.debug
/rk3399_rockchip-uboot/board/icu862/u-boot.lds
/rk3399_rockchip-uboot/board/icu862/u-boot.lds.debug
/rk3399_rockchip-uboot/board/idmr/u-boot.lds
/rk3399_rockchip-uboot/board/incaip/u-boot.lds
/rk3399_rockchip-uboot/board/ip860/u-boot.lds
/rk3399_rockchip-uboot/board/ip860/u-boot.lds.debug
/rk3399_rockchip-uboot/board/ivm/u-boot.lds
/rk3399_rockchip-uboot/board/ivm/u-boot.lds.debug
/rk3399_rockchip-uboot/board/korat/u-boot-F7FC.lds
/rk3399_rockchip-uboot/board/kup/kup4k/u-boot.lds
/rk3399_rockchip-uboot/board/kup/kup4k/u-boot.lds.debug
/rk3399_rockchip-uboot/board/kup/kup4x/u-boot.lds
/rk3399_rockchip-uboot/board/kup/kup4x/u-boot.lds.debug
/rk3399_rockchip-uboot/board/lantec/u-boot.lds
/rk3399_rockchip-uboot/board/lantec/u-boot.lds.debug
/rk3399_rockchip-uboot/board/lwmon/u-boot.lds
/rk3399_rockchip-uboot/board/lwmon/u-boot.lds.debug
/rk3399_rockchip-uboot/board/manroland/uc100/u-boot.lds
/rk3399_rockchip-uboot/board/matrix_vision/mvsmr/u-boot.lds
/rk3399_rockchip-uboot/board/mbx8xx/u-boot.lds
/rk3399_rockchip-uboot/board/mbx8xx/u-boot.lds.debug
/rk3399_rockchip-uboot/board/micronas/vct/u-boot.lds
/rk3399_rockchip-uboot/board/mousse/u-boot.lds
/rk3399_rockchip-uboot/board/mpl/pip405/u-boot.lds.debug
/rk3399_rockchip-uboot/board/mvblue/u-boot.lds
/rk3399_rockchip-uboot/board/netphone/u-boot.lds
/rk3399_rockchip-uboot/board/netphone/u-boot.lds.debug
/rk3399_rockchip-uboot/board/netta/u-boot.lds
/rk3399_rockchip-uboot/board/netta/u-boot.lds.debug
/rk3399_rockchip-uboot/board/netta2/u-boot.lds
/rk3399_rockchip-uboot/board/netta2/u-boot.lds.debug
/rk3399_rockchip-uboot/board/netvia/u-boot.lds
/rk3399_rockchip-uboot/board/netvia/u-boot.lds.debug
/rk3399_rockchip-uboot/board/nx823/u-boot.lds
/rk3399_rockchip-uboot/board/nx823/u-boot.lds.debug
/rk3399_rockchip-uboot/board/openrisc/openrisc-generic/u-boot.lds
/rk3399_rockchip-uboot/board/pb1x00/u-boot.lds
/rk3399_rockchip-uboot/board/qemu-mips/u-boot.lds
/rk3399_rockchip-uboot/board/qi/qi_lb60/u-boot.lds
/rk3399_rockchip-uboot/board/quantum/u-boot.lds
/rk3399_rockchip-uboot/board/r360mpi/u-boot.lds
/rk3399_rockchip-uboot/board/rbc823/u-boot.lds
/rk3399_rockchip-uboot/board/renesas/sh7757lcr/u-boot.lds
/rk3399_rockchip-uboot/board/rsdproto/u-boot.lds
/rk3399_rockchip-uboot/board/samsung/smdk5250/smdk5250-uboot-spl.lds
/rk3399_rockchip-uboot/board/samsung/smdk6400/u-boot-nand.lds
/rk3399_rockchip-uboot/board/sandburst/karef/u-boot.lds.debug
/rk3399_rockchip-uboot/board/sandburst/metrobox/u-boot.lds.debug
/rk3399_rockchip-uboot/board/sandpoint/u-boot.lds
/rk3399_rockchip-uboot/board/siemens/IAD210/u-boot.lds
/rk3399_rockchip-uboot/board/sixnet/u-boot.lds
/rk3399_rockchip-uboot/board/snmc/qs850/u-boot.lds
/rk3399_rockchip-uboot/board/snmc/qs860t/u-boot.lds
/rk3399_rockchip-uboot/board/spc1920/u-boot.lds
/rk3399_rockchip-uboot/board/spd8xx/u-boot.lds
/rk3399_rockchip-uboot/board/spd8xx/u-boot.lds.debug
/rk3399_rockchip-uboot/board/stx/stxxtc/u-boot.lds
/rk3399_rockchip-uboot/board/stx/stxxtc/u-boot.lds.debug
/rk3399_rockchip-uboot/board/svm_sc8xx/u-boot.lds
/rk3399_rockchip-uboot/board/tqc/tqm8xx/u-boot.lds
/rk3399_rockchip-uboot/board/v37/u-boot.lds
/rk3399_rockchip-uboot/board/vpac270/u-boot-spl.lds
/rk3399_rockchip-uboot/board/w7o/u-boot.lds.debug
/rk3399_rockchip-uboot/board/westel/amx860/u-boot.lds
/rk3399_rockchip-uboot/board/westel/amx860/u-boot.lds.debug
/rk3399_rockchip-uboot/board/xes/xpedite1000/u-boot.lds.debug
cmd_help.c
command.c
/rk3399_rockchip-uboot/config.mk
/rk3399_rockchip-uboot/doc/README.commands
/rk3399_rockchip-uboot/drivers/usb/host/ehci-fsl.c
/rk3399_rockchip-uboot/examples/standalone/sparc.lds
/rk3399_rockchip-uboot/helper.mk
/rk3399_rockchip-uboot/include/command.h
/rk3399_rockchip-uboot/include/linker_lists.h
/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/mx31pdk/Makefile
/rk3399_rockchip-uboot/nand_spl/board/freescale/mx31pdk/u-boot.lds
/rk3399_rockchip-uboot/nand_spl/board/freescale/p1010rdb/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/freescale/p1_p2_rdb_pc/Makefile
/rk3399_rockchip-uboot/nand_spl/board/karo/tx25/Makefile
/rk3399_rockchip-uboot/nand_spl/board/karo/tx25/u-boot.lds
/rk3399_rockchip-uboot/nand_spl/board/samsung/smdk6400/u-boot.lds
/rk3399_rockchip-uboot/spl/.gitignore
/rk3399_rockchip-uboot/spl/Makefile
b660df3c26-Aug-2012 Marek Vasut <marex@denx.de>

COMMON: Implement common bounce buffer

Implement common bounce buffer to be used on a less capable hardware.
That includes hardware that can not do DMA from any address or such.

Signed-off-by: Mare

COMMON: Implement common bounce buffer

Implement common bounce buffer to be used on a less capable hardware.
That includes hardware that can not do DMA from any address or such.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: Andy Fleming <afleming@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>

show more ...

8b8d779d24-Jul-2012 Vincent Palatin <vpalatin@chromium.org>

usb: fallback safely when a configuration descriptor is too large

When a USB configuration descriptor was larger than our USB buffer
(512 bytes), we were skipping the full descriptor reading but the

usb: fallback safely when a configuration descriptor is too large

When a USB configuration descriptor was larger than our USB buffer
(512 bytes), we were skipping the full descriptor reading but then we
were still parsing and using it, triggering memory corruptions.
Now in that case, it just skips this device enumeration and displays the
appropriate message to the user, so he can fix the buffer if he wants.

This bug was triggered by some UVC webcams which have very large
configuration descriptors (e.g. a couple of kB) describing all their
supported video encodings.

Signed-off-by: Vincent Palatin <vpalatin@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

e81e79ed12-Oct-2012 Gabe Black <gabeblack@chromium.org>

usb: Support the CONFIG_SYS_64BIT_LBA option

usb_storage wouldn't compile when the CONFIG_SYS_64BIT_LBA option is
turned on because the used fixed size data types in their exported
functions when th

usb: Support the CONFIG_SYS_64BIT_LBA option

usb_storage wouldn't compile when the CONFIG_SYS_64BIT_LBA option is
turned on because the used fixed size data types in their exported
functions when they should have used lbaint_t for the block count
parameter. That meant that when the sizes happened to be the same, when
using a 28 bit LBA, the driver would build, but when it wasn't, a 48 bit
LBA, things broke.

This change adjusts the signatures to use the right type and makes small
adjustments in the affected functions.

Signed-off-by: Gabe Black <gabeblack@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

55f97c1b12-Oct-2012 Simon Glass <sjg@chromium.org>

x86: Change global data baudrate to int

This doesn't need to be a long, so change it.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@ti.com>

a25356d712-Oct-2012 Simon Glass <sjg@chromium.org>

nds32: Change global data baudrate to int

This doesn't need to be a long, so change it.

Also adjust bi_baudrate to be unsigned.

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

nds32: Change global data baudrate to int

This doesn't need to be a long, so change it.

Also adjust bi_baudrate to be unsigned.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@ti.com>

show more ...

8dc22b0012-Oct-2012 Simon Glass <sjg@chromium.org>

mips: Change global data baudrate to int

This doesn't need to be a long, so change it.

Also adjust bi_baudrate to be unsigned.

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

mips: Change global data baudrate to int

This doesn't need to be a long, so change it.

Also adjust bi_baudrate to be unsigned.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@ti.com>

show more ...

1...<<121122123124125126127128129130>>...211