* Changes of existing tools: dbginfo.sh: Add details on CPU-measurement dbginfo.sh: Add new crypto command dbginfo.sh: Add overview commands and crypto update dbginfo.sh: Adding kdump info dbginfo.sh: Removing outdated email references dbginfo.sh: Rework network section dbginfo.sh: Update copyright 2nd year pvimg: Add '--(enable|disable)-image-encryption' flags to 'pvimg create' pvimg: Add '--cck ' command line option and make '--comm-key' an alias pvimg: Add '--hdr-key' command line option to 'pvimg create' pvimg: Rename '--key' into '--hdr-key' and use '--key' as an alias (for 'pvimg info') pvsecret: Add support for retrievable secrets ziorep_config: Add PCHID field to adapter report ziorep_traffic: Add DEVBUSID column to traffic report ziorep_utilization: Add --fcp-device parameter to print virtual adapter report ziorep_utilization: Add PCHID column to physical adapter report ziorep_utilization: Now prints only physical adapter report by default ziorep_utilization: Swap Bus-ID and CHPID columns in virtual adapter report zipl/boot: Increase section size for eckd_mv dumper zkey: Add support for listing and importing protected virtualization secrets * Bug Fixes: chpstat: Fix invalid utilization data on older kernels opticsmon: Fix runaway loop in on_link_change() zipl: Update inline assembly for GCC 15 zipl_helper.device-mapper: Add missed step in logical device resolution - Revendored vendor.tar.gz - Removed obsolete patches: * s390-tools-01-zipl_helper.device-mapper-add-missed-step-in-logical.patch * s390-tools-02-zipl-src-fix-imprecise-check-that-file-is-on-specifi.patch * s390-tools-General-update-01.patch * s390-tools-General-update-02.patch * s390-tools-General-update-03.patch * s390-tools-General-update-04.patch * s390-tools-General-update-05.patch * s390-tools-General-update-06.patch * s390-tools-General-update-07.patch * s390-tools-General-update-08.patch * s390-tools-General-update-09.patch * s390-tools-General-update-10.patch * s390-tools-General-update-11.patch * s390-tools-General-update-12.patch * s390-tools-Additional-update-01.patch * s390-tools-Additional-update-02.patch * s390-tools-pvimg-info-command-01.patch * s390-tools-pvimg-info-command-02.patch * s390-tools-pvimg-info-command-03.patch * s390-tools-Support-unencrypted-SE-images-01.patch * s390-tools-pvimg-info-command-04.patch * s390-tools-pvimg-additional-01.patch * s390-tools-01-zkey-Add-support-for-retrieving-a-list-of-ultravisor-secrets.patch * s390-tools-02-zkey-Add-the--pvsecrets-list-command.patch * s390-tools-03-zkey-Add-PVSECRETS-AES-key-type.patch * s390-tools-04-zkey-Add-the-pvsecrets-import-command.patch * s390-tools-05-zkey-Reject-key-generation-and-APQN-association-for-PVSECRET-AES-keys.patch * s390-tools-06-zkey-Reject-re-enciphering-of-PVSECRET-AES-keys.patch * s390-tools-07-zkey-Support-validation-of-key-of-type-PVSECRET-AES.patch * s390-tools-08-rust-pvimg-Fix-flag-parsing-for-allowing-dump.patch * s390-tools-09-rust-pvimg-Document-the-change-from--comm-key-to--cck.patch OBS-URL: https://build.opensuse.org/package/show/Base:System/s390-tools?expand=0&rev=249
93 lines
3.6 KiB
Diff
93 lines
3.6 KiB
Diff
From 0748d365a60477c96cb9f6a12e9dbe547d549e1f Mon Sep 17 00:00:00 2001
|
|
From: Marc Hartmayer <mhartmay@linux.ibm.com>
|
|
Date: Tue, 12 Mar 2024 09:33:19 +0000
|
|
Subject: [PATCH] genprotimg/**/Makefile: Fix staged installs
|
|
|
|
Fix the support for staged installs. The Makefile variable `PKGDATADIR`
|
|
uses `DESTDIR` for all Makefile target, but actually it should only be
|
|
used for the `install*` and `uninstall*` targets. [1] Fix this by using
|
|
`DESTDIR` only for `install*` targets - uninstall* targets are not
|
|
supported by s390-tools.
|
|
|
|
Before this change, if `DESTDIR` was set for staged installs,
|
|
`genprotimg` has tried to find the bootloader binaries at the temporary
|
|
installation path `$DESTDIR$(TOOLS_DATADIR)/genprotimg/` instead of
|
|
`$(TOOLS_DATADIR)/genprotimg`.
|
|
|
|
[1] https://www.gnu.org/prep/standards/html_node/DESTDIR.html
|
|
|
|
Fixes: 65b9fc442c1a ("genprotimg: introduce new tool for the creation of PV images")
|
|
Reviewed-by: Steffen Eiden <seiden@linux.ibm.com>
|
|
Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
|
|
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
|
|
---
|
|
genprotimg/Makefile | 6 +++---
|
|
genprotimg/boot/Makefile | 8 ++++----
|
|
genprotimg/src/Makefile | 2 +-
|
|
3 files changed, 8 insertions(+), 8 deletions(-)
|
|
|
|
diff --git a/genprotimg/Makefile b/genprotimg/Makefile
|
|
index 8c9f7048..6a2e37e4 100644
|
|
--- a/genprotimg/Makefile
|
|
+++ b/genprotimg/Makefile
|
|
@@ -3,7 +3,7 @@ include ../common.mak
|
|
|
|
.DEFAULT_GOAL := all
|
|
|
|
-PKGDATADIR := "$(DESTDIR)$(TOOLS_DATADIR)/genprotimg"
|
|
+PKGDATADIR := "$(TOOLS_DATADIR)/genprotimg"
|
|
TESTS :=
|
|
SUBDIRS := boot src man
|
|
RECURSIVE_TARGETS := all-recursive install-recursive clean-recursive
|
|
@@ -11,8 +11,8 @@ RECURSIVE_TARGETS := all-recursive install-recursive clean-recursive
|
|
all: all-recursive
|
|
|
|
install: install-recursive
|
|
- $(INSTALL) -d -m 755 "$(PKGDATADIR)"
|
|
- $(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 samples/check_hostkeydoc "$(PKGDATADIR)"
|
|
+ $(INSTALL) -d -m 755 "$(DESTDIR)$(PKGDATADIR)"
|
|
+ $(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 samples/check_hostkeydoc "$(DESTDIR)$(PKGDATADIR)"
|
|
|
|
clean: clean-recursive
|
|
|
|
diff --git a/genprotimg/boot/Makefile b/genprotimg/boot/Makefile
|
|
index 799df9cc..73f3c9a8 100644
|
|
--- a/genprotimg/boot/Makefile
|
|
+++ b/genprotimg/boot/Makefile
|
|
@@ -7,7 +7,7 @@ DEBUG_FILES := $(addsuffix .debug,$(FILES))
|
|
ifeq ($(HOST_ARCH),s390x)
|
|
ZIPL_DIR := $(rootdir)/zipl
|
|
ZIPL_BOOT_DIR := $(ZIPL_DIR)/boot
|
|
-PKGDATADIR := $(DESTDIR)$(TOOLS_DATADIR)/genprotimg
|
|
+PKGDATADIR := $(TOOLS_DATADIR)/genprotimg
|
|
|
|
INCLUDE_PATHS := $(ZIPL_BOOT_DIR) $(ZIPL_DIR)/include $(rootdir)/include
|
|
INCLUDE_PARMS := $(addprefix -I,$(INCLUDE_PATHS))
|
|
@@ -86,9 +86,9 @@ stage3b.elf: head.o $(ZIPL_OBJS)
|
|
@chmod a-x $@
|
|
|
|
install: stage3a.bin stage3b_reloc.bin
|
|
- $(INSTALL) -d -m 755 "$(PKGDATADIR)"
|
|
- $(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 stage3a.bin "$(PKGDATADIR)"
|
|
- $(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 stage3b_reloc.bin "$(PKGDATADIR)"
|
|
+ $(INSTALL) -d -m 755 "$(DESTDIR)$(PKGDATADIR)"
|
|
+ $(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 stage3a.bin "$(DESTDIR)$(PKGDATADIR)"
|
|
+ $(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 stage3b_reloc.bin "$(DESTDIR)$(PKGDATADIR)"
|
|
|
|
else
|
|
# Don't generate the dependency files (see `common.mak` for the
|
|
diff --git a/genprotimg/src/Makefile b/genprotimg/src/Makefile
|
|
index 08734bff..d447e6cf 100644
|
|
--- a/genprotimg/src/Makefile
|
|
+++ b/genprotimg/src/Makefile
|
|
@@ -3,7 +3,7 @@ include ../../common.mak
|
|
|
|
bin_PROGRAM = genprotimg
|
|
|
|
-PKGDATADIR ?= "$(DESTDIR)$(TOOLS_DATADIR)/genprotimg"
|
|
+PKGDATADIR ?= "$(TOOLS_DATADIR)/genprotimg"
|
|
SRC_DIR := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
|
TOP_SRCDIR := $(SRC_DIR)/../
|
|
ROOT_DIR = $(TOP_SRC_DIR)/../../
|
|
|