st-image-partitions.inc: Avoid noisy warning for empty partitions
Partitions like vendorfs can be in many cases empty due to not deploying package targeting that specific partition - see gcnano-userland-multi-binary-stm32mp as an example. Having a warning for use-cases that are both common but also valid, would just result in build noise. This change switches to build notes for flagging an empty partition. Change-Id: Iade087b9171dabfaebd498aa13672d2e2f497349 Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com>
This commit is contained in:
parent
911fedb819
commit
cc43f8cd6e
|
|
@ -62,6 +62,6 @@ reformat_rootfs() {
|
||||||
TARGETROOTFS=$(dirname ${TARGETROOTFS})
|
TARGETROOTFS=$(dirname ${TARGETROOTFS})
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
bbwarn "${IMAGE_PARTITION_MOUNTPOINT} folder not available in rootfs folder, no reformat done..."
|
bbnote "${IMAGE_PARTITION_MOUNTPOINT} folder not available in rootfs folder, no reformat done..."
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue