diff options
author | Andrew Scull <ascull@google.com> | 2022-05-30 10:00:08 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-06-23 12:58:18 -0400 |
commit | 3f807c6b81219555ac964f2623cfcbd1103151fa (patch) | |
tree | 86067661215f9dc62b0e88b6ee3573112297f78d /drivers/Makefile | |
parent | eabc4e2980b25f16e6d2805077aaa6ecbc074d63 (diff) | |
download | u-boot-3f807c6b81219555ac964f2623cfcbd1103151fa.tar.gz u-boot-3f807c6b81219555ac964f2623cfcbd1103151fa.tar.bz2 u-boot-3f807c6b81219555ac964f2623cfcbd1103151fa.zip |
fuzzing_engine: Add fuzzing engine uclass
This new class of device will provide fuzzing inputs from a fuzzing
engine.
Signed-off-by: Andrew Scull <ascull@google.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index 67c8af7442..d63fd1c04d 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -115,6 +115,7 @@ obj-$(CONFIG_W1) += w1/ obj-$(CONFIG_W1_EEPROM) += w1-eeprom/ obj-$(CONFIG_MACH_PIC32) += ddr/microchip/ +obj-$(CONFIG_FUZZ) += fuzz/ obj-$(CONFIG_DM_HWSPINLOCK) += hwspinlock/ obj-$(CONFIG_DM_RNG) += rng/ endif |