-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Description
EDIT: This attempt does not really work or only sometimes.
For any future reader:
To get this example working on a Raspberry Pi 2 B i had to replace this function:
uintptr_t virtToUncachedPhys(void *virt, int pagemapfd) {
return virtToPhys(virt, pagemapfd) | 0x40000000;
}with
uintptr_t virtToUncachedPhys(void *virt, int pagemapfd) {
return virtToPhys(virt, pagemapfd) & ~0xC0000000;
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels