summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Zhang <jimmzhang@nvidia.com>2015-10-02 13:56:57 -0700
committerStephen Warren <swarren@nvidia.com>2015-10-06 17:12:39 -0600
commitcf84e7ea1815d18a27832481607338d51f08ce40 (patch)
tree0c54d350460390f6fa1b3c4a712ee0f9183fe73e
parentb7d5b2d6a6dd05874d86ee900ff441d261f9034c (diff)
downloadnvidia-cbootimage-cf84e7ea1815d18a27832481607338d51f08ce40.tar.gz
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>
-rw-r--r--src/cbootimage.c9
1 files 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;
}