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