mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Provide a dracut config file that ensures that the required drivers and executables, as well as the zkey repository is included into the initramfs. Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
18 lines
509 B
Makefile
18 lines
509 B
Makefile
|
|
include ../../common.mak
|
|
|
|
# HAVE_DRACUT
|
|
#
|
|
# This install time parameter determines whether the pkey dracut module is
|
|
# installed (HAVE_DRACUT=1) or not (default). When installed, the module
|
|
# performs the following functions when dracut is run:
|
|
#
|
|
# - install a dracut config file to include zkey related utilities and
|
|
# zkey repository in the initramfs
|
|
#
|
|
ifeq ($(HAVE_DRACUT),1)
|
|
install:
|
|
$(INSTALL) -m 755 -d $(DESTDIR)$(DRACUTCONFDIR)/
|
|
$(INSTALL) -m 644 99-pkey.conf $(DESTDIR)$(DRACUTCONFDIR)/
|
|
endif
|