Set default package to build for POWER10
Set default package to build for p10 (since that is latest code)
Add PLDM as requirement for building p10
Default build will not enable PHAL support by default because of current
build limitations of the PHAL code.
The pldm Interface class will no longer be created in the Manager object
constructor to prevent issues with unit test.
Tested on Rainier
Change-Id: I8060e70b5656bd0d762d52bf9fdff62f8720a5c6
Signed-off-by: Chris Cain <cjcain@us.ibm.com>
diff --git a/meson.options b/meson.options
index ddb3246..d7eab4a 100644
--- a/meson.options
+++ b/meson.options
@@ -15,7 +15,7 @@
'read-occ-sensors',
type : 'feature',
description : 'Enable read occ sensors support',
- value: 'disabled'
+ value: 'enabled'
)
option(
@@ -37,14 +37,15 @@
option(
'with-host-communication-protocol',
type : 'string',
- description : 'To specify the host communication protocol'
+ description : 'To specify the host communication protocol',
+ value: 'pldm'
)
option(
'power10-support',
type : 'feature',
description : 'Enable Power10 support',
- value: 'disabled'
+ value: 'enabled'
)
option(
@@ -66,3 +67,11 @@
choices: ['mctp-demux', 'af-mctp'],
description: 'transport via af-mctp or mctp-demux'
)
+
+option(
+ 'phal-support',
+ type : 'feature',
+ description : 'Enable PHAL support',
+ value: 'disabled'
+)
+