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>
24 lines
526 B
Plaintext
24 lines
526 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/
|
|
#
|
|
ARCH="riscv64"
|
|
|
|
LINUXCONFIG="linux-starfive-${BRANCH}"
|
|
LINUXFAMILY="starfive"
|
|
|
|
case "${BRANCH}" in
|
|
|
|
edge)
|
|
declare -g KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel. For mainline caching.
|
|
KERNELBRANCH='branch:linux-6.1.y'
|
|
;;
|
|
|
|
esac
|
|
|
|
KERNELPATCHDIR="archive/starfive-${KERNEL_MAJOR_MINOR}" # Don't use symlinks.
|