`media`: Oleg dropped his `kernel-4.19` branch, so drop `legacy` from `bananapir2pro`, `station-m2`, `station-p2`

This commit is contained in:
Ricardo Pardini 2023-07-25 13:43:46 +02:00 committed by Igor
parent 5cdc019a24
commit f4f3409a67
4 changed files with 9 additions and 20 deletions

View File

@ -3,7 +3,7 @@ BOARD_NAME="Banana Pi R2 Pro"
BOARDFAMILY="media" BOARDFAMILY="media"
BOARD_MAINTAINER="" BOARD_MAINTAINER=""
BOOTCONFIG="bpi-r2pro-rk3568_defconfig" BOOTCONFIG="bpi-r2pro-rk3568_defconfig"
KERNEL_TARGET="legacy,current,edge" KERNEL_TARGET="current,edge"
FULL_DESKTOP="yes" FULL_DESKTOP="yes"
BOOT_LOGO="desktop" BOOT_LOGO="desktop"
BOOT_FDT_FILE="rockchip/rk3568-bpi-r2-pro.dtb" BOOT_FDT_FILE="rockchip/rk3568-bpi-r2-pro.dtb"

View File

@ -3,7 +3,7 @@ BOARD_NAME="Station M2"
BOARDFAMILY="media" BOARDFAMILY="media"
BOARD_MAINTAINER="150balbes" BOARD_MAINTAINER="150balbes"
BOOTCONFIG="firefly-m2-rk3568_defconfig" BOOTCONFIG="firefly-m2-rk3568_defconfig"
KERNEL_TARGET="legacy,current,edge" KERNEL_TARGET="current,edge"
FULL_DESKTOP="yes" FULL_DESKTOP="yes"
BOOT_LOGO="desktop" BOOT_LOGO="desktop"
BOOT_FDT_FILE="rockchip/rk3566-firefly-roc-pc.dtb" BOOT_FDT_FILE="rockchip/rk3566-firefly-roc-pc.dtb"

View File

@ -3,7 +3,7 @@ BOARD_NAME="Station P2"
BOARDFAMILY="media" BOARDFAMILY="media"
BOARD_MAINTAINER="150balbes" BOARD_MAINTAINER="150balbes"
BOOTCONFIG="firefly-p2-rk3568_defconfig" BOOTCONFIG="firefly-p2-rk3568_defconfig"
KERNEL_TARGET="legacy,current,edge" KERNEL_TARGET="current,edge"
FULL_DESKTOP="yes" FULL_DESKTOP="yes"
BOOT_LOGO="desktop" BOOT_LOGO="desktop"
BOOT_FDT_FILE="rockchip/rk3568-firefly-roc-pc.dtb" BOOT_FDT_FILE="rockchip/rk3568-firefly-roc-pc.dtb"

View File

@ -36,23 +36,12 @@ case $BRANCH in
legacy) legacy)
KERNELDIR='linux-rockchip64' KERNELDIR='linux-rockchip64'
if [[ $BOARD == station-p2 || $BOARD == station-m2 || $BOARD == bananapir2pro ]]; then KERNELSOURCE='https://github.com/150balbes/rockchip-kernel'
KERNELSOURCE='https://github.com/150balbes/rockchip-kernel' declare -g KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel.
declare -g KERNEL_MAJOR_MINOR="4.19" # Major and minor versions of this kernel. KERNELBRANCH='branch:kernel-5.10'
KERNELBRANCH='branch:kernel-4.19' LINUXFAMILY=media
KERNELPATCHDIR='station-p2-'$BRANCH LINUXCONFIG='linux-media-'$BRANCH
LINUXFAMILY=station-p2 KERNELPATCHDIR='media-'$BRANCH
LINUXCONFIG='linux-station-p2-'$BRANCH
EXTRAWIFI="no"
WIREGUARD="no"
else
KERNELSOURCE='https://github.com/150balbes/rockchip-kernel'
declare -g KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel.
KERNELBRANCH='branch:kernel-5.10'
LINUXFAMILY=media
LINUXCONFIG='linux-media-'$BRANCH
KERNELPATCHDIR='media-'$BRANCH
fi
;; ;;
current) current)