mtd/drivers/mtd/maps Kconfig,1.1,1.2 arctic-mtd.c,1.1,1.2 beech-mtd.c,1.1,1.2 ebony.c,1.1,1.2

Marius Groeger mag at infradead.org
Thu Jan 30 06:03:47 EST 2003


Update of /home/cvs/mtd/drivers/mtd/maps
In directory phoenix.infradead.org:/tmp/cvs-serv26117

Modified Files:
	Kconfig arctic-mtd.c beech-mtd.c ebony.c 
Log Message:
Added Kconfig entries for Arctic/Beech/Ebony
Added some Kconfig dependencies to match Config.in
Added CVS Ids for Arctic/Beech/Ebony mapping drivers


Index: Kconfig
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/maps/Kconfig,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Kconfig	26 Nov 2002 22:30:31 -0000	1.1
+++ Kconfig	30 Jan 2003 11:03:45 -0000	1.2
@@ -160,7 +160,7 @@
 
 config MTD_RPXLITE
 	tristate "CFI Flash device mapped on RPX Lite or CLLF"
-	depends on MTD_CFI && PPC
+	depends on MTD_CFI && 8xx && PPC
 	help
 	  The RPXLite PowerPC board has CFI-compliant chips mapped in
 	  a strange sparse mapping. This 'mapping' driver supports that
@@ -168,9 +168,17 @@
 	  to communicate with the chips on the RPXLite board. More at
 	  <http://www.embeddedplanet.com/rpx_lite_specification_sheet.htm>.
 
+config MTD_MBX860
+	tristate "System flash on MBX860 board"
+	depends on PPC32 && 8xx && MTD_CFI
+	help
+	  This enables access routines for the flash chips on the Motorola
+	  MBX860 board. If you have one of these boards and would like
+	  to use the flash chips on it, say 'Y'.
+
 config MTD_DBOX2
 	tristate "CFI Flash device mapped on D-Box2"
-	depends on PPC && MTD_CFI_INTELSTD && MTD_CFI_INTELEXT && MTD_CFI_AMDSTD
+	depends on PPC32 && 8xx && MTD_CFI_INTELSTD && MTD_CFI_INTELEXT && MTD_CFI_AMDSTD
 	help
 	  This enables access routines for the flash chips on the Nokia/Sagem
 	  D-Box 2 board. If you have one of these boards and would like to use
@@ -178,10 +186,34 @@
 
 config MTD_CFI_FLAGADM
 	tristate "CFI Flash device mapping on FlagaDM"
-	depends on PPC && MTD_CFI
+	depends on PPC32 && 8xx && MTD_CFI
 	help
 	  Mapping for the Flaga digital module. If you don´t have one, ignore
 	  this setting.
+
+config MTD_BEECH
+	tristate "CFI Flash device mapped on IBM 405LP Beech"
+	depends on PPC32 && 40x && MTD_CFI
+	help
+	  This enables access routines for the flash chips on the IBM
+	  405LP Beech board. If you have one of these boards and would like
+	  to use the flash chips on it, say 'Y'.
+
+config MTD_ARCTIC
+	tristate "CFI Flash device mapped on IBM 405LP Arctic"
+	depends on PPC32 && 40x && MTD_CFI
+	help
+	  This enables access routines for the flash chips on the IBM 405LP
+	  Arctic board. If you have one of these boards and would like to
+	  use the flash chips on it, say 'Y'.
+
+config MTD_EBONY
+	tristate "CFI Flash device mapped on IBM 440GP Ebony"
+	depends on PPC32 && 440 & MTD_CFI
+	help
+	  This enables access routines for the flash chips on the IBM 440GP
+	  Ebony board. If you have one of these boards and would like to
+	  use the flash chips on it, say 'Y'.
 
 config MTD_CSTM_MIPS_IXX
 	tristate "Flash chip mapping on ITE QED-4N-S01B, Globespan IVR or custom board"

Index: arctic-mtd.c
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/maps/arctic-mtd.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- arctic-mtd.c	30 Jan 2003 08:45:04 -0000	1.1
+++ arctic-mtd.c	30 Jan 2003 11:03:45 -0000	1.2
@@ -1,4 +1,6 @@
 /*
+ * $Id$
+ * 
  * drivers/mtd/maps/arctic-mtd.c MTD mappings and partition tables for 
  *                              IBM 405LP Arctic boards.
  *

Index: beech-mtd.c
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/maps/beech-mtd.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- beech-mtd.c	30 Jan 2003 08:45:04 -0000	1.1
+++ beech-mtd.c	30 Jan 2003 11:03:45 -0000	1.2
@@ -1,4 +1,6 @@
 /*
+ * $Id$
+ * 
  * drivers/mtd/maps/beech-mtd.c MTD mappings and partition tables for 
  *                              IBM 405LP Beech boards.
  *
@@ -171,5 +173,5 @@
 module_exit(cleanup_beech_mtd);
 
 MODULE_LICENSE("GPL");
-MODULE_AUTHOR("Bishop Brock, bcbrock at us.ibm.com");
+MODULE_AUTHOR("Bishop Brock <bcbrock at us.ibm.com>");
 MODULE_DESCRIPTION("MTD map and partitions for IBM 405LP Beech boards");

Index: ebony.c
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/maps/ebony.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ebony.c	30 Jan 2003 08:45:04 -0000	1.1
+++ ebony.c	30 Jan 2003 11:03:45 -0000	1.2
@@ -1,4 +1,6 @@
 /*
+ * $Id$
+ * 
  * Mapping for Ebony user flash
  *
  * Matt Porter <mporter at mvista.com>
@@ -216,6 +218,6 @@
 module_init(init_ebony);
 module_exit(cleanup_ebony);
 
-
 MODULE_LICENSE("GPL");
-MODULE_DESCRIPTION("Ebony flash map");
+MODULE_AUTHOR("Matt Porter <mporter at mvista.com>");
+MODULE_DESCRIPTION("MTD map and partitions for IBM 440GP Ebony boards");





More information about the linux-mtd-cvs mailing list