Makefile 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. include $(TOPDIR)/mk/kernel.mk
  5. include $(TOPDIR)/mk/modules.mk
  6. include $(TOPDIR)/mk/kernel-build.mk
  7. include $(TOPDIR)/mk/image.mk
  8. KERNEL:=$(LINUX_DIR)/arch/sh/boot/zImage
  9. QEMU_ARGS:=-M r2d
  10. QEMU_ARGS+=${ADK_QEMU_ARGS}
  11. QEMU_ARGS+=-monitor null
  12. ifeq ($(ADK_TARGET_QEMU_WITH_GRAPHIC),)
  13. QEMU_ARGS+=-serial null -serial stdio
  14. endif
  15. # target helper text
  16. ifeq ($(ADK_TARGET_FS),archive)
  17. targethelp:
  18. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
  19. ifeq ($(ADK_HARDWARE_QEMU),y)
  20. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  21. @echo "Use following command to create a QEMU Image:"
  22. @echo "./scripts/create.sh qemu-${CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)"
  23. @echo "Start qemu with following options:"
  24. @echo 'qemu-system-${CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) qemu-${CPU_ARCH}.img'
  25. endif
  26. endif
  27. ifeq ($(ADK_TARGET_FS),initramfs)
  28. targethelp:
  29. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  30. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  31. ifeq ($(ADK_HARDWARE_QEMU),y)
  32. @echo "Start qemu with following command line:"
  33. @echo 'qemu-system-${CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
  34. endif
  35. endif
  36. ifeq ($(ADK_TARGET_FS),initramfs-archive)
  37. targethelp:
  38. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  39. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  40. endif
  41. ifeq ($(ADK_TARGET_FS),initramfs-piggyback)
  42. targethelp:
  43. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  44. ifeq ($(ADK_HARDWARE_QEMU),y)
  45. @echo "Start qemu with following command line:"
  46. @echo 'qemu-system-${CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  47. endif
  48. endif
  49. # image creation and kernel install
  50. kernel-strip:
  51. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  52. kernel-install: kernel-strip
  53. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/${TARGET_KERNEL}
  54. # filesystem specific targets
  55. ifeq ($(ADK_TARGET_FS),archive)
  56. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  57. endif
  58. ifeq ($(ADK_TARGET_FS),initramfs)
  59. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  60. endif
  61. ifeq ($(ADK_TARGET_FS),initramfs-archive)
  62. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  63. endif
  64. ifeq ($(ADK_TARGET_FS),initramfs-piggyback)
  65. imageinstall: createinitramfs targethelp
  66. endif