[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 05/15] kconfig: introduce domain builder config option
- To: "Daniel P. Smith" <dpsmith@xxxxxxxxxxxxxxxxxxxx>, <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Jason Andryuk <jason.andryuk@xxxxxxx>
- Date: Mon, 25 Nov 2024 12:55:18 -0500
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=apertussolutions.com 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 (0)
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; 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=ai7hpG1VukTCVVPk/93Qdiv7ymWV1QyORPiAMvXuHJ4=; b=Pzdl/99bgEUmSgl+d8k7D4/P4qbRhxGTH3F25eL7beB+j2SjWDwTZ4J9AKXMkutrOWHvIwr2XrA56b2dlejrHcnLrDrx4sgYe3DM6108TWFZ2GPsZBKw+Kdm3Q0Hj+8xb+Hiod4LHrqGz9bJEXhwVWMibXxKr0MGhEBIMXuPAPS95mm6mLZ8oHPF72iA6yVhMQdabARoEJvgBHBHJ+eoxJyWx5RPJ1U8HHAhKLbfzi79HpjNLufcTRaSl/pCRV788pe7weASiFSUFr7LfJhOG5PHwMEwWuOuFOclv4CPQXEkz1Ejgj8I/UE5kYTNHeLkvMuedF/lbw8F+eXN1gQwwQ==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=CTzlyi2pnKdDR+pMVDVnUxVOXJACPwrGJJ/0pzoo7zEb7EypOomAkpSHBJI7Z95KfmcPvzErQ2EuNfxRRuVR+nX5wZRTKJC2fUGJ6otptaswSSmlQ4cgriSwXQcP7RWI6xwpgKI7w7FmYCgSIc8gvnGiem/lFx9Lee0XW5xDHHk3Rft0HpLH3vKCDnBj2xjhPADhzq81+8tLu7igXE6ZuYOYYE0gilWjbbp3aE6IKdQYVSiYRcGwEqm4f5uPkWSpsUgElFhn94LrdtQCRg9bkDf+CyhmAg9Qq1qRwogzFHyKwGmAxADUlhdNFXKsxe0J+qo/NEu80gIjoSxOM4MmDw==
- Cc: <christopher.w.clark@xxxxxxxxx>, <stefano.stabellini@xxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>
- Delivery-date: Mon, 25 Nov 2024 17:55:36 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
On 2024-11-23 13:20, Daniel P. Smith wrote:
Hyperlaunch domain builder will be the consolidated boot time domain building
logic framework. Introduces the config option to enable this domain builder to
and turn on the ability to load the domain configuration via a flattened device
"to and"?
tree.
Maybe:
"Hyperlaunch is the boot time domain building framework where domain
configuration is loaded via a flattened device tree. Introduce a
kconfig variable to control the feature."
Signed-off-by: Daniel P. Smith <dpsmith@xxxxxxxxxxxxxxxxxxxx>
diff --git a/xen/arch/x86/domain_builder/Kconfig
b/xen/arch/x86/domain_builder/Kconfig
new file mode 100644
index 000000000000..7be2ec3ed00f
--- /dev/null
+++ b/xen/arch/x86/domain_builder/Kconfig
@@ -0,0 +1,15 @@
+
+menu "Domain Builder Features"
+
+config DOMAIN_BUILDER
+ bool "Domain builder (UNSUPPORTED)" if UNSUPPORTED
+ select LIB_DEVICE_TREE
+ help
+ Enables the domain builder capability to configure boot domain
Indent is off.
+ construction using a flattened device tree.
+
+ This feature is currently experimental.
Does this need to be unsupported and experimental? What makes this more
experimental and/or unsupported than any other new feature?
At least with the commit message and indent fixes:
Reviewed-by: Jason Andryuk <jason.andryuk@xxxxxxx>
+
+ If unsure, say N.
+
+endmenu
|