From 32ad5888c3b424b8e276f1dc7a32dc50061a62b0 Mon Sep 17 00:00:00 2001 From: guowenxue <guowenxue@gmail.com> Date: Wed, 28 Feb 2024 20:11:25 +0800 Subject: [PATCH] Build:IGKBoard-All: Update build.sh --- images/build.sh | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/images/build.sh b/images/build.sh index f3f088b..42b5e46 100755 --- a/images/build.sh +++ b/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} -- Gitblit v1.9.1