Remove linkerconfig from bionic list.

Note that the list is used to install symlinks to com.android.runtime
and also install "bootstrap" copy in subdir.

We don't need bootstrap/linkerconfig since linker itself provides a
default config for those early processes.

This removes both symlink and bootstrap copy from /system.

Bug: 260982509
Bug: 262330207
Test: MicrodroidAppTest
Test: vm run-microdroid
Change-Id: I7c62db96bd3acc91214340d4beed9b561ff6663f
This commit is contained in:
Jooyung Han 2022-12-13 18:29:44 +09:00
parent 6916999cd0
commit bff7335056

View file

@ -1440,7 +1440,7 @@ func (c *Module) ExcludeFromRecoverySnapshot() bool {
func isBionic(name string) bool {
switch name {
case "libc", "libm", "libdl", "libdl_android", "linker", "linkerconfig":
case "libc", "libm", "libdl", "libdl_android", "linker":
return true
}
return false