2023-03-09 18:30:40 +01:00
|
|
|
#
|
|
|
|
|
# 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/
|
|
|
|
|
#
|
2019-11-19 23:25:39 +01:00
|
|
|
source "${BASH_SOURCE%/*}/include/rockchip64_common.inc"
|
|
|
|
|
|
|
|
|
|
case $BRANCH in
|
|
|
|
|
|
|
|
|
|
legacy)
|
|
|
|
|
|
|
|
|
|
KERNELSOURCE='https://github.com/friendlyarm/kernel-rockchip'
|
2022-10-08 13:25:04 +02:00
|
|
|
export KERNEL_MAJOR_MINOR="4.4" # Major and minor versions of this kernel.
|
2019-11-19 23:25:39 +01:00
|
|
|
KERNELBRANCH='branch:nanopi4-linux-v4.4.y'
|
|
|
|
|
KERNELDIR='linux-rockchip64'
|
|
|
|
|
KERNELCONFIG='linux-rockchip64'
|
|
|
|
|
|
2022-10-08 13:18:00 +02:00
|
|
|
;;
|
2019-11-19 23:25:39 +01:00
|
|
|
|
|
|
|
|
esac
|
|
|
|
|
|
2020-05-03 19:15:46 +02:00
|
|
|
prepare_boot_configuration
|
2019-12-01 22:24:16 +01:00
|
|
|
|
2022-10-08 13:18:00 +02:00
|
|
|
atf_custom_postprocess() {
|
2019-12-01 22:24:16 +01:00
|
|
|
:
|
|
|
|
|
}
|