From 580b4be2ca831ddb883fb2eeb1473e8221219be1 Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Fri, 1 Mar 2024 17:40:38 +0100 Subject: [PATCH] nwl-test-image: Add some test tools - hostapd to create access points - gps-utils to test the gnss receiver - can-utils to test the can interfaces - libgpiod-tools to toggle the gpios - chrony to get the time set properly on the target and help reading the logs - minicom to debug the serial ports id:502637 --- .../recipes-core/images/nwl-test-image.bb | 1 + .../packagegroup-nwl-test-tools.bb | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 layers/meta-nwl-distro/recipes-core/packagegroups/packagegroup-nwl-test-tools.bb diff --git a/layers/meta-nwl-distro/recipes-core/images/nwl-test-image.bb b/layers/meta-nwl-distro/recipes-core/images/nwl-test-image.bb index 6a86f7d..afee7fb 100644 --- a/layers/meta-nwl-distro/recipes-core/images/nwl-test-image.bb +++ b/layers/meta-nwl-distro/recipes-core/images/nwl-test-image.bb @@ -24,6 +24,7 @@ IMAGE_INSTALL:append = " \ packagegroup-core-full-cmdline \ swupdate-www \ nwl-tests \ + packagegroup-nwl-test-tools \ " diff --git a/layers/meta-nwl-distro/recipes-core/packagegroups/packagegroup-nwl-test-tools.bb b/layers/meta-nwl-distro/recipes-core/packagegroups/packagegroup-nwl-test-tools.bb new file mode 100644 index 0000000..ae05658 --- /dev/null +++ b/layers/meta-nwl-distro/recipes-core/packagegroups/packagegroup-nwl-test-tools.bb @@ -0,0 +1,17 @@ +inherit packagegroup + +DESCRIPTION = "Common tools convenient for testing the features of NWL" + + +RDEPENDS:${PN} = " \ + hostapd \ + \ + gps-utils \ + \ + can-utils \ + \ + libgpiod-tools \ + \ + chrony \ + minicom \ +"