aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVikram Pandita <vikram.pandita@ti.com>2011-02-02 13:05:10 -0800
committerVikram Pandita <vikram.pandita@ti.com>2011-02-02 13:06:20 -0800
commite59fe26ac2fb5b2fc599cfc76a7618d7fdd7062e (patch)
tree7a03620fbcbb624a7200cc1faa69cd3bfa0d37bd
parent2bcdfc92c4bac65b251639af0b92da0a1cb6023f (diff)
downloadu-boot-pandroid-e59fe26ac2fb5b2fc599cfc76a7618d7fdd7062e.tar.gz
fastboot: blaze: fix format oem break
format oem is not implemented for blaze board yet keep the code compiling for blaze till its really implemented Signed-off-by: Vikram Pandita <vikram.pandita@ti.com>
-rw-r--r--board/omap4430sdp/mmc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/board/omap4430sdp/mmc.c b/board/omap4430sdp/mmc.c
index a3a2c6f4..d187886d 100644
--- a/board/omap4430sdp/mmc.c
+++ b/board/omap4430sdp/mmc.c
@@ -102,3 +102,10 @@ void board_mmc_init(void)
fastboot_flash_add_ptn(&ptn[i]);
#endif
}
+
+int fastboot_oem(const char *cmd)
+{
+ if (!strcmp(cmd,"format"))
+ printf("\nBlze: format oem : not implemented yet\n");
+ return -1;
+}