From a52243ea04690073744b3235d2958cdf7aa441f0 Mon Sep 17 00:00:00 2001 From: Sertonix Date: Tue, 28 Oct 2025 09:36:34 +0100 Subject: [PATCH] Makefile: Install netboot on non-s390 architectures MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit mk-s390image can be used on all arches. mk-pxelinux-ramfs probably only works on a s390 system but it should also not hurt to install since it's just an example. Github-ID: https://github.com/ibm-s390-linux/s390-tools/pull/193 Signed-off-by: Sertonix Reviewed-by: Steffen Eiden Reviewed-by: Jan Höppner Signed-off-by: Jan Höppner --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 442c7dd7..329aebfa 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ TOOL_DIRS = zipl zdump fdasd dasdfmt dasdview tunedasd \ else BASELIB_DIRS = LIB_DIRS = libpv -TOOL_DIRS = rust +TOOL_DIRS = netboot rust endif SUB_DIRS = $(BASELIB_DIRS) $(LIB_DIRS) $(TOOL_DIRS)