]> code.ossystems Code Review - openembedded-core.git/commit
wic:direct.py: ignore invalid mountpoints during fstab update
authorMarkus Volk <f_l_k@t-online.de>
Sat, 25 Sep 2021 18:01:37 +0000 (20:01 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 26 Sep 2021 13:36:49 +0000 (14:36 +0100)
commit7aa678ce804c21dc1dc51b9be442671bc33c4041
tree350a80250aeeb84c760ccafbcb82cec6de284479
parent6a8077317ce12e13018ec4472f728dd24880bda9
wic:direct.py: ignore invalid mountpoints during fstab update

wic fstab-update creates invalid entries for partitons that are not supposed to
be mounted from userspace eg u-boot partitions.

The following lines were added to fstab on a rock-pi-4:
/dev/mmcblk1p1 loader1 vfat defaults 0 0
/dev/mmcblk1p2 reserved1 vfat defaults 0 0
/dev/mmcblk1p3 reserved2 vfat defaults 0 0
/dev/mmcblk1p4 loader2 vfat defaults 0 0
/dev/mmcblk1p5 atf vfat defaults 0 0
/dev/mmcblk1p6 /boot vfat defaults 0 0

With this patch only valid entries should be added
/dev/mmcblk1p6 /boot vfat defaults 0 0

Signed-off-by: MarkusVolk <f_l_k@t-online.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/wic/plugins/imager/direct.py