From d8972fc41c769a06a7311cec4525a10b9da04ee0 Mon Sep 17 00:00:00 2001 From: s00442234 Date: Thu, 28 Apr 2022 19:54:31 +0800 Subject: [PATCH] add dfx dumper Signed-off-by: s00442234 --- platform/fwk/Makefile | 5 +++-- test/Makefile | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/platform/fwk/Makefile b/platform/fwk/Makefile index 9e38125..26c9c63 100644 --- a/platform/fwk/Makefile +++ b/platform/fwk/Makefile @@ -1,5 +1,5 @@ # -# Copyright (c) 2020-2021 Huawei Device Co., Ltd. +# Copyright (c) 2020-2022 Huawei Device Co., Ltd. # # This software is licensed under the terms of the GNU General Public # License version 2, as published by the Free Software Foundation, and @@ -18,6 +18,7 @@ obj-y += $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_common.o \ $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_device.o \ $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_event.o \ $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_manager.o \ - $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_queue.o + $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_queue.o \ + $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_dumper.o obj-y += ./plat_common.o diff --git a/test/Makefile b/test/Makefile index e162678..9142ab8 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Huawei Device Co., Ltd. +# Copyright (c) 2021-2022 Huawei Device Co., Ltd. # # This software is licensed under the terms of the GNU General Public # License version 2, as published by the Free Software Foundation, and @@ -30,6 +30,7 @@ obj-$(CONFIG_DRIVERS_HDF_PLATFORM) += $(HDF_FRAMWORK_TEST_ROOT)/platform/common/ $(HDF_FRAMWORK_TEST_ROOT)/platform/common/platform_event_test.o \ $(HDF_FRAMWORK_TEST_ROOT)/platform/common/platform_manager_test.o \ $(HDF_FRAMWORK_TEST_ROOT)/platform/common/platform_queue_test.o \ + $(HDF_FRAMWORK_TEST_ROOT)/platform/common/platform_dumper_test.o \ $(HDF_FRAMWORK_TEST_ROOT)/platform/entry/hdf_platform_core_entry_test.o obj-$(CONFIG_DRIVERS_HDF_PLATFORM_GPIO) += $(HDF_FRAMWORK_TEST_ROOT)/platform/common/gpio_test.o \ -- Gitee