]> git.dujemihanovic.xyz Git - u-boot.git/commit
env: mmc: print MMC device being read
authorQuentin Schulz <quentin.schulz@theobroma-systems.com>
Mon, 15 Apr 2024 12:43:57 +0000 (14:43 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 18 Apr 2024 22:37:25 +0000 (16:37 -0600)
commit97b34f6ace539c9c16eb8565f8b58730848ba97a
tree46665c437ec30392b4e9d301db52f6ff555c6dce
parent84dda5ce3e3ba126f1bf83f87c84f27714b5fe4a
env: mmc: print MMC device being read

This prints the MMC device being read similar to how we print the MMC
device we write to when e.g. calling saveenv.

One of the side effects is that the boot log now shows from which MMC
device the env was loaded:

Loading Environment from MMC... Reading from MMC(1)... OK

This is useful to identify which MMC device the environment was loaded
from for boards where there are more than one (e.g. eMMC and SD card)
without adding some debug messages manually.

Sadly, there's no way to know which of the default or redundant
environment is being read from env_mmc_load before env_import_redund is
called so it is printing a bit later (and possibly after error/warning
messages).

Cc: Quentin Schulz <foss+uboot@0leil.net>
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Dragan Simic <dsimic@manjaro.org>
env/mmc.c