From 4e0e3fcfdb4f769121678d9bcc28ed3f77b5a36c Mon Sep 17 00:00:00 2001 From: that Date: Mon, 13 Apr 2015 19:52:49 +0200 Subject: bootloader: align with AOSP code - Define a minimal Volume structure so that AOSP code for handling /misc works in TWRP without major changes. - Remove set/get_bootloader_message_*_name Change-Id: Ifcee59568141a184adebb94b8ef8beca072a7942 --- twrp.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'twrp.cpp') diff --git a/twrp.cpp b/twrp.cpp index ab57f3713..0c012d7ec 100644 --- a/twrp.cpp +++ b/twrp.cpp @@ -171,11 +171,9 @@ int main(int argc, char **argv) { TWPartition* misc = PartitionManager.Find_Partition_By_Path("/misc"); if (misc != NULL) { if (misc->Current_File_System == "emmc") { - set_device_type('e'); - set_device_name(misc->Actual_Block_Device.c_str()); + set_misc_device("emmc", misc->Actual_Block_Device.c_str()); } else if (misc->Current_File_System == "mtd") { - set_device_type('m'); - set_device_name(misc->MTD_Name.c_str()); + set_misc_device("mtd", misc->MTD_Name.c_str()); } else { LOGERR("Unknown file system for /misc\n"); } -- cgit v1.2.3