| 00ddacc1 | 10-Sep-2013 |
Mark Langsdorf <mark.langsdorf@calxeda.com> |
autoboot: add an option to override keyed autoboot
As originally implemented, setting the AUTOBOOT_KEYED config option will prevent users from breaking into the autoboot script with ctrl-c. Restore
autoboot: add an option to override keyed autoboot
As originally implemented, setting the AUTOBOOT_KEYED config option will prevent users from breaking into the autoboot script with ctrl-c. Restore that option with a new config symbol.
Signed-off-by: Mark Langsdorf <mark.langsdorf@calxeda.com>
show more ...
|
| f4dacf7b | 23-Oct-2013 |
Przemyslaw Marczak <p.marczak@samsung.com> |
usb: ums: allows using every mmc device with ums.
Before this change ums command only allowed use of mmc 0. Now this argument can be set.
Changes: - remove mmc device number checking because it is
usb: ums: allows using every mmc device with ums.
Before this change ums command only allowed use of mmc 0. Now this argument can be set.
Changes: - remove mmc device number checking because it is always positive number - remove printing "no such device" - it is done by find_mmc_device()
Change-Id: I767e45151ad515c7bef19e6c13087374f5e23c11 Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com> Cc: Marek Vasut <marex@denx.de>
show more ...
|
| 5b629319 | 04-Nov-2013 |
Miao Yan <miao.yan@windriver.com> |
common/cmd_bootm.c: fix subcommand processing in OS specific do_bootm_xxx() functions
In commit "5c427e4: use BOOTM_STATE_OS_CMDLINE flag for plain bootm" and "3d187b3: Only pass BOOTM_STATE_OS_CMDL
common/cmd_bootm.c: fix subcommand processing in OS specific do_bootm_xxx() functions
In commit "5c427e4: use BOOTM_STATE_OS_CMDLINE flag for plain bootm" and "3d187b3: Only pass BOOTM_STATE_OS_CMDLINE on PowerPC/MIPS", BOOTM_STATE_OS_CMDLINE was added to do_bootm for PowerPC and MIPS. This breaks other OSes (vxworks, netbsd, plan9,...) that don't support subcommand processing, e.g. they all contain the following code in their do_bootm_xxx():
if (flag & BOOTM_STATE_OS_PREP) return 0; if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) return 1;
which will result a "subcommand not supported" error. This patch changes the above logic to:
/* if not go command, pretend everything to be OK */ if (flag != BOOTM_STATE_OS_GO) return 0;
Signed-off-by: Miao Yan <miao.yan@windriver.com>
show more ...
|
| 32d7cdd3 | 04-Oct-2013 |
Michal Simek <michal.simek@xilinx.com> |
fpga: Add support for gzip images with bitstreams
Here is the set of command which has been performed to proof this feature.
gzip < fpga.bin > fpga.bin.gz mkimage -A arm -O u-boot -T firmware -C gz
fpga: Add support for gzip images with bitstreams
Here is the set of command which has been performed to proof this feature.
gzip < fpga.bin > fpga.bin.gz mkimage -A arm -O u-boot -T firmware -C gzip \ -a 20000000 -n "zc702_fpga_bin" -d fpga.bin.gz fpga.bin.gz.ub
tftp 100000 fpga.bin.gz.ub fpga loadmk 0 100000
This flow should speedup loading bitstream data from external memory and save image footprint in non volatile memory.
Signed-off-by: Michal Simek <michal.simek@xilinx.com> Acked-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
show more ...
|
| 815a76f2 | 21-Sep-2013 |
trem <tremyfr@yahoo.fr> |
i2c: fix init on generic board
On generic board, the i2c init initialize only one bus. But the new i2c subsystem allow to manage severals i2c bus. So in the case, instead of initializing a bus, we j
i2c: fix init on generic board
On generic board, the i2c init initialize only one bus. But the new i2c subsystem allow to manage severals i2c bus. So in the case, instead of initializing a bus, we just set the current i2c bus. The initialization will be done in the i2c command.
Signed-off-by: Philippe Reynes <tremyfr@yahoo.fr>
show more ...
|
| 100ea07e | 16-Oct-2013 |
Michal Simek <michal.simek@xilinx.com> |
common: fsl: Fix broken SPDX-License-Identifier change
This bug was introduced by: "Add GPL-2.0+ SPDX-License-Identifier to source files" (sha1: 1a4596601fd395f3afb8f82f3f840c5e00bdd57a)
Signed-off
common: fsl: Fix broken SPDX-License-Identifier change
This bug was introduced by: "Add GPL-2.0+ SPDX-License-Identifier to source files" (sha1: 1a4596601fd395f3afb8f82f3f840c5e00bdd57a)
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
show more ...
|