From: Tomasz Maciej Nowak Date: Wed, 18 Jun 2025 16:59:35 +0000 (+0200) Subject: tegra: add 6.12 as testing kernel X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d3cfe8eb077a95addd57ff7aeaf4c6fb3d993b4;p=thirdparty%2Fopenwrt.git tegra: add 6.12 as testing kernel Introduce LED migration script as the names have changed. Signed-off-by: Tomasz Maciej Nowak Link: https://patchwork.ozlabs.org/project/openwrt/patch/20250618170045.473711-8-tmn505@terefe.re/ Signed-off-by: Hauke Mehrtens --- diff --git a/target/linux/tegra/Makefile b/target/linux/tegra/Makefile index b917ea909d6..9e1bf15e7f4 100644 --- a/target/linux/tegra/Makefile +++ b/target/linux/tegra/Makefile @@ -13,6 +13,7 @@ CPU_SUBTYPE := vfpv3-d16 SUBTARGETS := generic KERNEL_PATCHVER := 6.6 +KERNEL_TESTING_PATCHVER := 6.12 include $(INCLUDE_DIR)/target.mk diff --git a/target/linux/tegra/base-files/etc/uci-defaults/04_led_migration b/target/linux/tegra/base-files/etc/uci-defaults/04_led_migration new file mode 100644 index 00000000000..20bfab26335 --- /dev/null +++ b/target/linux/tegra/base-files/etc/uci-defaults/04_led_migration @@ -0,0 +1,16 @@ +. /lib/functions.sh +. /lib/functions/migrations.sh + +board=$(board_name) + +case "$board" in +compulab,trimslice) + migrate_leds "trimslice:green:right=green:indicator-2" "trimslice:green:left=green:indicator-3" + ;; +esac + +remove_devicename_leds + +migrations_apply system + +exit 0