mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 06:55:22 +00:00
This adds the bits so that we can use qemu_x86_tiny for coverage, as this is currently the only board that can do demand paging. This uses the board revision as a way to specify the RAM size as coverage requires more memory available to store the coverage data. By piggybacking onto board revision, this avoids adding another board config just for coverage. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
11 lines
169 B
Plaintext
11 lines
169 B
Plaintext
/*
|
|
* Copyright (c) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* Override with 768KB DRAM */
|
|
&dram0 {
|
|
reg = < 0x100000 DT_SIZE_K(768) >;
|
|
};
|