File tree Expand file tree Collapse file tree 2 files changed +23
-7
lines changed Expand file tree Collapse file tree 2 files changed +23
-7
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,24 @@ OVERLAY_PREFIX='rk35xx'
16
16
case $BRANCH in
17
17
18
18
legacy)
19
- UBOOT_COMPILER="aarch64-linux-gnu-"
20
- UBOOT_USE_GCC='< 8.0'
21
19
BOOTDIR='u-boot-rockchip64'
20
+ declare -g KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel.
21
+ declare -g -i KERNEL_GIT_CACHE_TTL=120 # 2 minutes; this is a high-traffic repo
22
22
KERNELSOURCE='https://github.com/armbian/linux-rockchip.git'
23
23
KERNELBRANCH='branch:rk-5.10-rkr6'
24
- declare -g -i KERNEL_GIT_CACHE_TTL=120 # 2 minutes; this is a high-traffic repo
25
- declare -g KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel.
26
24
KERNELPATCHDIR='rk35xx-legacy'
27
25
28
26
;;
29
27
28
+ vendor)
29
+ BOOTDIR='u-boot-rockchip64'
30
+ declare -g KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel.
31
+ declare -g -i KERNEL_GIT_CACHE_TTL=120 # 2 minutes; this is a high-traffic repo
32
+ KERNELSOURCE='https://github.com/amazingfate/linux-rockchip.git'
33
+ KERNELBRANCH='branch:rk-6.1-rkr1'
34
+ KERNELPATCHDIR='rk35xx-vendor-6.1'
35
+ ;;
36
+
30
37
esac
31
38
32
39
prepare_boot_configuration
Original file line number Diff line number Diff line change @@ -18,17 +18,26 @@ case $BRANCH in
18
18
19
19
legacy)
20
20
BOOTSCRIPT='boot-rk3588-legacy.cmd:boot.cmd'
21
- UBOOT_COMPILER="aarch64-linux-gnu-"
22
- UBOOT_USE_GCC='< 8.0'
23
21
BOOTDIR='u-boot-rockchip64'
24
- KERNELSOURCE='https://github.com/armbian/linux-rockchip.git'
25
22
declare -g KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel.
26
23
declare -g -i KERNEL_GIT_CACHE_TTL=120 # 2 minutes; this is a high-traffic repo
24
+ KERNELSOURCE='https://github.com/armbian/linux-rockchip.git'
27
25
KERNELBRANCH='branch:rk-5.10-rkr6'
28
26
KERNELPATCHDIR='rk35xx-legacy'
29
27
LINUXFAMILY=rk35xx
30
28
;;
31
29
30
+ vendor)
31
+ BOOTSCRIPT='boot-rk3588-legacy.cmd:boot.cmd'
32
+ BOOTDIR='u-boot-rockchip64'
33
+ declare -g KERNEL_MAJOR_MINOR="6.1" # Major and minor versions of this kernel.
34
+ declare -g -i KERNEL_GIT_CACHE_TTL=120 # 2 minutes; this is a high-traffic repo
35
+ KERNELSOURCE='https://github.com/amazingfate/linux-rockchip.git'
36
+ KERNELBRANCH='branch:rk-6.1-rkr1'
37
+ KERNELPATCHDIR='rk35xx-vendor-6.1'
38
+ LINUXFAMILY=rk35xx
39
+ ;;
40
+
32
41
edge)
33
42
LINUXFAMILY=rockchip-rk3588
34
43
LINUXCONFIG='linux-rockchip-rk3588-'$BRANCH
You can’t perform that action at this time.
0 commit comments