r1691 - in trunk

dslinux_amadeus at dslinux.in-berlin.de dslinux_amadeus at dslinux.in-berlin.de
Fri Mar 9 21:14:45 CET 2007


Author: amadeus
Date: 2007-03-09 21:14:39 +0100 (Fri, 09 Mar 2007)
New Revision: 1691

Log:
Add DLDI target to DSLINUX



Modified: trunk/bulkbuild.sh
===================================================================
--- trunk/bulkbuild.sh	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/bulkbuild.sh	2007-03-09 20:14:39 UTC (rev 1691)
@@ -38,7 +38,7 @@
 
 OUTDIR=${OUTDIR:-"./bulkbuild"}
 
-for build in DSGBA DSMEM GBAMP GBAMP_EXT2 NDS RAM
+for build in DSGBA DSMEM GBAMP GBAMP_EXT2 NDS RAM DLDI
 do
 	if [ "$build" = "GBAMP_EXT2" ]
 	then
@@ -76,6 +76,9 @@
 		;;	
 		RAM)
 			distfile=dslinux-ram.tgz
+		;;	
+		DLDI)
+			distfile=dslinux-dldi.tgz
 		;;
 		*)
 			echo

Modified: trunk/linux-2.6.x/drivers/block/Kconfig
===================================================================
--- trunk/linux-2.6.x/drivers/block/Kconfig	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/linux-2.6.x/drivers/block/Kconfig	2007-03-09 20:14:39 UTC (rev 1691)
@@ -26,6 +26,13 @@
 	tristate "Atari floppy support"
 	depends on ATARI
 
+config NDS_DLDI
+	tristate "Nintendo DS DLDI Interface support"
+	depends on ARCH_NDS
+	help
+	  Say Y here to if you want to access your NDS flash card memory
+          via the DLDI interface at /dev/hdax. 
+
 config BLK_DEV_SWIM_IOP
 	bool "Macintosh IIfx/Quadra 900/Quadra 950 floppy support (EXPERIMENTAL)"
 	depends on MAC && EXPERIMENTAL && BROKEN

Modified: trunk/linux-2.6.x/drivers/block/Makefile
===================================================================
--- trunk/linux-2.6.x/drivers/block/Makefile	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/linux-2.6.x/drivers/block/Makefile	2007-03-09 20:14:39 UTC (rev 1691)
@@ -14,6 +14,7 @@
 #
 
 obj-y	:= elevator.o ll_rw_blk.o ioctl.o genhd.o scsi_ioctl.o
+dldi-y  := dldi_c.o dldi_s.o
 
 obj-$(CONFIG_IOSCHED_NOOP)	+= noop-iosched.o
 obj-$(CONFIG_IOSCHED_AS)	+= as-iosched.o
@@ -44,4 +45,4 @@
 obj-$(CONFIG_VIODASD)		+= viodasd.o
 obj-$(CONFIG_BLK_DEV_SX8)	+= sx8.o
 obj-$(CONFIG_BLK_DEV_UB)	+= ub.o
-
+obj-$(CONFIG_NDS_DLDI)		+= dldi.o

Added: trunk/linux-2.6.x/drivers/block/dldi_c.c

Added: trunk/linux-2.6.x/drivers/block/dldi_s.S

Modified: trunk/vendors/Nintendo/DATEL/config.linux-2.6.x
===================================================================
--- trunk/vendors/Nintendo/DATEL/config.linux-2.6.x	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/vendors/Nintendo/DATEL/config.linux-2.6.x	2007-03-09 20:14:39 UTC (rev 1691)
@@ -344,6 +344,7 @@
 # CONFIG_BLK_DEV_RAM is not set
 CONFIG_BLK_DEV_RAM_COUNT=16
 # CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_NDS_DLDI is not set
 
 #
 # IO Schedulers

Added: trunk/vendors/Nintendo/DLDI/Makefile

Added: trunk/vendors/Nintendo/DLDI/config.arch

Added: trunk/vendors/Nintendo/DLDI/config.linux-2.6.x

Added: trunk/vendors/Nintendo/DLDI/config.uClibc

Added: trunk/vendors/Nintendo/DLDI/config.vendor

Added: trunk/vendors/Nintendo/DLDI/inittab

Added: trunk/vendors/Nintendo/DLDI/issue

