Enable -u | --update option support for t210

Signed-off-by: Jimmy Zhang <jimmzhang@nvidia.com>
[swarren, minor capitalization fix]
Signed-off-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
Jimmy Zhang
2015-10-02 13:56:57 -07:00
committed by Stephen Warren
parent b7d5b2d6a6
commit cf84e7ea18

View File

@@ -79,7 +79,7 @@ usage(void)
printf(" Default: tegra20.\n");
printf(" -u|--update Copy input image data and update bct\n");
printf(" configs into new image file.\n");
printf(" This feature is only for tegra114/124.\n");
printf(" This feature is currently not supported on Tegra20/30.\n");
printf(" configfile File with configuration information\n");
printf(" inputimage Input image name. This is required\n");
printf(" if -u|--update option is used.\n");
@@ -169,9 +169,10 @@ process_command_line(int argc, char *argv[], build_image_context *context)
/* Record the input image filename if update_image is necessary */
if (context->update_image)
{
if (context->boot_data_version != BOOTDATA_VERSION_T114 &&
context->boot_data_version != BOOTDATA_VERSION_T124) {
printf("Update image feature is only for Tegra114 and Tegra124.\n");
if (context->boot_data_version == BOOTDATA_VERSION_T20 ||
context->boot_data_version == BOOTDATA_VERSION_T30) {
printf("Update image feature is not supported on"
" Tegra20/30.\n");
return -EINVAL;
}