diff options
author | Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> | 2017-08-10 20:34:59 +0530 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-08-11 16:25:35 +1000 |
commit | 2c67c7bc4a780f46253c6947dbfce29a9a1f7efa (patch) | |
tree | bdf08da4396e3fb0b4880dece3265a5b57d8cddd | |
parent | c1204b44afedb43541983003d148d0a67965fe8d (diff) | |
download | skiboot-2c67c7bc4a780f46253c6947dbfce29a9a1f7efa.zip skiboot-2c67c7bc4a780f46253c6947dbfce29a9a1f7efa.tar.gz skiboot-2c67c7bc4a780f46253c6947dbfce29a9a1f7efa.tar.bz2 |
Recognize the 2s2u zz platform
OPAL currently doesn't know about the 2s2u zz. It recognizes such a
box as a generic BMC machine and fails to boot. Add the 2s2u as a
supported platform.
There will subsequently be a 2s2u-L system which may have a different
compatible property, which will need to be handled later.
Signed-off-by: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | platforms/ibm-fsp/zz.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platforms/ibm-fsp/zz.c b/platforms/ibm-fsp/zz.c index c13911f..a8150b8 100644 --- a/platforms/ibm-fsp/zz.c +++ b/platforms/ibm-fsp/zz.c @@ -32,6 +32,7 @@ static bool zz_probe(void) /* FIXME: make this neater when the dust settles */ if (dt_node_is_compatible(dt_root, "ibm,zz-1s2u") || dt_node_is_compatible(dt_root, "ibm,zz-1s4u") || + dt_node_is_compatible(dt_root, "ibm,zz-2s2u") || dt_node_is_compatible(dt_root, "ibm,zz-2s4u")) return true; |