From b6fea441d1850ffd512bcd1d5f65091fdf6e5157 Mon Sep 17 00:00:00 2001 From: Igor Date: Wed, 4 Oct 2023 14:30:52 +0200 Subject: [PATCH] Optimise testing targets (#5785) We don't need to run so many duplicated tested, especially on slow 32b devices. --- config/boards/odroidxu4.conf | 1 + config/boards/orangepi5-plus.conf | 1 + config/boards/orangepi5.conf | 1 + config/boards/orangepizero.csc | 1 + config/boards/tinkerboard-2.csc | 1 + config/boards/tinkerboard.conf | 1 + config/boards/udoo.csc | 1 + config/boards/zeropi.csc | 1 + 8 files changed, 8 insertions(+) diff --git a/config/boards/odroidxu4.conf b/config/boards/odroidxu4.conf index 50f715a255..31001215f5 100644 --- a/config/boards/odroidxu4.conf +++ b/config/boards/odroidxu4.conf @@ -6,3 +6,4 @@ BOOTCONFIG="odroid-xu4_defconfig" SERIALCON="ttySAC2" KERNEL_TARGET="current,edge" FULL_DESKTOP="yes" +KERNEL_TEST_TARGET="current" diff --git a/config/boards/orangepi5-plus.conf b/config/boards/orangepi5-plus.conf index 4e9f52eb64..d786d10768 100644 --- a/config/boards/orangepi5-plus.conf +++ b/config/boards/orangepi5-plus.conf @@ -5,6 +5,7 @@ BOARD_MAINTAINER="efectn" BOOTCONFIG="orangepi_5_plus_defconfig" # vendor name, not standard, see hook below, set BOOT_SOC below to compensate BOOT_SOC="rk3588" KERNEL_TARGET="legacy,edge" +KERNEL_TEST_TARGET="legacy" FULL_DESKTOP="yes" BOOT_LOGO="desktop" BOOT_FDT_FILE="rockchip/rk3588-orangepi-5-plus.dtb" diff --git a/config/boards/orangepi5.conf b/config/boards/orangepi5.conf index 04ba0b581e..3977e4c099 100644 --- a/config/boards/orangepi5.conf +++ b/config/boards/orangepi5.conf @@ -6,6 +6,7 @@ BOOTCONFIG="orangepi_5_defconfig" # vendor name, not standard, see hook below, s BOOTCONFIG_SATA="orangepi_5_sata_defconfig" BOOT_SOC="rk3588" KERNEL_TARGET="legacy,edge" +KERNEL_TEST_TARGET="legacy" FULL_DESKTOP="yes" BOOT_LOGO="desktop" BOOT_FDT_FILE="rockchip/rk3588s-orangepi-5.dtb" diff --git a/config/boards/orangepizero.csc b/config/boards/orangepizero.csc index 013760ee90..b8f67243ae 100644 --- a/config/boards/orangepizero.csc +++ b/config/boards/orangepizero.csc @@ -10,3 +10,4 @@ DEFAULT_CONSOLE="both" HAS_VIDEO_OUTPUT="yes" SERIALCON="ttyS0,ttyGS0" KERNEL_TARGET="legacy,current,edge" +KERNEL_TEST_TARGET="current" diff --git a/config/boards/tinkerboard-2.csc b/config/boards/tinkerboard-2.csc index c0af67aa10..dbe12a6318 100644 --- a/config/boards/tinkerboard-2.csc +++ b/config/boards/tinkerboard-2.csc @@ -4,6 +4,7 @@ BOARDFAMILY="rockchip64" BOARD_MAINTAINER="" BOOTCONFIG="tinker-2-rk3399_defconfig" KERNEL_TARGET="current,edge" +KERNEL_TEST_TARGET="current" FULL_DESKTOP="yes" BOOT_LOGO="desktop" BOOT_FDT_FILE="rockchip/rk3399-tinker-2.dtb" diff --git a/config/boards/tinkerboard.conf b/config/boards/tinkerboard.conf index fdc55b4c0a..283d876661 100644 --- a/config/boards/tinkerboard.conf +++ b/config/boards/tinkerboard.conf @@ -6,4 +6,5 @@ BOOTCONFIG="tinker-rk3288_defconfig" MODULES_LEGACY="hci_uart rfcomm hidp 8723bs" DEFAULT_OVERLAYS="i2c1 i2c4 spi2 spidev2 uart1 uart2" KERNEL_TARGET="current,edge" +KERNEL_TEST_TARGET="current" FULL_DESKTOP="yes" diff --git a/config/boards/udoo.csc b/config/boards/udoo.csc index c6a6c49055..0c7b7cf0e6 100644 --- a/config/boards/udoo.csc +++ b/config/boards/udoo.csc @@ -4,4 +4,5 @@ BOARDFAMILY="imx6" BOARD_MAINTAINER="" BOOTCONFIG="udoo_defconfig" KERNEL_TARGET="current,edge" +KERNEL_TEST_TARGET="current" FULL_DESKTOP="yes" diff --git a/config/boards/zeropi.csc b/config/boards/zeropi.csc index 5c747a0273..313407683c 100644 --- a/config/boards/zeropi.csc +++ b/config/boards/zeropi.csc @@ -9,3 +9,4 @@ DEFAULT_CONSOLE="serial" SERIALCON="ttyS0" HAS_VIDEO_OUTPUT="no" KERNEL_TARGET="legacy,current,edge" +KERNEL_TEST_TARGET="legacy"