From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-pf1-x442.google.com ([2607:f8b0:4864:20::442]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1hY1s1-0002Wq-3G for barebox@lists.infradead.org; Tue, 04 Jun 2019 05:20:26 +0000 Received: by mail-pf1-x442.google.com with SMTP id s11so11928502pfm.12 for ; Mon, 03 Jun 2019 22:20:24 -0700 (PDT) From: Andrey Smirnov Date: Mon, 3 Jun 2019 22:19:57 -0700 Message-Id: <20190604052003.3189-2-andrew.smirnov@gmail.com> In-Reply-To: <20190604052003.3189-1-andrew.smirnov@gmail.com> References: <20190604052003.3189-1-andrew.smirnov@gmail.com> MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , 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 v2 1/7] filetype: Add "U-Boot environmemnt variable data" filetype To: barebox@lists.infradead.org Cc: Andrey Smirnov Signed-off-by: Andrey Smirnov --- common/filetype.c | 2 ++ include/filetype.h | 1 + 2 files changed, 3 insertions(+) diff --git a/common/filetype.c b/common/filetype.c index e2d707b15..429911533 100644 --- a/common/filetype.c +++ b/common/filetype.c @@ -77,6 +77,8 @@ static const struct filetype_str filetype_str[] = { [filetype_imx_image_v2] = { "i.MX image (v2)", "imx-image-v2" }, [filetype_layerscape_image] = { "Layerscape image", "layerscape-PBL" }, [filetype_layerscape_qspi_image] = { "Layerscape QSPI image", "layerscape-qspi-PBL" }, + [filetype_ubootvar] = { "U-Boot environmemnt variable data", + "ubootvar" }, }; const char *file_type_to_string(enum filetype f) diff --git a/include/filetype.h b/include/filetype.h index dcb331a6c..f1be04e81 100644 --- a/include/filetype.h +++ b/include/filetype.h @@ -47,6 +47,7 @@ enum filetype { filetype_imx_image_v2, filetype_layerscape_image, filetype_layerscape_qspi_image, + filetype_ubootvar, filetype_max, }; -- 2.21.0 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox