diff options
author | Jason J. Herne | 2019-04-04 16:34:24 +0200 |
---|---|---|
committer | Thomas Huth | 2019-04-12 12:40:35 +0200 |
commit | 120d04103e3f870d0fcd2a23c2ada0a4a4f036cc (patch) | |
tree | 1283b5381bf4f745a2202e601e53cf9172f48e3e /pc-bios/s390-ccw/Makefile | |
parent | s390-bios: Clean up cio.h (diff) | |
download | qemu-120d04103e3f870d0fcd2a23c2ada0a4a4f036cc.tar.gz qemu-120d04103e3f870d0fcd2a23c2ada0a4a4f036cc.tar.xz qemu-120d04103e3f870d0fcd2a23c2ada0a4a4f036cc.zip |
s390-bios: Decouple channel i/o logic from virtio
Create a separate library for channel i/o related code. This decouples
channel i/o operations from virtio and allows us to make use of them for
the real dasd boot path.
Signed-off-by: Jason J. Herne <jjherne@linux.ibm.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <1554388475-18329-6-git-send-email-jjherne@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'pc-bios/s390-ccw/Makefile')
-rw-r--r-- | pc-bios/s390-ccw/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pc-bios/s390-ccw/Makefile b/pc-bios/s390-ccw/Makefile index 1eb316b02f..12ad9c1d58 100644 --- a/pc-bios/s390-ccw/Makefile +++ b/pc-bios/s390-ccw/Makefile @@ -10,7 +10,7 @@ $(call set-vpath, $(SRC_PATH)/pc-bios/s390-ccw) .PHONY : all clean build-all OBJECTS = start.o main.o bootmap.o jump2ipl.o sclp.o menu.o \ - virtio.o virtio-scsi.o virtio-blkdev.o libc.o + virtio.o virtio-scsi.o virtio-blkdev.o libc.o cio.o QEMU_CFLAGS := $(filter -W%, $(QEMU_CFLAGS)) QEMU_CFLAGS += -ffreestanding -fno-delete-null-pointer-checks -msoft-float |