guowenxue
2024-02-22 86063e8b34368bab47956834efd6536259cd9baf
Build:IGKBoard-All: Update build.sh

Update build.sh to compatible with lingyun file server root URL

Signed-off-by: guowenxue <guowenxue@gmail.com>
4 files modified
18 ■■■■■ changed files
bootloader/build.sh 2 ●●● patch | view | raw | blame | history
images/build.sh 6 ●●●●● patch | view | raw | blame | history
kernel/build.sh 8 ●●●● patch | view | raw | blame | history
yocto/build.sh 2 ●●● patch | view | raw | blame | history
bootloader/build.sh
@@ -160,7 +160,7 @@
            # Download source code packet
            if [ ! -s $TARBALL_PATH/$src.tar.xz ] ; then
                wget $BSP_URL/bsp/$BSP_VER/$src.tar.xz -P $TARBALL_PATH
                wget $BSP_URL/imx/bsp/$BSP_VER/$src.tar.xz -P $TARBALL_PATH
            fi
            # decompress source code packet
images/build.sh
@@ -105,6 +105,7 @@
    export KERNEL_BINPATH=$TOP_PATH/kernel/install/
    export ROOTFS_YCTPATH=$TOP_PATH/yocto/install/
    export IMAGE_NAME=${DIS_TYPE}-${DIS_VER}-${BSP_VER}.img
    export KERNEL_IMAGE=Image
    if [[ $BOARD =~ mx8ulp ]] || [[ $BOARD =~ mx8mq ]] || [[ $BOARD =~ mx8mm ]] ; then
        export UBOOT_OFFSET_SECTOR=66
@@ -112,6 +113,7 @@
        export UBOOT_OFFSET_SECTOR=64
    elif [[ $BOARD =~ mx6 ]] || [[ $BOARD =~ mx7 ]] ; then
        export UBOOT_OFFSET_SECTOR=2
        export KERNEL_IMAGE=zImage
    fi
}
@@ -158,7 +160,7 @@
        # Download source code packet
        if [ ! -s $TARBALL_PATH/$tarball ] ; then
            wget $BSP_URL/${BOARD}/rootfs/$tarball -P $TARBALL_PATH
            wget $BSP_URL/imx/${BOARD}/rootfs/$tarball -P $TARBALL_PATH
        fi
        # decompress source code packet
@@ -211,7 +213,7 @@
    pr_info "start install linux kernel images"
    mount -t vfat /dev/mapper/${LOOP_DEV}p1 ${MNT_POINT}
    cp -rf $KERNEL_BINPATH/Image       ${MNT_POINT}/
    cp -rf $KERNEL_BINPATH/$KERNEL_IMAGE ${MNT_POINT}/
    cp -rf $KERNEL_BINPATH/${BOARD}.dtb ${MNT_POINT}/
    sync && umount ${MNT_POINT}
kernel/build.sh
@@ -122,7 +122,7 @@
            # Download source code packet
            if [ ! -s $TARBALL_PATH/$KER_SRC.tar.xz ] ; then
                wget $BSP_URL/bsp/$BSP_VER/$KER_SRC.tar.xz -P $TARBALL_PATH
                wget $BSP_URL/imx/bsp/$BSP_VER/$KER_SRC.tar.xz -P $TARBALL_PATH
            fi
            # decompress source code packet
@@ -130,15 +130,15 @@
        fi
    fi
    pr_info "Start build linux kernel source code"
    cd $KER_PATH
    if [ ! -s arch/$ARCH/configs/$defconfig -a -s $patch_file ] ; then
        pr_warn "do patch for $KER_PATH now..."
        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
yocto/build.sh
@@ -136,7 +136,7 @@
            # Download source code packet
            if [ ! -s $TARBALL_PATH/$YCT_SRC.tar.xz ] ; then
                wget $BSP_URL/bsp/$BSP_VER/$YCT_SRC.tar.xz -P $TARBALL_PATH
                wget $BSP_URL/imx/bsp/$BSP_VER/$YCT_SRC.tar.xz -P $TARBALL_PATH
            fi
            # decompress source code packet