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.

97 lines
2.0 KiB

  1. From c9c90f4f74ee5318ee9a2f581b665d474f6f90c5 Mon Sep 17 00:00:00 2001
  2. From: Stephane Fillod <f8cfe@free.fr>
  3. Date: Tue, 15 Jan 2019 14:56:15 +0100
  4. Subject: [PATCH 7/9] Add various SD/eMMC vendors to table
  5. Part if this list update comes from a compilation of this web site[1].
  6. [1] https://www.cameramemoryspeed.com/sd-memory-card-faq/reading-sd-card-cid-serial-psn-internal-numbers/
  7. Signed-off-by: Stephane Fillod <f8cfe@free.fr>
  8. ---
  9. lsmmc.c | 34 ++++++++++++++++++++++++++++++++--
  10. 1 file changed, 32 insertions(+), 2 deletions(-)
  11. diff --git a/lsmmc.c b/lsmmc.c
  12. index b627b79..63504d2 100644
  13. --- a/lsmmc.c
  14. +++ b/lsmmc.c
  15. @@ -112,7 +112,7 @@ struct ids_database database[] = {
  16. {
  17. .type = "sd",
  18. .id = 0x1b,
  19. - .manufacturer = "Transcend",
  20. + .manufacturer = "Transcend/Samsung",
  21. },
  22. {
  23. .type = "sd",
  24. @@ -122,7 +122,7 @@ struct ids_database database[] = {
  25. {
  26. .type = "sd",
  27. .id = 0x1d,
  28. - .manufacturer = "Corsair",
  29. + .manufacturer = "Corsair/AData",
  30. },
  31. {
  32. .type = "sd",
  33. @@ -134,6 +134,11 @@ struct ids_database database[] = {
  34. .id = 0x1f,
  35. .manufacturer = "Kingston",
  36. },
  37. + {
  38. + .type = "sd",
  39. + .id = 0x27,
  40. + .manufacturer = "Delkin/Phison",
  41. + },
  42. {
  43. .type = "sd",
  44. .id = 0x28,
  45. @@ -144,6 +149,11 @@ struct ids_database database[] = {
  46. .id = 0x30,
  47. .manufacturer = "SanDisk",
  48. },
  49. + {
  50. + .type = "sd",
  51. + .id = 0x31,
  52. + .manufacturer = "Silicon Power",
  53. + },
  54. {
  55. .type = "sd",
  56. .id = 0x33,
  57. @@ -159,6 +169,21 @@ struct ids_database database[] = {
  58. .id = 0x6f,
  59. .manufacturer = "STMicroelectronics",
  60. },
  61. + {
  62. + .type = "sd",
  63. + .id = 0x74,
  64. + .manufacturer = "Transcend",
  65. + },
  66. + {
  67. + .type = "sd",
  68. + .id = 0x76,
  69. + .manufacturer = "Patriot",
  70. + },
  71. + {
  72. + .type = "sd",
  73. + .id = 0x82,
  74. + .manufacturer = "Gobe/Sony",
  75. + },
  76. {
  77. .type = "sd",
  78. .id = 0x89,
  79. @@ -224,6 +249,11 @@ struct ids_database database[] = {
  80. .id = 0x70,
  81. .manufacturer = "Kingston",
  82. },
  83. + {
  84. + .type = "mmc",
  85. + .id = 0xfe,
  86. + .manufacturer = "Micron",
  87. + },
  88. };
  89. /* Command line parsing functions */
  90. --
  91. 2.17.1