summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2024-02-22 15:01:04 +0100
committerArthur Heymans <arthur@aheymans.xyz>2024-02-26 10:10:07 +0000
commit7fbef1b1121bd1073cdbe4c45f7e544921fb8b42 (patch)
tree3ad8909a10f740fd2c45bb4def11c48f3ae232e3 /src/include
parent259fc2b1190f23af085773a23a9c79209d3394c4 (diff)
lib: Remove heap from rmodules
No rmodule was using heap. Change-Id: I0bc049a5231dabbec1c962a99ef875eddcc4ac6e Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/80733 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/rules.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/rules.h b/src/include/rules.h
index 04b0a8229e..1005058b48 100644
--- a/src/include/rules.h
+++ b/src/include/rules.h
@@ -282,8 +282,8 @@
* arch/x86/car.ld */
#define ENV_SEPARATE_DATA_AND_BSS (ENV_CACHE_AS_RAM && (ENV_BOOTBLOCK || !CONFIG(NO_XIP_EARLY_STAGES)))
-/* Currently rmodules and ramstage have heap. */
-#define ENV_HAS_HEAP_SECTION (ENV_RMODULE || ENV_RAMSTAGE)
+/* Currently ramstage has heap. */
+#define ENV_HAS_HEAP_SECTION ENV_RAMSTAGE
/* Set USER_SPACE in the makefile for the rare code that runs in userspace */
#if defined(__USER_SPACE__)