Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
13 lines
358 B
C
13 lines
358 B
C
/*
|
|
* arch/arm/include/asm/memory.h
|
|
* TASK_UNMAPPED_BASE ALIGN(TASK_SIZE / 3, SZ_16M)
|
|
* TASK_SIZE CONFIG_PAGE_OFFSET
|
|
* CONFIG_PAGE_OFFSET 0xC0000000 (default in Kconfig)
|
|
*/
|
|
#define TASK_UNMAPPED_BASE 0x40000000
|
|
|
|
/* arch/arm/include/asm/elf.h */
|
|
#define ELF_ET_DYN_BASE 0x00400000
|
|
|
|
#include "../generic/target_mman.h"
|