summaryrefslogtreecommitdiff
path: root/drivers/fuzz/Makefile
diff options
context:
space:
mode:
authorAndrew Scull <ascull@google.com>2022-05-30 13:00:12 +0300
committerTom Rini <trini@konsulko.com>2022-06-23 19:58:19 +0300
commit0518e7a28fdbaf27cda7a43d1a52d457536e1d9b (patch)
tree2309dcfddb3c19b0cec341a504fceec6de487198 /drivers/fuzz/Makefile
parentd9962b12f200156238a4c825c0b540a203c72042 (diff)
downloadu-boot-0518e7a28fdbaf27cda7a43d1a52d457536e1d9b.tar.xz
sandbox: Implement fuzzing engine driver
Add a fuzzing engine driver for the sandbox to take inputs from libfuzzer and expose them to the fuzz tests. Signed-off-by: Andrew Scull <ascull@google.com>
Diffstat (limited to 'drivers/fuzz/Makefile')
-rw-r--r--drivers/fuzz/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/fuzz/Makefile b/drivers/fuzz/Makefile
index acd894999c..073743ba94 100644
--- a/drivers/fuzz/Makefile
+++ b/drivers/fuzz/Makefile
@@ -5,3 +5,4 @@
#
obj-$(CONFIG_DM_FUZZING_ENGINE) += fuzzing_engine-uclass.o
+obj-$(CONFIG_FUZZING_ENGINE_SANDBOX) += sandbox_fuzzing_engine.o