From 2e40ab70a03dfd088d12e5caa996b7a409a97caa Mon Sep 17 00:00:00 2001 From: DawidSzpejna Date: Mon, 9 Jan 2023 13:24:01 +0100 Subject: [PATCH] Makefile: add the driver to the build system Two things were done. At first,a makefile for compiling the rngb. At second, an entry to the makefile of imx6ull target. JIRA: RTOS-317 --- _targets/Makefile.armv7a7-imx6ull | 2 +- random/Makefile | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 random/Makefile diff --git a/_targets/Makefile.armv7a7-imx6ull b/_targets/Makefile.armv7a7-imx6ull index 67045e282..aee3e304a 100644 --- a/_targets/Makefile.armv7a7-imx6ull +++ b/_targets/Makefile.armv7a7-imx6ull @@ -6,7 +6,7 @@ # Copyright 2019 Phoenix Systems # -DEFAULT_COMPONENTS := imx6ull-sdma imx6ull-gpio libimx6ull-ecspi +DEFAULT_COMPONENTS := imx6ull-sdma imx6ull-gpio libimx6ull-ecspi imx6ull-rngb DEFAULT_COMPONENTS += imx6ull-flash DEFAULT_COMPONENTS += imx6ull-flashnor DEFAULT_COMPONENTS += libusbclient cdc-demo diff --git a/random/Makefile b/random/Makefile new file mode 100644 index 000000000..305db616a --- /dev/null +++ b/random/Makefile @@ -0,0 +1,10 @@ +# +# Makefile for Phoenix-RTOS rngb +# +# Copyright 2023 Phoenix Systems +# + +NAME := imx6ull-rngb +LOCAL_SRCS := imx6ull-rngb.c + +include $(binary.mk)