1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include $(ADK_TOPDIR
)/rules.mk
5 include $(ADK_TOPDIR
)/mk
/kernel-build.mk
6 include $(ADK_TOPDIR
)/mk
/image.mk
8 KERNEL
:=$(LINUX_DIR
)/arch
/s390
/boot
/bzImage
10 QEMU_ARGS
:=-monitor null
-M s390-ccw-virtio
11 QEMU_ARGS
+=${ADK_QEMU_ARGS}
12 QEMU_ARGS
+=-net nic
,model
=virtio
-net user
-serial mon
:stdio
15 ifeq ($(ADK_TARGET_FS
),archive
)
17 @echo
"The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
18 ifeq ($(ADK_TARGET_QEMU
),y
)
19 @echo
'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
20 @echo
"Use following command to create a QEMU Image:"
21 @echo
"./scripts/create.sh qemu-${ADK_TARGET_CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)"
22 @echo
"Start qemu with following options:"
23 @echo
'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) qemu-${ADK_TARGET_CPU_ARCH}.img'
26 ifeq ($(ADK_TARGET_FS
),initramfs
)
28 @echo
'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
29 @echo
'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
30 ifeq ($(ADK_TARGET_QEMU
),y
)
31 @echo
"Start qemu with following command line:"
32 @echo
'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
35 ifeq ($(ADK_TARGET_FS
),initramfsarchive
)
37 @echo
'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
38 @echo
"The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
40 ifeq ($(ADK_TARGET_FS
),initramfspiggyback
)
42 @echo
'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
43 ifeq ($(ADK_TARGET_QEMU
),y
)
44 @echo
"Start qemu with following command line:"
45 @echo
'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
49 # image creation and kernel install
51 @cp
$(KERNEL
) $(FW_DIR
)/${TARGET_KERNEL}
53 # filesystem specific targets
54 ifeq ($(ADK_TARGET_FS
),archive
)
55 imageinstall
: $(FW_DIR
)/$(ROOTFSTARBALL
) targethelp
57 ifeq ($(ADK_TARGET_FS
),initramfs
)
58 imageinstall
: kernel-install
$(FW_DIR
)/$(INITRAMFS
) targethelp
60 ifeq ($(ADK_TARGET_FS
),initramfsarchive
)
61 imageinstall
: kernel-install
$(FW_DIR
)/$(ROOTFSUSERTARBALL
) targethelp
63 ifeq ($(ADK_TARGET_FS
),initramfspiggyback
)
64 imageinstall
: createinitramfs targethelp