mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 05:34:30 +08:00
ff0dada9b8
Add a sandbox driver for random number generation. Mostly aimed at providing a unit test for rng uclass. Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org> Reviewed-by: Patrice Chotard <patrice.chotard@st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
9 lines
203 B
Makefile
9 lines
203 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2019, Linaro Limited
|
|
#
|
|
|
|
obj-$(CONFIG_DM_RNG) += rng-uclass.o
|
|
obj-$(CONFIG_RNG_SANDBOX) += sandbox_rng.o
|
|
obj-$(CONFIG_RNG_STM32MP1) += stm32mp1_rng.o
|