From 0a9ac34273421d9e3b070d1d2aefb649289f874d Mon Sep 17 00:00:00 2001 From: Jybz Date: Wed, 2 Oct 2019 20:31:02 +0000 Subject: [PATCH] update specialFunctions.sh --- platforms/bananaPro/specialFunctions.sh | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/platforms/bananaPro/specialFunctions.sh b/platforms/bananaPro/specialFunctions.sh index b0dc357..845bda6 100644 --- a/platforms/bananaPro/specialFunctions.sh +++ b/platforms/bananaPro/specialFunctions.sh @@ -21,27 +21,40 @@ TYPE_FAT32LBA=c FDISK_SCRIPT="${NEW_PART}\n${PRIMARY}\n${PART_BOOT}\n${PART_BOOT_FIRST_SECTOR}\n${PART_BOOT_SIZE}\n${CHANGE_TYPE}\n${TYPE_FAT32LBA}\n${NEW_PART}\n${PRIMARY}\n${PART_ROOT}\n${PART_ROOT_FIRST_SECTOR}\n${PART_ROOT_SIZE}\n${CHANGE_BOOTFLAG}\n${PART_BOOT}\n${CHANGE_BOOTFLAG}\n${PART_ROOT}\n${APPLY}\n" + function preImgCreation() { title "Creating Banana Pro image" + #Nothing to download. return 0 } function postPrepareChroot() { - #Nothing to do. (Except replacing default function.) + info "copying update_testing/kernel-desktop in ${BUILD_PATH}/root" + /usr/bin/cp --preserve=mode "${CONFIG_PATH}/kernel-desktop-5.3.1-2.mga7-1-1.mga7.armv7hl.rpm" "${BUILD_PATH}/root/" return 0 } function bunrningBootloader() { - #Nothing to do. (Except replacing default function.) + # DEVICE is set just before this function and looped. + dd if=${CONFIG_PATH}/u-boot-sunxi-with-spl.bin of=${DEVICE} bs=1024 seek=8 return 0 } function copyingCustomSystem() { - #Nothing to do. (Except replacing default function.) + #${BOOT} defined to the path to the mounted boot partition. +# UBOOTCMD="${CONFIG_PATH}/uEnv.txt" + UBOOTCMD="${CONFIG_PATH}/boot.scr" + DTB="${CONFIG_PATH}/sun7i-a20-bananapro.dtb" + VMLINUZ_LINK="${CONFIG_PATH}/vmlinuz" + VMLINUZ_KERNEL="${CONFIG_PATH}/vmlinuz-5.3.1-desktop-2.mga7" + /usr/bin/cp --preserve=mode "${DTB}" "${BOOT}" + /usr/bin/cp --preserve=mode "${UBOOTCMD}" "${BOOT}/" + /usr/bin/cp --preserve=mode "${VMLINUZ_LINK}" "${BOOT}/" + /usr/bin/cp --preserve=mode "${VMLINUZ_KERNEL}" "${BOOT}/" return 0 }