- Reduces the ram disc sector count from 400 to 220. - Saves about 90KB of RAM. All tests still passed. - Allows platforms with less RAM to run the ramdisc_small.overlay test. Signed-off-by: Andrej Butok <andrey.butok@nxp.com>
15 lines
222 B
Plaintext
15 lines
222 B
Plaintext
/*
|
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
ramdisk0 {
|
|
compatible = "zephyr,ram-disk";
|
|
disk-name = "RAM";
|
|
sector-size = <512>;
|
|
sector-count = <220>;
|
|
};
|
|
};
|