26 lines
639 B
Plaintext
26 lines
639 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-starfive2-${BRANCH}"
|
|
LINUXFAMILY="starfive2"
|
|
|
|
case "${BRANCH}" in
|
|
|
|
edge)
|
|
declare -g KERNEL_MAJOR_MINOR="5.15" # Major and minor versions of this kernel. For mainline caching.
|
|
KERNELSOURCE='https://github.com/starfive-tech/linux'
|
|
KERNELBRANCH="branch:JH7110_VisionFive2_devel"
|
|
KERNELPATCHDIR="starfive2-${BRANCH}"
|
|
;;
|
|
|
|
esac
|
|
|
|
#KERNELPATCHDIR="archive/starfive2-${KERNEL_MAJOR_MINOR}" # Don't use symlinks.
|