Makefile 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 $(ADK_TOPDIR)/rules.mk
  4. include $(ADK_TOPDIR)/mk/kernel-build.mk
  5. include $(ADK_TOPDIR)/mk/image.mk
  6. KERNEL:=$(LINUX_DIR)/vmlinux
  7. QEMU_ARGS:=${ADK_QEMU_ARGS}
  8. ifeq ($(ADK_TARGET_SYSTEM_QEMU_M68K_Q800),y)
  9. QEMU_ARGS+=-M q800
  10. endif
  11. ifeq ($(ADK_TARGET_SYSTEM_QEMU_M68K_MCF5208),y)
  12. QEMU_ARGS+=-M mcf5208evb -cpu m5208
  13. endif
  14. # target helper text
  15. ifeq ($(ADK_TARGET_FS),archive)
  16. targethelp:
  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)/$(ROOTFSUSERTARBALL)"
  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'
  24. endif
  25. endif
  26. ifeq ($(ADK_TARGET_FS),initramfs)
  27. targethelp:
  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}'
  33. endif
  34. ifeq ($(ADK_TARGET_SYSTEM_ARANYM_M68K),y)
  35. @sed -e "s#@@KERNEL@@#$(FW_DIR)/$(TARGET_KERNEL)#" \
  36. -e "s#@@INITRAMFS@@#${FW_DIR}/${INITRAMFS}#" \
  37. $(ADK_TOPDIR)/target/m68k/aranym.cfg.in \
  38. > $(ADK_TOPDIR)/target/m68k/aranym.cfg
  39. @echo 'Start aranym with: aranym-mmu -l -c target/m68k/aranym.cfg'
  40. @echo 'Ungrab mouse with middle mouse click'
  41. endif
  42. endif
  43. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  44. targethelp:
  45. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  46. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  47. endif
  48. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  49. targethelp:
  50. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  51. ifeq ($(ADK_TARGET_QEMU),y)
  52. @echo "Start qemu with following command line:"
  53. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  54. endif
  55. endif
  56. kernel-strip:
  57. kernel-install: kernel-strip
  58. @cp $(KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  59. # filesystem specific targets
  60. ifeq ($(ADK_TARGET_FS),archive)
  61. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  62. endif
  63. ifeq ($(ADK_TARGET_FS),initramfs)
  64. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  65. endif
  66. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  67. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  68. endif
  69. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  70. imageinstall: createinitramfs targethelp
  71. endif