fw: Add debug print when reading partition table fails

This commit is contained in:
Michael Cardell Widerkrantz 2025-05-13 18:12:30 +02:00
parent ea29843037
commit 0d6e1d9ba5
No known key found for this signature in database
GPG key ID: D3DB3DDF57E704E5

View file

@ -521,7 +521,8 @@ int main(void)
scramble_ram();
if (part_table_read(&part_table_storage) != 0) {
// Couldn't read or create partition table
// Couldn't read partition table
debug_puts("Couldn't read partition table\n");
assert(1 == 2);
}