diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /common/cmd_bootm.c | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 897e9f6f4..2a9c59f2a 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -40,7 +40,7 @@  #include <usb.h>  #endif -#ifdef CFG_HUSH_PARSER +#ifdef CONFIG_SYS_HUSH_PARSER  #include <hush.h>  #endif @@ -60,8 +60,8 @@  DECLARE_GLOBAL_DATA_PTR;  extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp); -#ifndef CFG_BOOTM_LEN -#define CFG_BOOTM_LEN	0x800000	/* use 8MByte as default max gunzip size */ +#ifndef CONFIG_SYS_BOOTM_LEN +#define CONFIG_SYS_BOOTM_LEN	0x800000	/* use 8MByte as default max gunzip size */  #endif  #ifdef CONFIG_BZIP2 @@ -119,7 +119,7 @@ int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);  static boot_os_fn do_bootm_integrity;  #endif -ulong load_addr = CFG_LOAD_ADDR;	/* Default Load Address */ +ulong load_addr = CONFIG_SYS_LOAD_ADDR;	/* Default Load Address */  static bootm_headers_t images;		/* pointers to os/initrd/fdt images */  void __board_lmb_reserve(struct lmb *lmb) @@ -289,7 +289,7 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)  	ulong blob_end = os.end;  	ulong image_start = os.image_start;  	ulong image_len = os.image_len; -	uint unc_len = CFG_BOOTM_LEN; +	uint unc_len = CONFIG_SYS_BOOTM_LEN;  	const char *type_name = genimg_get_type_name (os.type); @@ -329,7 +329,7 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)  		 */  		int i = BZ2_bzBuffToBuffDecompress ((char*)load,  					&unc_len, (char *)image_start, image_len, -					CFG_MALLOC_LEN < (4096 * 1024), 0); +					CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);  		if (i != BZ_OK) {  			printf ("BUNZIP2: uncompress or overwrite error %d "  				"- must RESET board to recover\n", i); @@ -762,7 +762,7 @@ static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]  }  U_BOOT_CMD( -	bootm,	CFG_MAXARGS,	1,	do_bootm, +	bootm,	CONFIG_SYS_MAXARGS,	1,	do_bootm,  	"bootm   - boot application image from memory\n",  	"[addr [arg ...]]\n    - boot application image stored in memory\n"  	"\tpassing arguments 'arg ...'; when booting a Linux kernel,\n" @@ -792,7 +792,7 @@ int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  {  	int rcode = 0; -#ifndef CFG_HUSH_PARSER +#ifndef CONFIG_SYS_HUSH_PARSER  	if (run_command (getenv ("bootcmd"), flag) < 0)  		rcode = 1;  #else @@ -896,7 +896,7 @@ static int image_info (ulong addr)  }  U_BOOT_CMD( -	iminfo,	CFG_MAXARGS,	1,	do_iminfo, +	iminfo,	CONFIG_SYS_MAXARGS,	1,	do_iminfo,  	"iminfo  - print header information for application image\n",  	"addr [addr ...]\n"  	"    - print header information for application image starting at\n" @@ -917,7 +917,7 @@ int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	void *hdr;  	for (i = 0, info = &flash_info[0]; -		i < CFG_MAX_FLASH_BANKS; ++i, ++info) { +		i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {  		if (info->flash_id == FLASH_UNKNOWN)  			goto next_bank; |