]> git.baikalelectronics.ru Git - uboot.git/commit
distroboot: Fix ubifs
authorPali Rohár <pali@kernel.org>
Tue, 31 May 2022 08:32:36 +0000 (10:32 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 8 Jul 2022 13:05:47 +0000 (09:05 -0400)
commit1584a58d14fea66fc25c3284d670d58d6edaeb53
treef087cfca26d507a476099414b3eb5e0e439c445f
parent616128f7f0450f747fa4a8b6382d1ebd4a672fe0
distroboot: Fix ubifs

Fix multiple issues in ubifs distroboot code:

U-Boot supports attaching only one MTD device as UBI at the time. So
always call 'ubifsmount ubi0:${bootubivol}' for mounting UBI volume
${bootubivol}. Usage of 'ubi${devnum}' is incorrect as 'ubi part'
command attach MTD device always as UBI device ubi0.

Set distroboot ${bootfstype} variable to ubifs in ubifs_boot command.
Distroboot scripts require ${bootfstype} variable to be properly set and it
is already set for all other boot types.

Set distroboot ${distro_bootpart} variable to ${bootubivol} value. UBI
device does not have partitions, but has volumes. Distroboot scripts
require something to be set in ${distro_bootpart} variable, so set it to
the UBI volume which is currently mounted by ubifs.

Set distroboot ${devnum} variable to fixed string "ubi0". ubifs code
differs from the other partition code that it requires "ubi" prefix before
number.

Explicitly unmount ubifs volume after loading all data from it. This allows
to detach UBI device from MTD device.

Move definition of MTD device with UBI and UBI volume with ubifs filesystem
from global env variables ${bootubipart} and ${bootubivol} into the
distroboot "func" macro, defined in board include config files. UBIFS
distroboot macros then set ${bootubipart} and ${bootubivol} local variables
for compatibility with existing distroboot scripts.

This last change allows to define more UBIFS target devices and make it
clear what is boot MTD/UBI device.

All board include config files are adjusted to use this new scheme of
specifying boot MTD/UBI device.

Signed-off-by: Pali Rohár <pali@kernel.org>
Acked-by: Frieder Schrempf <frieder.schrempf@kontron.de>
12 files changed:
include/config_distro_bootcmd.h
include/configs/am335x_guardian.h
include/configs/colibri-imx6ull.h
include/configs/colibri_imx7.h
include/configs/kontron-sl-mx6ul.h
include/configs/mys_6ulx.h
include/configs/npi_imx6ull.h
include/configs/omap3_beagle.h
include/configs/omap3_evm.h
include/configs/pcl063.h
include/configs/stm32mp15_common.h
include/configs/uniphier.h