[haiku-commits] haiku: hrev53482 - src/system/kernel/fs

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 14 Sep 2019 00:27:41 -0400 (EDT)

hrev53482 adds 1 changeset to branch 'master'
old head: 2b5ebfcfd578f177968c5b923e5ccd6eb0195674
new head: b9fc38d9a448f7ac5e1fa09c1fd93c0a53fbfd2b
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=b9fc38d9a448+%5E2b5ebfcfd578

----------------------------------------------------------------------------

b9fc38d9a448: kernel/fs: Automatically tail syslog on "no boot partitions".
  
  The real reason none were found is likely in the syslog.
  Even if the last 15 messages do not have the real error, they
  may be enough to point towards what the problem is, or at least
  uniquely identify the issue.
  
  Fixes #15348.

                              [ Augustin Cavalier <waddlesplash@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev53482
Commit:      b9fc38d9a448f7ac5e1fa09c1fd93c0a53fbfd2b
URL:         https://git.haiku-os.org/haiku/commit/?id=b9fc38d9a448
Author:      Augustin Cavalier <waddlesplash@xxxxxxxxx>
Date:        Sat Sep 14 04:26:58 2019 UTC

Ticket:      https://dev.haiku-os.org/ticket/15348

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 1 deletion(-)
src/system/kernel/fs/vfs_boot.cpp | 2 +-

----------------------------------------------------------------------------

diff --git a/src/system/kernel/fs/vfs_boot.cpp 
b/src/system/kernel/fs/vfs_boot.cpp
index db8c7f8fd7..68bf97c4fe 100644
--- a/src/system/kernel/fs/vfs_boot.cpp
+++ b/src/system/kernel/fs/vfs_boot.cpp
@@ -478,7 +478,7 @@ vfs_mount_boot_file_system(kernel_args* args)
                panic("get_boot_partitions failed!");
        }
        if (partitions.IsEmpty()) {
-               panic("did not find any boot partitions!");
+               panic("did not find any boot partitions! @! syslog | tail 15");
        }
 
        dev_t bootDevice = -1;


Other related posts:

  • » [haiku-commits] haiku: hrev53482 - src/system/kernel/fs - waddlesplash