guowenxue
2024-06-16 b96bc188ee00b4ccfb80e5af4fd2f67df22e88fc
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#!/bin/bash
 
# this project absolute path
PRJ_PATH=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
 
# top project absolute path
TOP_PATH=$(realpath $PRJ_PATH/..)
 
# binaries build prefix install path
PRFX_PATH=$PRJ_PATH/install
 
# binaries finally install path if needed
#INST_PATH=/tftp
 
# download taballs path
TARBALL_PATH=$PRJ_PATH/tarballs
 
# config file path
CONF_FILE=$TOP_PATH/config.json
 
# shell script will exit once get command error
set -e
 
#+-------------------------+
#| Shell script functions  |
#+-------------------------+
 
function pr_error() {
    echo -e "\033[40;31m $1 \033[0m"
}
 
function pr_warn() {
    echo -e "\033[40;33m $1 \033[0m"
}
 
function pr_info() {
    echo -e "\033[40;32m $1 \033[0m"
}
 
# decompress a packet to destination path
function do_unpack()
{
    tarball=$1
    dstpath=`pwd`
 
    if [[ $# == 2 ]] ; then
        dstpath=$2
    fi
 
    pr_info "decompress $tarball => $dstpath"
 
    mkdir -p $dstpath
    case $tarball in
        *.tar.gz)
            tar -xzf $tarball -C $dstpath
            ;;
 
        *.tar.bz2)
            tar -xjf $tarball -C $dstpath
            ;;
 
        *.tar.xz)
            tar -xJf $tarball -C $dstpath
            ;;
 
        *.tar.zst)
            tar -I zstd -xf $tarball -C $dstpath
            ;;
 
        *.tar)
            tar -xf $tarball -C $dstpath
            ;;
 
        *.zip)
            unzip -qo $tarball -d $dstpath
            ;;
 
        *)
            pr_error "decompress Unsupport packet: $tarball"
            return 1;
            ;;
    esac
}
 
# parser configure file and export environment variable
function export_env()
{
    export BOARD=`jq -r ".bsp.board" $CONF_FILE | tr 'A-Z' 'a-z'`
    export BSP_VER=`jq -r ".bsp.version" $CONF_FILE | tr 'A-Z' 'a-z'`
    export BSP_URL=`jq -r ".bsp.giturl" $CONF_FILE`
    export CROSS_COMPILE=`jq -r ".bsp.cortexAtool" $CONF_FILE`
 
    export BRANCH=$BSP_VER
    export KER_SRC=linux-imx
    export KER_PATH=$PRJ_PATH/$KER_SRC
    export DRV_PATH=$TOP_PATH/drivers/${BOARD}
 
    export JOBS=`cat /proc/cpuinfo | grep processor | wc -l`
 
    if [[ $BOARD =~ mx6ull ]] ; then
        export ARCH=arm
    else
        export ARCH=arm64
    fi
}
 
function build_kernel()
{
    defconfig=${BOARD}_defconfig
    patch_file=$PRJ_PATH/patches/$BOARD/${KER_SRC}-$BSP_VER.patch
 
    cd $PRJ_PATH
 
    if [ -d $KER_PATH ] ; then
        pr_info "linux kernel source code fetched already"
    else
        pr_info "start fetch linux kernel source code"
 
        if [[ $BSP_URL =~ github.com ]] ; then
            git clone $BSP_URL/$KER_SRC.git -b $BRANCH --depth=1
        else
            mkdir -p $TARBALL_PATH
 
            # Download source code packet
            if [ ! -s $TARBALL_PATH/$KER_SRC.tar.xz ] ; then
                wget $BSP_URL/imx/bsp/$BSP_VER/$KER_SRC.tar.xz -P $TARBALL_PATH
            fi
 
            # decompress source code packet
            do_unpack $TARBALL_PATH/$KER_SRC.tar.xz
        fi
    fi
 
    cd $KER_PATH
 
    if [ ! -s arch/$ARCH/configs/$defconfig -a -s $patch_file ] ; then
        pr_warn "do patch for $KER_SRC now..."
        patch -p1 < $patch_file
    fi
 
    pr_warn "start build $KER_SRC"
 
    if [ ! -s .config ] ; then
        make ${defconfig}
    fi
 
    make -j ${JOBS}
}
 
function do_install()
{
    pr_info "start install linux kernel images"
 
    cd $KER_PATH
 
    if [ -d $PRFX_PATH ] ; then
        rm -rf $PRFX_PATH/*
    fi
 
    mkdir -p $PRFX_PATH/overlays
 
    # Install system image and device tree binaries
 
    if [[ $BOARD =~ 6ull ]] ; then
        set -x
        cp -f arch/${ARCH}/boot/zImage $PRFX_PATH
        cp -f arch/${ARCH}/boot/dts/${BOARD}.dtb $PRFX_PATH
        if [ -d arch/${ARCH}/boot/dts/${BOARD} ] ; then
            cp -f arch/${ARCH}/boot/dts/${BOARD}/*.dtbo $PRFX_PATH/overlays
        fi
        set +x
    else
        set -x
        cp -f arch/${ARCH}/boot/Image $PRFX_PATH
        cp -f arch/${ARCH}/boot/dts/freescale/${BOARD}.dtb $PRFX_PATH
        if [ -d arch/${ARCH}/boot/dts/${BOARD} ] ; then
            cp -f arch/${ARCH}/boot/dts/${BOARD}/*.dtbo $PRFX_PATH/overlays
        fi
        set +x
    fi
 
    # Install kernel modules
    make modules_install INSTALL_MOD_PATH=$PRFX_PATH INSTALL_MOD_STRIP=1
 
    echo ""
    pr_info "linux kernel installed to '$PRFX_PATH'"
    ls $PRFX_PATH && echo ""
 
    if [[ -n "$INST_PATH" && -w $INST_PATH ]] ; then
        pr_info "install linux kernel to '$INST_PATH'"
        cp -f $PRFX_PATH/*Image $INST_PATH
        cp -f $PRFX_PATH/${BOARD}.dtb $INST_PATH
    fi
}
 
function build_driver()
{
    if [ ! -d $DRV_PATH ] ; then
        return 0;
    fi
 
    pr_info "start ${BOARD} linux drivers"
 
    if [ -d $DRV_PATH ] ; then
        cd $DRV_PATH && ./build.sh
    fi
 
    cd $PRJ_PATH
}
 
function do_build()
{
    cd $PRJ_PATH
 
    build_kernel
 
    do_install
 
    build_driver
}
 
function do_clean()
{
    cd $PRJ_PATH
 
    rm -rf $PRJ_PATH/$KER_SRC
    rm -rf $PRJ_PATH/tarballs
    rm -rf $PRFX_PATH
 
    if [ -d $DRV_PATH ] ; then
        cd $DRV_PATH && ./build.sh -c
    fi
 
    cd
}
 
#+-------------------------+
#| Shell script body entry |
#+-------------------------+
 
export_env
 
if [[ $# == 1 && $1 == -c ]] ;then
    pr_warn "start clean linux kernel"
    do_clean
    exit;
fi
 
pr_warn "start build linux kernel for ${BOARD}"
 
do_build