diff options
| author | Heiko Schocher <hs@pollux.denx.de> | 2007-06-22 19:11:54 +0200 | 
|---|---|---|
| committer | Heiko Schocher <hs@pollux.denx.de> | 2007-06-22 19:11:54 +0200 | 
| commit | 566a494f592ae3b3c0785d90d4e1ba45574880c4 (patch) | |
| tree | 933dceeaf04c7caa937774327f0b0ede81f9babc /common/cmd_reiser.c | |
| parent | 9912121f7ed804ea58fd62f3f230b5dcfc357d88 (diff) | |
| download | olio-uboot-2014.01-566a494f592ae3b3c0785d90d4e1ba45574880c4.tar.xz olio-uboot-2014.01-566a494f592ae3b3c0785d90d4e1ba45574880c4.zip | |
[PCS440EP]      upgrade the PCS440EP board:
                - Show on the Status LEDs, some States of the board.
                - Get the MAC addresses from the EEProm
                - use PREBOOT
                - use the CF on the board.
                - check the U-Boot image in the Flash with a SHA1
                  checksum.
                - use dynamic TLB entries generation for the SDRAM
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'common/cmd_reiser.c')
| -rw-r--r-- | common/cmd_reiser.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/common/cmd_reiser.c b/common/cmd_reiser.c index 09c86e66d..d83c31ab3 100644 --- a/common/cmd_reiser.c +++ b/common/cmd_reiser.c @@ -90,7 +90,7 @@ int do_reiserls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	}  	if (!reiserfs_mount(part_length)) { -		printf ("** Bad Reisefs partition or disk - %s %d:%d **\n",  argv[1], dev, part); +		printf ("** Bad Reiserfs partition or disk - %s %d:%d **\n",  argv[1], dev, part);  		return 1;  	} @@ -183,7 +183,7 @@ int do_reiserload (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  			return 1;  		} -		if (strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) { +		if (strncmp((char *)info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) {  			printf ("\n** Invalid partition type \"%.32s\""  				" (expect \"" BOOT_PART_TYPE "\")\n",  				info.type); @@ -204,7 +204,7 @@ int do_reiserload (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	}  	if (!reiserfs_mount(part_length)) { -		printf ("** Bad Reisefs partition or disk - %s %d:%d **\n",  argv[1], dev, part); +		printf ("** Bad Reiserfs partition or disk - %s %d:%d **\n",  argv[1], dev, part);  		return 1;  	} |