diff --git a/src/system/kernel/fs/vfs_boot.cpp b/src/system/kernel/fs/vfs_boot.cpp index ec0bed99ee..8bfe6c16fb 100644 --- a/src/system/kernel/fs/vfs_boot.cpp +++ b/src/system/kernel/fs/vfs_boot.cpp @@ -235,8 +235,10 @@ vfs_mount_boot_file_system(kernel_args *args) { PartitionStack partitions; status_t status = get_boot_partitions(args, partitions); - if (status < B_OK) + if (status < B_OK) { + panic("Did not get any boot partitions!"); return status; + } KPartition *bootPartition; while (partitions.Pop(&bootPartition)) {