mdm9615: Add support to include/exclude FOTA partitions

Update partition table names with FOTA partitions

The nand partition table can include FOTA partitions or exclude
them. Pass appropriate partition information to the kernel.

Assume all or none rule to check for the presence of
FOTA partitions.

Change-Id: I33c3819f1a1a579226a07edbf1955aedfd8bc5cd

Conflicts:

	target/mdm9615/init.c
diff --git a/app/aboot/aboot.c b/app/aboot/aboot.c
index e3946ef..467bf2c 100644
--- a/app/aboot/aboot.c
+++ b/app/aboot/aboot.c
@@ -1081,8 +1081,10 @@
 		}
 	}
 
-	if (!strcmp(ptn->name, "system") || !strcmp(ptn->name, "userdata")
-	    || !strcmp(ptn->name, "persist")) {
+	if (!strcmp(ptn->name, "system") 
+		|| !strcmp(ptn->name, "userdata")
+		|| !strcmp(ptn->name, "persist")
+		|| !strcmp(ptn->name, "recoveryfs")) {
 		if (flash_ecc_bch_enabled())
 			/* Spare data bytes for 8 bit ECC increased by 4 */
 			extra = ((page_size >> 9) * 20);