From 23116c95c7583962a8ff2862c07f984aa98cf781 Mon Sep 17 00:00:00 2001 From: "Koushik K. Dutta" Date: Tue, 16 Mar 2010 11:56:01 -0700 Subject: [PATCH] readd /sdcard to mount menu --- Android.mk | 2 +- extendedcommands.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Android.mk b/Android.mk index e74eae9..2a915d4 100644 --- a/Android.mk +++ b/Android.mk @@ -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. diff --git a/extendedcommands.c b/extendedcommands.c index 52f62fb..23c15ef 100644 --- a/extendedcommands.c +++ b/extendedcommands.c @@ -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 (;;)