mtd/drivers/mtd cmdline.c,NONE,1.1 Config.in,1.73,1.74 GNUmakefile,1.10,1.11 Makefile,1.65,1.66 bootldr.c,1.8,NONE
Marius Groeger
mag at infradead.org
Tue Apr 23 09:52:17 EDT 2002
Update of /home/cvs/mtd/drivers/mtd
In directory phoenix.infradead.org:/tmp/cvs-serv20394/drivers/mtd
Modified Files:
Config.in GNUmakefile Makefile
Added Files:
cmdline.c
Removed Files:
bootldr.c
Log Message:
Add support for generic kernel command line partition table
configuration. Replaces drivers/mtd/bootldr.c.
Replace drivers/mtd/bootldr.c by drivers/mtd/cmdline.c
Replace CONFIG_MTD_BOOTLDR_PARTS by CONFIG_MTD_CMDLINE_PARTS
Add Configure.help entry.
Remove extra tab in drivers/mtd/Makefile
***** Error reading new file: [Errno 2] No such file or directory: 'cmdline.c'
Index: Config.in
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/Config.in,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- Config.in 8 Mar 2002 16:34:35 -0000 1.73
+++ Config.in 23 Apr 2002 13:52:14 -0000 1.74
@@ -14,8 +14,8 @@
dep_tristate ' MTD partitioning support' CONFIG_MTD_PARTITIONS $CONFIG_MTD
dep_tristate ' MTD concatenating support' CONFIG_MTD_CONCAT $CONFIG_MTD
dep_tristate ' RedBoot partition table parsing' CONFIG_MTD_REDBOOT_PARTS $CONFIG_MTD_PARTITIONS
+ dep_tristate ' Command line partition table parsing' CONFIG_MTD_CMDLINE_PARTS $CONFIG_MTD_PARTITIONS
if [ "$CONFIG_ARM" = "y" ]; then
- dep_tristate ' Compaq bootldr partition table parsing' CONFIG_MTD_BOOTLDR_PARTS $CONFIG_MTD_PARTITIONS
dep_tristate ' ARM Firmware Suite partition parsing' CONFIG_MTD_AFS_PARTS $CONFIG_MTD_PARTITIONS
fi
Index: GNUmakefile
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/GNUmakefile,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- GNUmakefile 3 Jan 2002 15:00:54 -0000 1.10
+++ GNUmakefile 23 Apr 2002 13:52:14 -0000 1.11
@@ -30,7 +30,6 @@
CONFIG_MTD := m
CONFIG_MTD_PARTITIONS := m
CONFIG_MTD_REDBOOT_PARTS := m
-#CONFIG_MTD_BOOTLDR_PARTS := m
CONFIG_MTD_AFS_PARTS := m
CONFIG_MTD_CHAR := m
CONFIG_MTD_BLOCK := m
Index: Makefile
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/Makefile,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- Makefile 22 Mar 2002 07:10:34 -0000 1.65
+++ Makefile 23 Apr 2002 13:52:14 -0000 1.66
@@ -19,7 +19,7 @@
O_TARGET := mtdlink.o
-export-objs := mtdcore.o mtdpart.o redboot.o bootldr.o afs.o mtdconcat.o
+export-objs := mtdcore.o mtdpart.o redboot.o cmdline.o afs.o mtdconcat.o
list-multi := nftl.o
mod-subdirs :=
@@ -44,10 +44,10 @@
# Core functionality.
obj-$(CONFIG_MTD) += mtdcore.o
-obj-$(CONFIG_MTD_CONCAT) += mtdconcat.o
+obj-$(CONFIG_MTD_CONCAT) += mtdconcat.o
obj-$(CONFIG_MTD_PARTITIONS) += mtdpart.o
obj-$(CONFIG_MTD_REDBOOT_PARTS) += redboot.o
-obj-$(CONFIG_MTD_BOOTLDR_PARTS) += bootldr.o
+obj-$(CONFIG_MTD_CMDLINE_PARTS) += cmdline.o
obj-$(CONFIG_MTD_AFS_PARTS) += afs.o
# 'Users' - code which presents functionality to userspace.
--- bootldr.c DELETED ---
More information about the linux-mtd-cvs
mailing list