Skip to content

Commit

Permalink
Merge identical parameter assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
ophub committed Jul 2, 2023
1 parent 4081445 commit 458fc8c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rebuild
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ default_tags="stable"
# Set the tags(kernel_xxx) of the specific kernel, such as 5.15.y, 6.1.y, etc.
specific_tags="${default_tags}"
# Set the list of kernels used by default
stable_kernel=("6.1.1" "5.15.1")
flippy_kernel=("6.1.1" "5.15.1")
dev_kernel=("6.1.1" "5.15.1")
beta_kernel=("6.1.1" "5.15.1")
rk3588_kernel=("5.10.1")
stable_kernel=("6.1.1" "5.15.1")
flippy_kernel=(${stable_kernel[*]})
dev_kernel=(${stable_kernel[*]})
beta_kernel=(${stable_kernel[*]})
# Set to automatically use the latest kernel
auto_kernel="true"

Expand Down

0 comments on commit 458fc8c

Please sign in to comment.