Skip to content

Commit

Permalink
tool: improve error message
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan-Velickovic <[email protected]>
  • Loading branch information
Ivan-Velickovic committed Jan 6, 2025
1 parent 453dc2d commit 11d6b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/microkit/src/sdf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ impl ProtectionDomain {
match config.arm_smc {
Some(smc_allowed) => {
if !smc_allowed {
return Err(value_error(xml_sdf, node, "Using SMC support without ARM SMC forwarding support enabled for this platform".to_string()));
return Err(value_error(xml_sdf, node, "Using SMC support without ARM SMC forwarding support enabled in the kernel for this platform".to_string()));
}
}
None => {
Expand Down

0 comments on commit 11d6b47

Please sign in to comment.