From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-pg1-x532.google.com ([2607:f8b0:4864:20::532]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1fs07h-00005G-Rh for barebox@lists.infradead.org; Tue, 21 Aug 2018 06:26:39 +0000 Received: by mail-pg1-x532.google.com with SMTP id t14-v6so1253861pgf.0 for ; Mon, 20 Aug 2018 23:26:27 -0700 (PDT) From: Andrey Smirnov Date: Mon, 20 Aug 2018 23:25:44 -0700 Message-Id: <20180821062603.17393-4-andrew.smirnov@gmail.com> In-Reply-To: <20180821062603.17393-1-andrew.smirnov@gmail.com> References: <20180821062603.17393-1-andrew.smirnov@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH 03/22] filetype: Add code to detect i.MX image v2 To: barebox@lists.infradead.org Cc: Andrey Smirnov Modify file_detect_type() and add code needed to be able to detect i.MX boot images with v2 header. Signed-off-by: Andrey Smirnov --- common/filetype.c | 4 ++++ include/filetype.h | 1 + 2 files changed, 5 insertions(+) diff --git a/common/filetype.c b/common/filetype.c index f68a83bec..aaeea96d9 100644 --- a/common/filetype.c +++ b/common/filetype.c @@ -74,6 +74,7 @@ static const struct filetype_str filetype_str[] = { [filetype_arm64_linux_image] = { "ARM aarch64 Linux image", "aarch64-linux" }, [filetype_elf] = { "ELF", "elf" }, [filetype_imx_image_v1] = { "i.MX image (v1)", "imx-image-v1" }, + [filetype_imx_image_v2] = { "i.MX image (v2)", "imx-image-v2" }, }; const char *file_type_to_string(enum filetype f) @@ -368,6 +369,9 @@ enum filetype file_detect_type(const void *_buf, size_t bufsize) if (imx_flash_header->dcd_barker == DCD_BARKER) return filetype_imx_image_v1; + if (is_imx_flash_header_v2(_buf)) + return filetype_imx_image_v2; + return filetype_unknown; } diff --git a/include/filetype.h b/include/filetype.h index e2df5fabf..395053dd5 100644 --- a/include/filetype.h +++ b/include/filetype.h @@ -44,6 +44,7 @@ enum filetype { filetype_arm64_linux_image, filetype_elf, filetype_imx_image_v1, + filetype_imx_image_v2, filetype_max, }; -- 2.17.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox