Read bug fixed. Now "nand bad" list the badblocks correctly (i hope, since
there are 0)
diff --git a/board/delta/nand.c b/board/delta/nand.c
index 7255827..50d2ec2 100644
--- a/board/delta/nand.c
+++ b/board/delta/nand.c
@@ -69,8 +69,11 @@
 
 	/* if there are any, first copy multiple of 4 bytes */
 	if(num_words) {
-		for(i=0; i<num_words; i+=4)
-			buf[i] = NDDB;
+		for(i=0; i<num_words; i+=4) {
+			unsigned long *long_buf = &buf[i];
+/* 			((unsigned long *) &buf[i]) = NDDB; */
+			*long_buf = NDDB;
+		}
 	}
 	
 	/* ...then the rest */