summaryrefslogtreecommitdiff
path: root/rbutil/mkimxboot/mkimxboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/mkimxboot/mkimxboot.c')
-rw-r--r--rbutil/mkimxboot/mkimxboot.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/rbutil/mkimxboot/mkimxboot.c b/rbutil/mkimxboot/mkimxboot.c
index 1761fc9cb2..3897216e16 100644
--- a/rbutil/mkimxboot/mkimxboot.c
+++ b/rbutil/mkimxboot/mkimxboot.c
@@ -199,7 +199,7 @@ static const struct imx_model_desc_t imx_models[] =
199 1, &zero_key, 0, 0x40000000 }, 199 1, &zero_key, 0, 0x40000000 },
200 [MODEL_ZENXFI3] = {"Zen X-Fi3", dualboot_zenxfi3, sizeof(dualboot_zenxfi3), "zxf3", 83, 200 [MODEL_ZENXFI3] = {"Zen X-Fi3", dualboot_zenxfi3, sizeof(dualboot_zenxfi3), "zxf3", 83,
201 1, &zero_key, 0, 0x40000000 }, 201 1, &zero_key, 0, 0x40000000 },
202 [MODEL_ZENXFISTYLE] = {"Zen X-Fi Style", NULL, 0, "", -1, 202 [MODEL_ZENXFISTYLE] = {"Zen X-Fi Style", dualboot_zenxfistyle, sizeof(dualboot_zenxfistyle), "zxfs", 94,
203 1, &zero_key, 0, 0x40000000 }, 203 1, &zero_key, 0, 0x40000000 },
204 [MODEL_ZENSTYLE] = {"Zen Style 100/300", NULL, 0, "", -1, 204 [MODEL_ZENSTYLE] = {"Zen Style 100/300", NULL, 0, "", -1,
205 1, &zero_key, 0, 0x40000000 }, 205 1, &zero_key, 0, 0x40000000 },
@@ -429,6 +429,10 @@ static enum imx_error_t patch_firmware(enum imx_model_t model,
429 return IMX_DONT_KNOW_HOW_TO_PATCH; 429 return IMX_DONT_KNOW_HOW_TO_PATCH;
430 } 430 }
431 break; 431 break;
432 case MODEL_ZENXFISTYLE:
433 /* The ZEN X-Fi Style uses the standard ____, host, play sections, patch after first
434 * call in ____ section. */
435 return patch_std_zero_host_play(1, model, type, sb_file, boot_fw);
432 default: 436 default:
433 return IMX_DONT_KNOW_HOW_TO_PATCH; 437 return IMX_DONT_KNOW_HOW_TO_PATCH;
434 } 438 }