Added: trunk/vendors/Nintendo/DLDI/rc

Modified: trunk/vendors/Nintendo/DSGBA/config.linux-2.6.x
===================================================================
--- trunk/vendors/Nintendo/DSGBA/config.linux-2.6.x	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/vendors/Nintendo/DSGBA/config.linux-2.6.x	2007-03-09 20:14:39 UTC (rev 1691)
@@ -345,6 +345,7 @@
 # CONFIG_BLK_DEV_RAM is not set
 CONFIG_BLK_DEV_RAM_COUNT=16
 # CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_NDS_DLDI is not set
 
 #
 # IO Schedulers

Modified: trunk/vendors/Nintendo/DSMEM/config.linux-2.6.x
===================================================================
--- trunk/vendors/Nintendo/DSMEM/config.linux-2.6.x	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/vendors/Nintendo/DSMEM/config.linux-2.6.x	2007-03-09 20:14:39 UTC (rev 1691)
@@ -345,6 +345,7 @@
 # CONFIG_BLK_DEV_RAM is not set
 CONFIG_BLK_DEV_RAM_COUNT=16
 # CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_NDS_DLDI is not set
 
 #
 # IO Schedulers

Modified: trunk/vendors/Nintendo/GBAMP/config.linux-2.6.x
===================================================================
--- trunk/vendors/Nintendo/GBAMP/config.linux-2.6.x	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/vendors/Nintendo/GBAMP/config.linux-2.6.x	2007-03-09 20:14:39 UTC (rev 1691)
@@ -344,6 +344,7 @@
 # CONFIG_BLK_DEV_RAM is not set
 CONFIG_BLK_DEV_RAM_COUNT=16
 # CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_NDS_DLDI is not set
 
 #
 # IO Schedulers

Modified: trunk/vendors/Nintendo/GBAMP-EXT2/config.linux-2.6.x
===================================================================
--- trunk/vendors/Nintendo/GBAMP-EXT2/config.linux-2.6.x	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/vendors/Nintendo/GBAMP-EXT2/config.linux-2.6.x	2007-03-09 20:14:39 UTC (rev 1691)
@@ -344,6 +344,7 @@
 # CONFIG_BLK_DEV_RAM is not set
 CONFIG_BLK_DEV_RAM_COUNT=16
 # CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_NDS_DLDI is not set
 
 #
 # IO Schedulers

Modified: trunk/vendors/Nintendo/NDS/config.linux-2.6.x
===================================================================
--- trunk/vendors/Nintendo/NDS/config.linux-2.6.x	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/vendors/Nintendo/NDS/config.linux-2.6.x	2007-03-09 20:14:39 UTC (rev 1691)
@@ -344,6 +344,7 @@
 # CONFIG_BLK_DEV_RAM is not set
 CONFIG_BLK_DEV_RAM_COUNT=16
 # CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_NDS_DLDI is not set
 
 #
 # IO Schedulers

Modified: trunk/vendors/Nintendo/RAM/config.linux-2.6.x
===================================================================
--- trunk/vendors/Nintendo/RAM/config.linux-2.6.x	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/vendors/Nintendo/RAM/config.linux-2.6.x	2007-03-09 20:14:39 UTC (rev 1691)
@@ -344,6 +344,7 @@
 # CONFIG_BLK_DEV_RAM is not set
 CONFIG_BLK_DEV_RAM_COUNT=16
 # CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_NDS_DLDI is not set
 
 #
 # IO Schedulers

Modified: trunk/vendors/Nintendo/RAM-DEVEL/config.linux-2.6.x
===================================================================
--- trunk/vendors/Nintendo/RAM-DEVEL/config.linux-2.6.x	2007-02-10 13:06:20 UTC (rev 1690)
+++ trunk/vendors/Nintendo/RAM-DEVEL/config.linux-2.6.x	2007-03-09 20:14:39 UTC (rev 1691)
@@ -345,6 +345,7 @@
 # CONFIG_BLK_DEV_RAM is not set
 CONFIG_BLK_DEV_RAM_COUNT=16
 # CONFIG_CDROM_PKTCDVD is not set
+# CONFIG_NDS_DLDI is not set
 
 #
 # IO Schedulers




More information about the dslinux-commit mailing list