summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/#kernel.sh#
blob: 40268a977dd88172e80b6ca0ac9306979b7bb363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash

#This script 1st searches in the pwd for the kernel tar file. If its not there then based on the value of the vriable KERNEL_PATH it either searches from the path given or searches in http://www.kernel.org

function main()
{
    if [ -e "linux-$VERSION.tar.bz2" ]
    then
	echo "start:`date +%T`"
        time $SCRIPTS_PATH/kernel_compile.sh linux-$VERSION.tar.bz2 2>>$LOG_FILE 1>>$LOG_FILE 
        if [ $? -ne 0 ]; then

	f            err=$?
	    echo "end:`date +%T`"
            return 11;
        else
	    echo "end:`date +%T`"
            return 0;
        fi
    elif [ -z "$KERNEL_PATH" ]
    then
        time $SCRIPTS_PATH/kernel_compile.sh  2>>$LOG_FILE 1>>$LOG_FILE 
        if [ $? -ne 0 ]; then
            err=$?
	    echo "end:`date +%T`"
            return 11;
        else
	    echo "end:`date +%T`"
            return 0;
        fi
    else
        time $SCRIPTS_PATH/kernel_compile.sh $KERNEL_PATH  2>>$LOG_FILE 1>>$LOG_FILE 
        if [ $? -ne 0 ]; then
            err=$?
	    echo "end:`date +%T`"
            return 11;
        else
	    echo "end:`date +%T`"
            return 0;
        fi
    fi;
}

main "$@";