> From: Heinrich Schuchardt <heinrich.schucha...@canonical.com> > Date: Thu, 16 Sep 2021 10:10:20 +0200 > > Output like the following is quite irritating: > > => bootefi hello > Scanning disk mmc2.blk... > No valid Btrfs found > Bad magic number for SquashFS image. > ** Unrecognized filesystem type ** > Scanning disk mmc1.blk... > No valid Btrfs found > Bad magic number for SquashFS image. > ** Unrecognized filesystem type ** > Scanning disk mmc0.blk... > No valid Btrfs found > Bad magic number for SquashFS image. > ** Unrecognized filesystem type ** > > It is expected that a whole disk (partition number 0) doesn't contain a > filesystem. Partitions may only contain a blob. This situation is only > worth a debug message. > > Signed-off-by: Heinrich Schuchardt <heinrich.schucha...@canonical.com> > --- > fs/fs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-)
Cool. Thanks. That removes a lot of clutter when booting OpenBSD on my Apple M1 mini ;). > diff --git a/fs/fs.c b/fs/fs.c > index 7c682582c8..023f89cafe 100644 > --- a/fs/fs.c > +++ b/fs/fs.c > @@ -37,7 +37,7 @@ static int fs_type = FS_TYPE_ANY; > static inline int fs_probe_unsupported(struct blk_desc *fs_dev_desc, > struct disk_partition *fs_partition) > { > - log_err("** Unrecognized filesystem type **\n"); > + log_debug("Unrecognized filesystem type\n"); > return -1; > } > > -- > 2.32.0 > >