Skip to content

Commit

Permalink
rockchip-rk3588: current (6.8) and edge (6.10) - use major+minor …
Browse files Browse the repository at this point in the history
…in kernel config filenames

- `LINUXCONFIG="linux-rockchip-rk3588-${KERNEL_MAJOR_MINOR}" # Attention: not -${BRANCH} (edge/current/legacy), -but ${KERNEL_MAJOR_MINOR} thus 6.8 / 6.10 etc`
  • Loading branch information
rpardini committed Jun 9, 2024
1 parent e95b619 commit b6798c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/sources/families/rockchip-rk3588.conf
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ case $BRANCH in

edge)
LINUXFAMILY=rockchip-rk3588
LINUXCONFIG='linux-rockchip-rk3588-'$BRANCH
KERNEL_MAJOR_MINOR="6.10" # Major and minor versions of this kernel.
KERNEL_MAJOR_MINOR="6.10" # Major and minor versions of this kernel.
LINUXCONFIG="linux-rockchip-rk3588-${KERNEL_MAJOR_MINOR}" # Attention: not -${BRANCH} (edge/current/legacy), but -${KERNEL_MAJOR_MINOR} thus 6.8 / 6.10 etc
# No need, because default: KERNELPATCHDIR='archive/rockchip-rk3588-6.10'
;;

oldedge)
current)
LINUXFAMILY=rockchip-rk3588
LINUXCONFIG='linux-rockchip-rk3588-'$BRANCH
KERNEL_MAJOR_MINOR="6.8" # Major and minor versions of this kernel.
KERNEL_MAJOR_MINOR="6.8" # Major and minor versions of this kernel.
LINUXCONFIG="linux-rockchip-rk3588-${KERNEL_MAJOR_MINOR}" # Attention: not -${BRANCH} (edge/current/legacy), -but ${KERNEL_MAJOR_MINOR} thus 6.8 / 6.10 etc
# No need, because default: KERNELPATCHDIR='archive/rockchip-rk3588-6.8'
;;

Expand Down

0 comments on commit b6798c2

Please sign in to comment.