fix driver looking for recovery, rather than checking the basename. fix badness in nandroid menu generation.
Change-Id: I7d7011e36583509f07534e4bc85ed8d567022d3e
This commit is contained in:
parent
89ed0b7355
commit
4fcd523ded
@ -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)
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user