From: Frédéric Danis Date: Wed, 20 May 2020 07:13:26 +0000 (+0200) Subject: bootcount_ext: Add Ext4 build dependency X-Git-Tag: v2020.07-rc4~12^2~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4f6abf159a17a3923fa40d7fc7e46d09ad24c055;p=oweals%2Fu-boot.git bootcount_ext: Add Ext4 build dependency This config option depends on EXT4 support. If Ext4 write capability is not selected, it generate write error messages and is unable to maintain boot counter. Signed-off-by: Frédéric Danis --- diff --git a/drivers/bootcount/Kconfig b/drivers/bootcount/Kconfig index 0356f8ba18..c8e6fa7f89 100644 --- a/drivers/bootcount/Kconfig +++ b/drivers/bootcount/Kconfig @@ -27,6 +27,8 @@ config BOOTCOUNT_GENERIC config BOOTCOUNT_EXT bool "Boot counter on EXT filesystem" + depends on FS_EXT4 + select EXT4_WRITE help Add support for maintaining boot count in a file on an EXT filesystem.