From 26d22a64c90e0bca084476234c3a1b1494053b39 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Fri, 28 Nov 2025 16:03:52 -0500 Subject: [PATCH] mkzenboot: Add support for 1.21.03 (US) firmware on the ZEN The EU variant was already listed, but the US was not. Change-Id: I8445a9e906ecd891f1ca571a4a3d7aa146e69698 --- utils/mkzenboot/mkzenboot.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/utils/mkzenboot/mkzenboot.c b/utils/mkzenboot/mkzenboot.c index 88d6821759..6da55a8f0e 100644 --- a/utils/mkzenboot/mkzenboot.c +++ b/utils/mkzenboot/mkzenboot.c @@ -186,10 +186,14 @@ static const struct zen_md5sum_t zen_sums[] = MODEL_ZENV, "2f6d3e619557583c30132ac87221bc3e", "1.32.01e" }, /** Zen */ + { + /* Version 1.21.03 */ + MODEL_ZEN, "08ea23a65d89a8d352753ee22f8d6a61", "1.21.03" + }, { /* Version 1.21.03e */ MODEL_ZEN, "1fe28f587f87ac3c280281db28c42465", "1.21.03e" - } + }, }; #define NR_ZEN_PLAYERS (sizeof(zen_players) / sizeof(zen_players[0]))