partition: Set default values for modern partitions

* Ref: https://source.android.com/docs/core/architecture/partitions

Change-Id: Id09945cecb7eafb0b6cee102de276cda47e99562
diff --git a/partition.cpp b/partition.cpp
index cbc4367..e330aa0 100755
--- a/partition.cpp
+++ b/partition.cpp
@@ -540,6 +540,18 @@
 			Display_Name = "Vendor";
 			Backup_Display_Name = Display_Name;
 			Storage_Name = Display_Name;
+		} else if (Mount_Point == "/metadata") {
+			Display_Name = "Metadata";
+			Backup_Display_Name = Display_Name;
+			Storage_Name = Display_Name;
+		} else if (Mount_Point == "/odm_dlkm") {
+			Display_Name = "ODM DLKM";
+			Backup_Display_Name = Display_Name;
+			Storage_Name = Display_Name;
+		} else if (Mount_Point == "/vendor_dlkm") {
+			Display_Name = "Vendor DLKM";
+			Backup_Display_Name = Display_Name;
+			Storage_Name = Display_Name;
 		}
 #ifdef TW_EXTERNAL_STORAGE_PATH
 		if (Mount_Point == EXPAND(TW_EXTERNAL_STORAGE_PATH)) {
@@ -576,6 +588,11 @@
 			Backup_Display_Name = Display_Name;
 			Can_Be_Backed_Up = true;
 			Can_Flash_Img = true;
+		} else if (Mount_Point == "/init_boot") {
+			Display_Name = "Init Boot";
+			Backup_Display_Name = Display_Name;
+			Can_Be_Backed_Up = true;
+			Can_Flash_Img = true;
 		} else if (Mount_Point == "/recovery") {
 			Display_Name = "Recovery";
 			Backup_Display_Name = Display_Name;