summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/compile_kernel/kernel.sh
blob: c6c954210ce442c9bb84c544512c2165b94558a5 (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()
{
    SCRIPTS_DIR=$(dirname $0);
    if [ -e "linux-$VERSION.tar.bz2" ]
    then
        echo "start:`date +%T`"
        time $SCRIPTS_DIR/kernel_compile.sh linux-$VERSION.tar.bz2 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
    elif [ -z "$KERNEL_PATH" ]
    then
        time $SCRIPTS_DIR/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_DIR/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 "$@";