1# SPDX-License-Identifier: GPL-2.0+ 2# Copyright (c) 2019, Texas Instrument 3# Author: JJ Hiblot <jjhiblot@ti.com> 4# 5 6from subprocess import check_call, CalledProcessError 7 8def assert_fs_integrity(fs_type, fs_img): 9 try: 10 if fs_type == 'ext4': 11 check_call('fsck.ext4 -n -f %s' % fs_img, shell=True) 12 except CalledProcessError: 13 raise 14