Makefile 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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}/arch/arm64/boot/Image
  9. QEMU_ARGS:=${ADK_QEMU_ARGS}
  10. QEMU_ARGS+=-M virt -cpu cortex-a57 -smp 1
  11. ifeq ($(ADK_TARGET_QEMU_WITH_VIRTIO),y)
  12. QEMU_ARGS+=-netdev user,id=eth0 -device virtio-net-device,netdev=eth0
  13. endif
  14. ifeq ($(ADK_TARGET_FS),archive)
  15. QEMU_ARGS+=-device virtio-blk-device,drive=vda -drive file=qemu-${ADK_TARGET_CPU_ARCH}.img,if=none,id=vda
  16. endif
  17. # target helper text
  18. ifeq ($(ADK_TARGET_FS),archive)
  19. targethelp:
  20. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
  21. ifeq ($(ADK_TARGET_QEMU),y)
  22. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  23. @echo "Use following command to create a QEMU Image:"
  24. @echo "./scripts/create.sh qemu-${ADK_TARGET_CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)"
  25. @echo "Start qemu with following options:"
  26. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) qemu-${ADK_TARGET_CPU_ARCH}.img'
  27. endif
  28. endif
  29. ifeq ($(ADK_TARGET_FS),initramfs)
  30. targethelp:
  31. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  32. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  33. ifeq ($(ADK_TARGET_QEMU),y)
  34. @echo "Start qemu with following command line:"
  35. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
  36. endif
  37. endif
  38. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  39. targethelp:
  40. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  41. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  42. endif
  43. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  44. targethelp:
  45. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  46. ifeq ($(ADK_TARGET_SYSTEM_ARM_FM),y)
  47. @echo 'Start emulator via:'
  48. @echo 'Foundation_v8 --image=$(FW_DIR)/${TARGET_KERNEL}'
  49. endif
  50. ifeq ($(ADK_TARGET_QEMU),y)
  51. @echo "Start qemu with following command line:"
  52. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  53. endif
  54. endif
  55. kernel-strip:
  56. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  57. kernel-install: kernel-strip
  58. ifeq ($(ADK_TARGET_SYSTEM_ARM_FM),y)
  59. cd $(ADK_TOPDIR) && \
  60. make -f Makefile \
  61. -C package/boot-wrapper-aarch64 clean
  62. cd $(ADK_TOPDIR) && \
  63. make -f Makefile \
  64. -C package/boot-wrapper-aarch64 package
  65. ${CP} ${LINUX_DIR}/linux-system.axf \
  66. $(FW_DIR)/$(TARGET_KERNEL)
  67. else
  68. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  69. endif
  70. # filesystem specific targets
  71. ifeq ($(ADK_TARGET_FS),archive)
  72. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  73. endif
  74. ifeq ($(ADK_TARGET_FS),initramfs)
  75. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  76. endif
  77. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  78. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  79. endif
  80. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  81. imageinstall: createinitramfs targethelp
  82. endif