You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

92 lines
1.9 KiB

From a2985ca233641f596926314762b5f1085aeaa723 Mon Sep 17 00:00:00 2001
From: Stephane Fillod <f8cfe@free.fr>
Date: Tue, 15 Jan 2019 14:56:15 +0100
Subject: [PATCH] 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>
---
lsmmc.c | 34 ++++++++++++++++++++++++++++++++--
1 file changed, 32 insertions(+), 2 deletions(-)
--- 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 */