diff options
| author | Dirk Behme <dirk.behme@de.bosch.com> | 2012-01-11 23:28:32 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-02-12 10:11:25 +0100 | 
| commit | bd25864cc7612919cf806f5705fe6a83beec8f8d (patch) | |
| tree | 9dec8bc0b2a33e1f145e68fab5810cd431255175 /tools/imximage.c | |
| parent | 19b409c00727444e12d8698a8f3982390d42ea6a (diff) | |
| download | olio-uboot-2014.01-bd25864cc7612919cf806f5705fe6a83beec8f8d.tar.xz olio-uboot-2014.01-bd25864cc7612919cf806f5705fe6a83beec8f8d.zip | |
imximage: Sort bootops alphabetically
Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
CC: Fabio Estevam <festevam@gmail.com>
CC: Stefano Babic <sbabic@denx.de>
CC: Jason Liu <jason.hui@linaro.org>
Acked-by: Jason Liu <jason.hui@linaro.org>
Diffstat (limited to 'tools/imximage.c')
| -rw-r--r-- | tools/imximage.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/tools/imximage.c b/tools/imximage.c index f3da13957..1e0f5d4e5 100644 --- a/tools/imximage.c +++ b/tools/imximage.c @@ -47,12 +47,12 @@ static table_entry_t imximage_cmds[] = {   * this is needed to set the correct flash offset   */  static table_entry_t imximage_bootops[] = { -	{FLASH_OFFSET_SPI,	"spi",		"SPI Flash",	}, -	{FLASH_OFFSET_NAND,	"nand",		"NAND Flash",	}, -	{FLASH_OFFSET_SD,	"sd",		"SD Card",	},  	{FLASH_OFFSET_ONENAND,	"onenand",	"OneNAND Flash",}, +	{FLASH_OFFSET_NAND,	"nand",		"NAND Flash",	},  	{FLASH_OFFSET_NOR,	"nor",		"NOR Flash",	},  	{FLASH_OFFSET_SATA,	"sata",		"SATA Disk",	}, +	{FLASH_OFFSET_SD,	"sd",		"SD Card",	}, +	{FLASH_OFFSET_SPI,	"spi",		"SPI Flash",	},  	{-1,			"",		"Invalid",	},  }; |