summaryrefslogtreecommitdiff
path: root/src/cbootimage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cbootimage.c')
-rw-r--r--src/cbootimage.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cbootimage.c b/src/cbootimage.c
index 937bac9..336b169 100644
--- a/src/cbootimage.c
+++ b/src/cbootimage.c
@@ -68,7 +68,8 @@ usage(void)
printf(" -d, --debug Output debugging information.\n");
printf(" -gbct Generate the new bct file.\n");
printf(" -o<ODM_DATA> Specify the odm_data(in hex).\n");
- printf(" [-t20|-t30|-t114] Select one of the possible target devices,\n");
+ printf(" [-t20|-t30|-t114|-t124]\n");
+ printf(" Select one of the possible target devices,\n");
printf(" -t20 if unspecified.\n");
printf(" configfile File with configuration information\n");
printf(" imagename Output image name\n");
@@ -107,6 +108,8 @@ process_command_line(int argc, char *argv[], build_image_context *context)
t30_get_soc_config(context, &g_soc_config);
} else if (!strcasecmp("114", optarg)) {
t114_get_soc_config(context, &g_soc_config);
+ } else if (!strcasecmp("124", optarg)) {
+ t124_get_soc_config(context, &g_soc_config);
} else {
printf("Unsupported chipname!\n");
usage();