Skip to content
Snippets Groups Projects
Commit fe34107e authored by Simon Glass's avatar Simon Glass Committed by Wolfgang Denk
Browse files

sandbox: Disable built-in malloc


We prefer to U-Boot's malloc but for now it is easier to use the C library's
version.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 6d6f1236
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,9 @@ LIB = $(obj)libcommon.o
ifndef CONFIG_SPL_BUILD
COBJS-y += main.o
COBJS-y += command.o
ifndef CONFIG_SANDBOX
COBJS-y += dlmalloc.o
endif
COBJS-y += exports.o
COBJS-$(CONFIG_SYS_HUSH_PARSER) += hush.o
COBJS-y += image.o
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment