From 4b628028632d8f5d5ce8c3005c7db1c58246dcd6 Mon Sep 17 00:00:00 2001 From: Muhammad Usama Anjum Date: Mon, 28 Oct 2024 18:04:07 +0500 Subject: [PATCH] config: docker: Add gawk package to all build containers The usage of gawk has recently appeared in the linux kernel. The build fails if it isn't found. Add the gawk package. Signed-off-by: Muhammad Usama Anjum --- config/docker/base/host-tools.jinja2 | 1 + 1 file changed, 1 insertion(+) diff --git a/config/docker/base/host-tools.jinja2 b/config/docker/base/host-tools.jinja2 index 7b2eee5443..4d4c5a4e59 100644 --- a/config/docker/base/host-tools.jinja2 +++ b/config/docker/base/host-tools.jinja2 @@ -66,6 +66,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ dwarves \ flex \ g++ \ + gawk \ gcc \ git \ kmod \