fix driver looking for recovery, rather than checking the basename. fix badness in nandroid menu generation.

Change-Id: I7d7011e36583509f07534e4bc85ed8d567022d3e
This commit is contained in:
Koushik Dutta 2011-10-28 11:47:02 -07:00
parent 89ed0b7355
commit 4fcd523ded
2 changed files with 2 additions and 2 deletions

View File

@ -804,7 +804,7 @@ void show_nandroid_menu()
};
if (volume_for_path("/emmc") == NULL)
INSTALL_MENU_ITEMS[3] = NULL;
list[3] = NULL;
int chosen_item = get_menu_selection(headers, list, 0, 0);
switch (chosen_item)

View File

@ -767,7 +767,7 @@ print_property(const char *key, const char *name, void *cookie) {
int
main(int argc, char **argv) {
if (strstr(argv[0], "recovery") == NULL)
if (strcmp(basename(argv[0]), "recovery") != 0)
{
if (strstr(argv[0], "flash_image") != NULL)
return flash_image_main(argc, argv);