readd /sdcard to mount menu
diff --git a/Android.mk b/Android.mk
index e74eae9..2a915d4 100644
--- a/Android.mk
+++ b/Android.mk
@@ -26,7 +26,7 @@
 
 LOCAL_FORCE_STATIC_EXECUTABLE := true
 
-RECOVERY_API_VERSION := 1.7.1
+RECOVERY_API_VERSION := 1.7.2
 LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
 
 # This binary is in the recovery ramdisk, which is otherwise a copy of root.
diff --git a/extendedcommands.c b/extendedcommands.c
index 52f62fb..23c15ef 100644
--- a/extendedcommands.c
+++ b/extendedcommands.c
@@ -385,7 +385,8 @@
     string mounts[3][3] = { 
         { "mount /system", "unmount /system", "SYSTEM:" },
         { "mount /data", "unmount /data", "DATA:" },
-        { "mount /cache", "unmount /cache", "CACHE:" }
+        { "mount /cache", "unmount /cache", "CACHE:" },
+        { "mount /sdcard", "unmount /sdcard", "SDCARD:" }
         };
         
     for (;;)