| 30dc165a | 09-Apr-2010 |
Jens Scharsig <js_at_ng@scharsoft.de> |
FIX: watchdog timeout, while waiting for input
* add WATCHDOG_RESET to !tstc() loops * prevents watchdog timeout, while waiting for input, if CONFIG_BOOT_RETRY_TIME or CONFIG_SHOW_ACTIVITY defined
FIX: watchdog timeout, while waiting for input
* add WATCHDOG_RESET to !tstc() loops * prevents watchdog timeout, while waiting for input, if CONFIG_BOOT_RETRY_TIME or CONFIG_SHOW_ACTIVITY defined
Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
show more ...
|
| fac71cc4 | 12-Mar-2010 |
Kim B. Heino <Kim.Heino@bluegiga.com> |
USB storage probe
While debugging one ill behaving USB device I found two bugs in USB storage probe.
usb_stor_get_info() returns -1 (error), 0 (skip) or 1 (ok). First part of this patch fixes error
USB storage probe
While debugging one ill behaving USB device I found two bugs in USB storage probe.
usb_stor_get_info() returns -1 (error), 0 (skip) or 1 (ok). First part of this patch fixes error case.
Second part fixes usb_inquiry()'s retry counter handling. Original code had retry = -1 on error case, not retry = 0 as checked in the next line.
Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
show more ...
|
| 24de2f4b | 29-Mar-2010 |
Heiko Schocher <hs@denx.de> |
bootm, linux: fix booting Multi-File Image with "kernel+ramdisk+fdt"
Booting a "Multi-File Image" including a linux kernel, ramdisk and fdt, generated with
mkimage -A ppc \ -O linux \ -T mu
bootm, linux: fix booting Multi-File Image with "kernel+ramdisk+fdt"
Booting a "Multi-File Image" including a linux kernel, ramdisk and fdt, generated with
mkimage -A ppc \ -O linux \ -T multi \ -C gzip \ -a 00000000 \ -e 00000000 \ -n "kernel-2.6+initrd+dtb" \ -d "vmlinux.bin.gz:ramdisk_image.gz:board.dtb" \ multi.bin
actually fails, because ramdisk start and end addresses didn;t get initialized. This patch fixes this issue.
Tested on the KUP4K board.
Signed-off-by: Heiko Schocher <hs@denx.de>
show more ...
|
| 2c0dc990 | 26-Mar-2010 |
Frans Meulenbroeks <fransmeulenbroeks@gmail.com> |
cmd_i2c: introduced get_alen helper function
The code to parse alen appeared 6 times in the function. Factored this out in a small helper function
Signed-off-by: Frans Meulenbroeks <fransmeulenbroe
cmd_i2c: introduced get_alen helper function
The code to parse alen appeared 6 times in the function. Factored this out in a small helper function
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
show more ...
|