From 976b6ad880e4caa4b79de07d28a0ff11ac093862 Mon Sep 17 00:00:00 2001 From: Vivek Puar Date: Mon, 19 May 2025 12:04:30 +0530 Subject: [PATCH] initramfs-test-full: Add more utils Add the following utilities in 'initramfs-test-full-image.bb' - net-tools (for connectivity functionality - e.g. ifconfig, netstat, route are crucial for network diagnostics and configuration) - rng-tools (for cryptography, secure communications, and randomness) Signed-off-by: Vivek Puar --- recipes-test/images/initramfs-test-full-image.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-test/images/initramfs-test-full-image.bb b/recipes-test/images/initramfs-test-full-image.bb index 402db3441..77c32a202 100644 --- a/recipes-test/images/initramfs-test-full-image.bb +++ b/recipes-test/images/initramfs-test-full-image.bb @@ -11,6 +11,8 @@ PACKAGE_INSTALL += " \ ncurses \ ncurses-terminfo \ ncurses-terminfo-base \ + net-tools \ + rng-tools \ stress-ng \ util-linux \ util-linux-chrt \