From cf84e7ea1815d18a27832481607338d51f08ce40 Mon Sep 17 00:00:00 2001 From: Jimmy Zhang Date: Fri, 2 Oct 2015 13:56:57 -0700 Subject: Enable -u | --update option support for t210 Signed-off-by: Jimmy Zhang [swarren, minor capitalization fix] Signed-off-by: Stephen Warren --- src/cbootimage.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/cbootimage.c b/src/cbootimage.c index 1dfb719..da1d1a5 100644 --- a/src/cbootimage.c +++ b/src/cbootimage.c @@ -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; } -- cgit v1.2.1