mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* Add / modify (c) in bash scripts Signed-off-by: Igor <igor@armbian.com> * Add (c) to the source config files --------- Signed-off-by: Igor <igor@armbian.com>
27 lines
669 B
Plaintext
27 lines
669 B
Plaintext
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (c) 2013-2023 Igor Pecovnik, igor@armbian.com
|
|
#
|
|
# This file is a part of the Armbian Build Framework
|
|
# https://github.com/armbian/build/
|
|
#
|
|
BOOTBRANCH='tag:v2021.04'
|
|
|
|
export KERNEL_MAJOR_MINOR="5.15" # Major and minor versions of this kernel.
|
|
KERNELBRANCH='branch:linux-5.15.y'
|
|
|
|
ARCH=arm64
|
|
#UBOOT_TARGET_MAP=";;u-boot.bin"
|
|
UBOOT_TARGET_MAP="u-boot-dtb.img;;u-boot.bin:u-boot.bin u-boot-dtb.img"
|
|
KERNEL_IMAGE_TYPE=Image
|
|
ATF_COMPILE="no"
|
|
|
|
BOOTSCRIPT='boot-qemu.cmd:boot.cmd'
|
|
BOOTPATCHDIR="u-boot-arm-64"
|
|
BOOTDIR='u-boot'
|
|
|
|
write_uboot_platform() {
|
|
dd if=$1/u-boot.bin of=$2 bs=32k seek=1 status=noxfer > /dev/null 2>&1
|
|
}
|