guowenxue
2024-02-28 32ad5888c3b424b8e276f1dc7a32dc50061a62b0
Build:IGKBoard-All: Update build.sh

Move config.txt to images folder

Signed-off-by: guowenxue <guowenxue@gmail.com>
2 files renamed
2 files modified
8 ■■■■ changed files
images/build.sh 5 ●●●● patch | view | raw | blame | history
images/patches/config-igkboard-imx6ull.txt patch | view | raw | blame | history
images/patches/config-igkboard-imx8mp.txt patch | view | raw | blame | history
yocto/build.sh 3 ●●●● patch | view | raw | blame | history
images/build.sh
@@ -23,7 +23,6 @@
# shell script will exit once get command error
set -e
set -u
#+-------------------------+
#| Shell script functions  |
@@ -213,8 +212,12 @@
    pr_info "start install linux kernel images"
    mount -t vfat /dev/mapper/${LOOP_DEV}p1 ${MNT_POINT}
    cp -rf $PRJ_PATH/patches/config-${BOARD}.txt ${MNT_POINT}/config.txt
    cp -rf $KERNEL_BINPATH/$KERNEL_IMAGE ${MNT_POINT}/
    cp -rf $KERNEL_BINPATH/${BOARD}.dtb ${MNT_POINT}/
    if [ -d $KERNEL_BINPATH/overlays ] ; then
        cp -rf $KERNEL_BINPATH/overlays ${MNT_POINT}/
    fi
    sync && umount ${MNT_POINT}
images/patches/config-igkboard-imx6ull.txt
images/patches/config-igkboard-imx8mp.txt
yocto/build.sh
@@ -7,7 +7,7 @@
PRJ_PATH=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
# top project absolute path
TOP_PATH=$(realpath $PRJ_PATH/..)
TOP_PATH=$PRJ_PATH/..
# prefix install path
PRFX_PATH=$PRJ_PATH/install
@@ -157,6 +157,7 @@
    BSP_VER=`echo $BSP_VER | sed 's/imx/lf/'`
    cp $TOP_PATH/bootloader/patches/${BOARD}/uboot-imx-${BSP_VER}.patch $PRJ_PATH/$YCT_META/recipes-bsp/u-boot/files/
    cp $TOP_PATH/kernel/patches/${BOARD}/linux-imx-${BSP_VER}.patch $PRJ_PATH/$YCT_META/recipes-kernel/linux/files/
    cp $TOP_PATH/images/patches/config-*.txt $PRJ_PATH/$YCT_META/recipes-bsp/u-boot/files/
    if [ ! -e $YCT_PATH/sources/$YCT_META ] ; then
        ln -s $PRJ_PATH/$YCT_META $YCT_PATH/sources/$YCT_META