diff options
author | Paul Vaduva <Paul.Vaduva@enea.com> | 2016-09-10 16:24:09 +0200 |
---|---|---|
committer | Paul Vaduva <Paul.Vaduva@enea.com> | 2016-09-10 16:28:17 +0200 |
commit | 82366575b7924a8315d09989b5f0b6b651ffc9c8 (patch) | |
tree | cc49bc6eba196349ac554da55c7f179ae912df0c /tools | |
parent | 1bd1558189922c408569c8b07d6825089dd3f4b9 (diff) |
yardstick: modify e2fsck command to run with -p param
e2fsck command will not run without human intervention
if we do not use -p option. Jira issue: ARMBAND-74
Change-Id: Ie7f9b526a568e49ad44c4ee3b4fe75a1065bb1b3
Signed-off-by: Paul Vaduva <Paul.Vaduva@enea.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/yardstick-img-modify | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/yardstick-img-modify b/tools/yardstick-img-modify index b9ecbddd8..07f10b3ce 100755 --- a/tools/yardstick-img-modify +++ b/tools/yardstick-img-modify @@ -104,7 +104,7 @@ setup() { kpartx -av $raw_imgfile if [ $YARD_IMG_ARCH = "arm64" ]; then - e2fsck -f /dev/mapper/$loopdevice + e2fsck -p -f /dev/mapper/$loopdevice resize2fs /dev/mapper/$loopdevice fi # for trouble shooting |