satman: fix checksum error message

This commit is contained in:
occheung 2024-10-24 11:52:26 +08:00
parent 5c2efa7989
commit b561099ec3
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ impl<'a> Manager<'_> {
self.cfg.write("boot", image).expect("failed to write boot image");
} else {
panic!(
"CRC failed in SDRAM (actual {:08x}, expected {:08x})",
"CRC failed, images have not been written to flash.\n(actual {:08x}, expected {:08x})",
actual_crc, expected_crc
);
}