diff options
author | Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com> | 2023-07-13 14:28:45 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-07-24 15:30:03 -0400 |
commit | 20e2b994f98642cf4152c117bd72fa719aca1de1 (patch) | |
tree | 817ca854a33a2f0bbcde9aa8fce9fa17b9fbb609 /test/cmd/Makefile | |
parent | dd40919bea30bc47d548df4b9b308c3aac02bd4e (diff) | |
download | u-boot-20e2b994f98642cf4152c117bd72fa719aca1de1.tar.gz u-boot-20e2b994f98642cf4152c117bd72fa719aca1de1.tar.bz2 u-boot-20e2b994f98642cf4152c117bd72fa719aca1de1.zip |
arm_ffa: introduce armffa command Sandbox test
Add Sandbox test for the armffa command
Signed-off-by: Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
Cc: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Cc: Jens Wiklander <jens.wiklander@linaro.org>
Diffstat (limited to 'test/cmd/Makefile')
-rw-r--r-- | test/cmd/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/cmd/Makefile b/test/cmd/Makefile index a3cf983739..6e3d7e919e 100644 --- a/test/cmd/Makefile +++ b/test/cmd/Makefile @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0+ # # Copyright (c) 2013 Google, Inc +# Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com> ifdef CONFIG_HUSH_PARSER obj-$(CONFIG_CONSOLE_RECORD) += test_echo.o @@ -24,6 +25,7 @@ obj-$(CONFIG_CMD_SEAMA) += seama.o ifdef CONFIG_SANDBOX obj-$(CONFIG_CMD_READ) += rw.o obj-$(CONFIG_CMD_SETEXPR) += setexpr.o +obj-$(CONFIG_ARM_FFA_TRANSPORT) += armffa.o endif obj-$(CONFIG_CMD_TEMPERATURE) += temperature.o obj-$(CONFIG_CMD_WGET) += wget.o |