Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6e5dfaae authored by Alexey Frunze's avatar Alexey Frunze
Browse files

MIPS: Adjust LibartImgDeviceBaseAddress() for CC GC.

The concurrent copying GC allocates large contiguous
space at low addresses. This moves the image(s) out
of the way to higher addresses.

Test: booted MIPS32R2 in QEMU
Test: booted MIPS64 (with 2nd arch MIPS32R2) in QEMU

Change-Id: I1c54e6142844ab1ad7820765ae313650e9ab8875
parent 32508796
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -439,7 +439,7 @@ func (c *config) LibartImgDeviceBaseAddress() string {
	default:
		return "0x70000000"
	case Mips, Mips64:
		return "0x30000000"
		return "0x64000000"
	}
}