From 7809305bdea03b9739029042b3156814cf3ea899 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Z=C3=BCht=C3=BC=20Eren=20=C4=B0ncekara?= Date: Fri, 14 Aug 2026 11:47:49 +0300 Subject: [PATCH] distro: t3-gem-o1: install batman-adv kernel module The batman-adv module is built by the kernel recipe but was missing from the local apt install list, so it did not end up in the minimal image and had to be copied to the board manually. Required for batman-adv based mesh networking over IBSS on RTL8822CS. --- distro/scripts/t3-gem-o1/install-local-apt.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/distro/scripts/t3-gem-o1/install-local-apt.sh b/distro/scripts/t3-gem-o1/install-local-apt.sh index 8b902a7..119855e 100755 --- a/distro/scripts/t3-gem-o1/install-local-apt.sh +++ b/distro/scripts/t3-gem-o1/install-local-apt.sh @@ -21,6 +21,7 @@ apt-get update -y apt-get install -y \ kernel-image-image-6.12.24-ti \ kernel-module-at24-6.12.24-ti \ + kernel-module-batman-adv-6.12.24-ti \ kernel-module-bluetooth-6.12.24-ti \ kernel-module-br-netfilter-6.12.24-ti \ kernel-module-bridge-6.12.24-ti \