summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/modules_descr.h
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-04-30 17:23:04 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-04-30 17:23:04 +0000
commit324ebed124c5b0f78a1e343fbbd6ee41c2814b49 (patch)
treea7ef301fd2b693090efc71ad725bd33ecfc589f4 /mdk-stage1/modules_descr.h
parenta0252e4b88e646f21e649a64124870f265b7c45c (diff)
downloaddrakx-324ebed124c5b0f78a1e343fbbd6ee41c2814b49.tar
drakx-324ebed124c5b0f78a1e343fbbd6ee41c2814b49.tar.gz
drakx-324ebed124c5b0f78a1e343fbbd6ee41c2814b49.tar.bz2
drakx-324ebed124c5b0f78a1e343fbbd6ee41c2814b49.tar.xz
drakx-324ebed124c5b0f78a1e343fbbd6ee41c2814b49.zip
Provide some description of the drivers
Diffstat (limited to 'mdk-stage1/modules_descr.h')
-rw-r--r--mdk-stage1/modules_descr.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/mdk-stage1/modules_descr.h b/mdk-stage1/modules_descr.h
new file mode 100644
index 000000000..356605137
--- /dev/null
+++ b/mdk-stage1/modules_descr.h
@@ -0,0 +1,50 @@
+/*
+ * Guillaume Cottenceau (gc@mandrakesoft.com)
+ *
+ * Copyright 2001 MandrakeSoft
+ *
+ * This software may be freely redistributed under the terms of the GNU
+ * public license.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#ifndef _MODULES_DESCR_H_
+#define _MODULES_DESCR_H_
+
+struct module_descr {
+ const char * module;
+ char * descr;
+};
+
+struct module_descr modules_descriptions[] = {
+ /* description of network drivers that have not very explicit names */
+ { "ne", "NE1000/NE2000/clones" },
+ { "ne2k-pci", "PCI NE2000" },
+ { "depca", "DEC DEPCA/DE100/DE101/DE200/DE201/DE202/DE210/DE422" },
+ { "dgrs", "Digi RightSwitch SE-X" },
+ { "ewrk3", "DEC DE203/DE204/DE205" },
+ { "lance", "Allied Telesis AT1500, HP J2405A, NE2100/NE2500" },
+ { "sis900", "SiS 900/7016/630E, Am79c901, RTL8201" },
+ { "via-rhine", "VIA VT86c100A Rhine-II, 3043 Rhine-I" },
+ { "tulip", "DEC 21040-family based cards" },
+ { "wd", "WD8003/WD8013" },
+
+ /* description of scsi drivers that have not very explicit names */
+ { "53c7,8xx", "NCR53c810/700" },
+ { "sim710", "NCR53c710" },
+ { "aic7xxx", "Adaptec 7xxx family (AIC/AHA/etc)" },
+ { "atp870u", "ACARD/ARTOP AEC-6710/6712" },
+ { "ncr53c8xx", "Symbios 53c family" },
+ { "sym53c8xx", "Symbios 53c family" },
+ { "sim710", "NCR53C710 family" },
+
+};
+
+int modules_descriptions_num = sizeof(modules_descriptions) / sizeof(struct module_descr);
+
+
+#endif