readd /sdcard to mount menu

This commit is contained in:
Koushik K. Dutta 2010-03-16 11:56:01 -07:00
parent 3fb8d302f4
commit 23116c95c7
2 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@ LOCAL_MODULE := recovery
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.

View File

@ -385,7 +385,8 @@ void show_mount_menu()
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 (;;)