Manually enumerate more files to allow odrefresh to complete

This is temporary. Once the fs-verity manifest mapping file is available
in the VM, we'll read the list from there.

Bug: 206869687
Test: with local changes, odrefresh completed in the VM
Change-Id: I6a9611b18aa49b8705d8ad15b767fd98723ccc62
diff --git a/authfs/src/main.rs b/authfs/src/main.rs
index f0c94c5..0bc71ce 100644
--- a/authfs/src/main.rs
+++ b/authfs/src/main.rs
@@ -254,8 +254,17 @@
 
         // TODO(206869687): Read actual path from config.mapping_file_path when it's generated.
         let paths = vec![
+            Path::new("/system/framework/com.android.location.provider.jar"),
+            Path::new("/system/framework/ethernet-service.jar"),
+            Path::new("/system/framework/ext.jar"),
+            Path::new("/system/framework/framework-graphics.jar"),
             Path::new("/system/framework/framework.jar"),
+            Path::new("/system/framework/ims-common.jar"),
             Path::new("/system/framework/services.jar"),
+            Path::new("/system/framework/telephony-common.jar"),
+            Path::new("/system/framework/voip-common.jar"),
+            Path::new("/system/etc/boot-image.prof"),
+            Path::new("/system/etc/dirty-image-objects"),
         ];
 
         for path in &paths {