]> git.baikalelectronics.ru Git - uboot.git/commit
fs: avoid superfluous messages
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 20 Sep 2021 12:15:03 +0000 (14:15 +0200)
committerRamon Fried <rfried.dev@gmail.com>
Tue, 28 Sep 2021 15:50:55 +0000 (18:50 +0300)
commitb0f8e26ae61c05350eb508d64c83c4837cc39e01
tree188f602e52b0160ab0431d0dab844e4d66d9ed10
parent8a2adcf9ed16d2e6b13c43fb7366e96030af4fb8
fs: avoid superfluous messages

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 **

Albeit a whole disk may be formatted with a filesystem in most cases
a partition table is used and the whole disk (partition number 0) doesn't
contain a filesytem. Some partitions may only contain a blob. Not seeing a
filesytem on the whole disk or on any partition is only worth a debug
message.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
fs/fs.c