1
0

update specialFunctions.sh

This commit is contained in:
Jybz 2019-10-02 20:31:02 +00:00
parent cbfb910b43
commit 0a9ac34273

View File

@ -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
}