Changes root= line in windcharger bootcmd.

Now boots into either rootfs0 or rootfs1 instead of a numbered
partition.

Change-Id: Ibb19205928e6df035b2fe7fb2f863412d80b4e52
diff --git a/include/configs/board953x.h b/include/configs/board953x.h
index fd9f969..d5595fb 100755
--- a/include/configs/board953x.h
+++ b/include/configs/board953x.h
@@ -317,11 +317,11 @@
 #			define __WC_READ_EXT " read_ext 0x82060000 0x1d90000 0x160000 "
 #			define CONFIG_BOOTCOMMAND	\
 __if_booting_to_partition_2 \
-    "setenv bootargs " __WC_BOOTARGS_CONSOLE " root=31:11 " __WC_BOOTARGS_PART_DEFS \
+    "setenv bootargs " __WC_BOOTARGS_CONSOLE " root=rootfs1 " __WC_BOOTARGS_PART_DEFS \
        "&&" __WC_READ_EXT \
        "&& bootm 0x82060000;" \
 __else \
-    "setenv bootargs " __WC_BOOTARGS_CONSOLE " root=31:06 " __WC_BOOTARGS_PART_DEFS \
+    "setenv bootargs " __WC_BOOTARGS_CONSOLE " root=rootfs0 " __WC_BOOTARGS_PART_DEFS \
        "&& bootm 0x9fe70000;" \
 __endif