summaryrefslogtreecommitdiffstats
path: root/scripts/qemuimage-tests/tools/df.sh
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-09-19 13:18:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-22 12:19:41 +0100
commitd6529876129a6932b6d2e369b3fd6ca40d342add (patch)
tree82b62115b0f4ba9701c823988472884c735872b7 /scripts/qemuimage-tests/tools/df.sh
parent595321a62669e90bed5f459a9d926a68988086a9 (diff)
downloadpoky-d6529876129a6932b6d2e369b3fd6ca40d342add.tar.gz
classes/imagetest-qemu: remove old image testing class
This has now been superseded by testimage. (From OE-Core rev: d469c92394a1a95ae7a45b8b80dc4c2918e0e9a6) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/qemuimage-tests/tools/df.sh')
-rw-r--r--scripts/qemuimage-tests/tools/df.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/scripts/qemuimage-tests/tools/df.sh b/scripts/qemuimage-tests/tools/df.sh
deleted file mode 100644
index 280c08e031..0000000000
--- a/scripts/qemuimage-tests/tools/df.sh
+++ /dev/null
@@ -1,25 +0,0 @@
1#!/bin/bash
2# df test script to check enough disk space for qemu target
3#
4# Author: veera <veerabrahmamvr@huawei.com>
5#
6# This file is licensed under the GNU General Public License,
7# Version 2.
8#taking the size of the each partition
9array_list=(`df -P | tr -s " " | cut -d " " -f4`)
10#Total size of the array
11array_size=`echo ${#array_list[@]}`
12loop_val=1
13#while loop to check the size of partitions are less than 5MB
14while [ $loop_val -lt $array_size ]
15do
16 #taking each value from the array to check the size
17 value=`echo ${array_list[$loop_val]}`
18 if [[ $value -gt 5120 ]];then
19 loop_val=`expr $loop_val + 1`
20 else
21 echo "QEMU: df : disk space is not enough"
22 exit 1
23 fi
24done
25exit 0