diff options
Diffstat (limited to 'src/cbootimage.c')
-rw-r--r-- | src/cbootimage.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/cbootimage.c b/src/cbootimage.c index 2fdb0f2..5f746e3 100644 --- a/src/cbootimage.c +++ b/src/cbootimage.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2012-2014, NVIDIA CORPORATION. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, @@ -71,10 +71,11 @@ usage(void) printf(" -gbct Generate the new bct file.\n"); printf(" -o<ODM_DATA> Specify the odm_data(in hex).\n"); printf(" -t|--tegra NN Select target device. Must be one of:\n"); - printf(" 20, 30, 114, 124.\n"); + printf(" 20, 30, 114, 124, 132.\n"); printf(" Default: 20. This option is deprecated\n"); printf(" -s|--soc tegraNN Select target device. Must be one of:\n"); - printf(" tegra20, tegra30, tegra114, tegra124.\n"); + printf(" tegra20, tegra30, tegra114, tegra124,\n"); + printf(" tegra132.\n"); printf(" Default: tegra20.\n"); printf(" -u|--update Copy input image data and update bct\n"); printf(" configs into new image file.\n"); @@ -128,6 +129,8 @@ process_command_line(int argc, char *argv[], build_image_context *context) t114_get_soc_config(context, &g_soc_config); } else if (!strcasecmp("124", optarg)) { t124_get_soc_config(context, &g_soc_config); + } else if (!strcasecmp("132", optarg)) { + t132_get_soc_config(context, &g_soc_config); } else { printf("Unsupported chipname!\n"); usage(); |