libressl: update to 2.6.3
[openadk.git] / target / sparc64 / Makefile
blob2c7efe3d686e779413c829998c2d165c3160e3ba
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)/vmlinux
10 QEMU_ARGS:=-M sun4u
11 QEMU_ARGS+=${ADK_QEMU_ARGS}
13 ifeq ($(ADK_TARGET_QEMU_WITH_BLOCK),y)
14 QEMU_ARGS+=-drive file=qemu-${ADK_TARGET_CPU_ARCH}.img,format=raw
15 endif
17 ifeq ($(ADK_TARGET_QEMU_WITH_VIRTIO),y)
18 QEMU_ARGS+=-net nic,model=virtio -net user
19 ifeq ($(ADK_TARGET_FS),archive)
20 QEMU_ARGS+=-drive file=qemu-${ADK_TARGET_CPU_ARCH}.img,if=virtio
21 endif
22 else
23 QEMU_ARGS+=-net nic,model=e1000 -net user
24 endif
26 # target helper text
27 ifeq ($(ADK_TARGET_FS),archive)
28 targethelp:
29 @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
30 ifeq ($(ADK_TARGET_QEMU),y)
31 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
32 @echo "Use following command to create a QEMU Image:"
33 @echo "./scripts/create.sh qemu-${ADK_TARGET_CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)"
34 @echo "Start qemu with following options:"
35 @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
36 endif
37 endif
38 ifeq ($(ADK_TARGET_FS),initramfs)
39 targethelp:
40 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
41 @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
42 ifeq ($(ADK_TARGET_QEMU),y)
43 @echo "Start qemu with following command line:"
44 @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
45 endif
46 endif
47 ifeq ($(ADK_TARGET_FS),initramfsarchive)
48 targethelp:
49 @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
50 @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
51 endif
52 ifeq ($(ADK_TARGET_FS),initramfspiggyback)
53 targethelp:
54 @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
55 ifeq ($(ADK_TARGET_QEMU),y)
56 @echo "Start qemu with following command line:"
57 @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
58 endif
59 endif
61 # image creation and kernel install
62 kernel-strip:
63 $(TARGET_CROSS)objcopy $(OSTRIP) -S $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
65 kernel-install: kernel-strip
66 @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/${TARGET_KERNEL}
68 # filesystem specific targets
69 ifeq ($(ADK_TARGET_FS),archive)
70 imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
71 endif
72 ifeq ($(ADK_TARGET_FS),initramfs)
73 imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
74 endif
75 ifeq ($(ADK_TARGET_FS),initramfsarchive)
76 imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
77 endif
78 ifeq ($(ADK_TARGET_FS),initramfspiggyback)
79 imageinstall: createinitramfs targethelp
80 endif