mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Add initramfs-tools scripts that apply firmware-provided I/O configuration data as auto-configuration during boot. This way, all I/O devices configured by DPM are automatically brought online without further user interaction. This mechanism is active by default. It can be deactivated by specifying the following parameter on the kernel command line: rd.zdev=no-auto Signed-off-by: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
15 lines
214 B
Makefile
15 lines
214 B
Makefile
# Common definitions
|
|
include ../common.mak
|
|
|
|
all:
|
|
$(MAKE) -C src
|
|
|
|
install: all
|
|
$(MAKE) -C src install
|
|
$(MAKE) -C man install
|
|
$(MAKE) -C dracut install
|
|
$(MAKE) -C initramfs install
|
|
|
|
clean:
|
|
$(MAKE) -C src clean
|