[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[XEN][PATCH v9 06/19] libfdt: Keep fdt functions after init for CONFIG_OVERLAY_DTB.
- To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Vikram Garhwal <vikram.garhwal@xxxxxxx>
- Date: Fri, 18 Aug 2023 17:28:37 -0700
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=+aOH8wbfxJ3CDB9n8z4otIPVVDXaY3ZnHxlpPeTlbO8=; b=I4avalaNMVLwxKCpWNi4BmXBINW5qfumrsN5+9Sl6AySRojApVVpzLWIrOG27w2EZYn12E6E/tzcJ8tIOVByYgrc/H7dsmPWPfTdan8I3Dx6la5dhtE239bd9VM7TE44zEF2PZfhErNbdbBxqwF5uIZQOp8mBoRMRmo4kfjD8DPKDjP5gfCKspuNRtLvrNmilkry6bIIiIskRCqJ5yVVnjK2LNyZf4Cc8p6T9pPtmEPXn4vGrCgBS6B1GpdZ7PfoFGFfmf8fzrSJpQVOISp0m97JcOGbVilrmKZA4p1RhZTMgw7XGyoR1agZ5+LNzzM+/dsQqivPM5tXTZQD/Q8xnA==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=GyZ4fcsLCVOjkIXzgnUa6ji+61VMET/U7h7KMIR2aX7RqGL9HS9jvWToAbQinVE4K9uECpGMmsAunH8n/gIvANkMUIWKGhhDvypFzDF+eV++2caX4Pl14NZobPlGW9lquptJGsyZbVB8eYl2YUDM7dVLD3shxVsSC1tmO5Ilu8cS38AOd48mnJwDY1ka3rI/brNtxqIZa83+YA72I8pLxVmlT3ET4cnytvkouKD2DYUymciq+R/16z/5VyxV199JNVBYyDlGQH4hVOHJEixWnJoK9mxmalriZn/WdK+g9mAhRGy6oQ+25ySHuZbMa/PA5mv8w8zzmEHI0CfWWTonOw==
- Cc: <michal.orzel@xxxxxxx>, <sstabellini@xxxxxxxxxx>, <vikram.garhwal@xxxxxxx>, <jbeulich@xxxxxxxx>, Julien Grall <julien@xxxxxxx>
- Delivery-date: Sat, 19 Aug 2023 00:29:23 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
This is done to access fdt library function which are required for adding device
tree overlay nodes for dynamic programming of nodes.
Signed-off-by: Vikram Garhwal <vikram.garhwal@xxxxxxx>
Acked-by: Julien Grall <jgrall@xxxxxxxxxx>
---
xen/common/libfdt/Makefile | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/xen/common/libfdt/Makefile b/xen/common/libfdt/Makefile
index 75aaefa2e3..d50487aa6e 100644
--- a/xen/common/libfdt/Makefile
+++ b/xen/common/libfdt/Makefile
@@ -1,7 +1,11 @@
include $(src)/Makefile.libfdt
SECTIONS := text data $(SPECIAL_DATA_SECTIONS)
+
+# For CONFIG_OVERLAY_DTB, libfdt functionalities will be needed during runtime.
+ifneq ($(CONFIG_OVERLAY_DTB),y)
OBJCOPYFLAGS := $(foreach s,$(SECTIONS),--rename-section .$(s)=.init.$(s))
+endif
obj-y += libfdt.o
nocov-y += libfdt.o
--
2.17.1
|