Skip to content

Commit dc10ac5

Browse files
tool: improve error message
Signed-off-by: Ivan-Velickovic <i.velickovic@unsw.edu.au>
1 parent 453dc2d commit dc10ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool/microkit/src/sdf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ impl ProtectionDomain {
416416
match config.arm_smc {
417417
Some(smc_allowed) => {
418418
if !smc_allowed {
419-
return Err(value_error(xml_sdf, node, "Using SMC support without ARM SMC forwarding support enabled for this platform".to_string()));
419+
return Err(value_error(xml_sdf, node, "Using SMC support without ARM SMC forwarding support enabled in the kernel for this platform".to_string()));
420420
}
421421
}
422422
None => {

0 commit comments

Comments
 (0)