aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephane Fillod <f8cfe@free.fr>2019-01-15 14:56:15 +0100
committerUlf Hansson <ulf.hansson@linaro.org>2021-03-30 15:28:10 +0200
commit5edc6a4ed1929820ec8aee148fcea916d3854cf0 (patch)
tree468e245cf5f05e57b5304120e4c3afe0f1a17da9
parent51434a7ab243dbb9334f85d73d3c1727f6de330a (diff)
downloadmmc-utils-5edc6a4ed1929820ec8aee148fcea916d3854cf0.tar.gz
Add various SD/eMMC vendors to table
Part if this list update comes from a compilation of this web site[1]. [1] https://www.cameramemoryspeed.com/sd-memory-card-faq/reading-sd-card-cid-serial-psn-internal-numbers/ Signed-off-by: Stephane Fillod <f8cfe@free.fr> Link: https://lore.kernel.org/r/886907785.16708970.1547560575203.JavaMail.root@zimbra64-e11.priv.proxad.net Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r--lsmmc.c34
1 files changed, 32 insertions, 2 deletions
diff --git a/lsmmc.c b/lsmmc.c
index b627b79..63504d2 100644
--- a/lsmmc.c
+++ b/lsmmc.c
@@ -112,7 +112,7 @@ struct ids_database database[] = {
{
.type = "sd",
.id = 0x1b,
- .manufacturer = "Transcend",
+ .manufacturer = "Transcend/Samsung",
},
{
.type = "sd",
@@ -122,7 +122,7 @@ struct ids_database database[] = {
{
.type = "sd",
.id = 0x1d,
- .manufacturer = "Corsair",
+ .manufacturer = "Corsair/AData",
},
{
.type = "sd",
@@ -136,6 +136,11 @@ struct ids_database database[] = {
},
{
.type = "sd",
+ .id = 0x27,
+ .manufacturer = "Delkin/Phison",
+ },
+ {
+ .type = "sd",
.id = 0x28,
.manufacturer = "Lexar",
},
@@ -146,6 +151,11 @@ struct ids_database database[] = {
},
{
.type = "sd",
+ .id = 0x31,
+ .manufacturer = "Silicon Power",
+ },
+ {
+ .type = "sd",
.id = 0x33,
.manufacturer = "STMicroelectronics",
},
@@ -161,6 +171,21 @@ struct ids_database database[] = {
},
{
.type = "sd",
+ .id = 0x74,
+ .manufacturer = "Transcend",
+ },
+ {
+ .type = "sd",
+ .id = 0x76,
+ .manufacturer = "Patriot",
+ },
+ {
+ .type = "sd",
+ .id = 0x82,
+ .manufacturer = "Gobe/Sony",
+ },
+ {
+ .type = "sd",
.id = 0x89,
.manufacturer = "Unknown",
},
@@ -224,6 +249,11 @@ struct ids_database database[] = {
.id = 0x70,
.manufacturer = "Kingston",
},
+ {
+ .type = "mmc",
+ .id = 0xfe,
+ .manufacturer = "Micron",
+ },
};
/* Command line parsing functions */