From 8f78f71d3acd257d8db6edf232e1de1a9e0df4cf Mon Sep 17 00:00:00 2001 From: Francisco Gil Date: Wed, 20 Nov 2024 11:02:54 +0100 Subject: [PATCH] recovery: ccmp1: update regex to include ubi1 for update partition In single boot layout the ccmp1 platforms have two UBI devices: ubi0: Contains uboot_config_r, linux, and recovery. ubi1: Contains rootfs, data, and update. The regular expression used for the update partition needs to be updated to include the ubi1 device, ensuring proper handling of the update partition. https://onedigi.atlassian.net/browse/DEL-9387 Signed-off-by: Francisco Gil francisco.gilmartinez@digi.com --- .../recipes-core/recovery/recovery-initramfs/mdev.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-digi-dey/recipes-core/recovery/recovery-initramfs/mdev.conf b/meta-digi-dey/recipes-core/recovery/recovery-initramfs/mdev.conf index 50cee5885..b507e841c 100644 --- a/meta-digi-dey/recipes-core/recovery/recovery-initramfs/mdev.conf +++ b/meta-digi-dey/recipes-core/recovery/recovery-initramfs/mdev.conf @@ -2,4 +2,4 @@ sd[a-z][0-9]+ 0:0 660 */lib/mdev/automount_block.sh mmcblk[0-9]+p[0-9]+ 0:0 660 */lib/mdev/automount_block.sh mtd[0-9]+ 0:0 660 */lib/mdev/automount_mtd.sh -ubi0_[0-9]+ 0:0 660 */lib/mdev/automount_ubi.sh +ubi[0-1]_[0-9]+ 0:0 660 */lib/mdev/automount_ubi.sh