From: Artem Bityutskiy Date: Mon, 4 Feb 2008 15:32:01 +0000 (+0200) Subject: mtd_debug: support new flags X-Git-Tag: v1.2.0~62 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=9c71d77506e02a5280b516843521d91196cde451;p=mtd-utils.git mtd_debug: support new flags Signed-off-by: Artem Bityutskiy --- diff --git a/include/mtd/mtd-abi.h b/include/mtd/mtd-abi.h index aaae170..86defe1 100644 --- a/include/mtd/mtd-abi.h +++ b/include/mtd/mtd-abi.h @@ -24,6 +24,7 @@ struct mtd_oob_buf { #define MTD_NORFLASH 3 #define MTD_NANDFLASH 4 #define MTD_DATAFLASH 6 +#define MTD_UBIVOLUME 7 #define MTD_WRITEABLE 0x400 /* Device is writeable */ #define MTD_BIT_WRITEABLE 0x800 /* Single bits can be flipped */ diff --git a/mtd_debug.c b/mtd_debug.c index b44e952..85d48e9 100644 --- a/mtd_debug.c +++ b/mtd_debug.c @@ -272,6 +272,8 @@ int showinfo (int fd) case MTD_DATAFLASH: printf ("MTD_DATAFLASH"); break; + case MTD_UBIVOLUME: + printf ("MTD_UBIVOLUME"); default: printf ("(unknown type - new MTD API maybe?)"); } @@ -298,6 +300,8 @@ int showinfo (int fd) { { "MTD_WRITEABLE", MTD_WRITEABLE }, { "MTD_BIT_WRITEABLE", MTD_BIT_WRITEABLE }, + { "MTD_NO_ERASE", MTD_NO_ERASE }, + { "MTD_STUPID_LOCK", MTD_STUPID_LOCK }, { NULL, -1 } }; for (i = 0; flags[i].name != NULL; i++)