Makefile 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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)/arch/riscv/boot/Image
  7. QEMU_ARGS:=-M virt -m 512 -nographic
  8. ifeq ($(ADK_TARGET_WITH_MMU),)
  9. QEMU_ARGS+=-bios none -cpu rv64,mmu=off
  10. endif
  11. QEMU_ARGS+=-netdev user,id=eth0 -device virtio-net-device,netdev=eth0
  12. ifeq ($(ADK_TARGET_FS),archive)
  13. QEMU_ARGS+=-device virtio-blk-device,drive=vda -drive file=qemu-${ADK_TARGET_CPU_ARCH}.img,if=none,id=vda,format=raw
  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_TARGET_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-${ADK_TARGET_CPU_ARCH}.img $(FW_DIR)/$(ROOTFSTARBALL)"
  23. @echo "Start qemu with following options:"
  24. @echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  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_TARGET_QEMU),y)
  32. @echo "Start qemu with following command line:"
  33. @echo 'qemu-system-riscv64 ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL) -initrd ${FW_DIR}/${INITRAMFS}'
  34. endif
  35. endif
  36. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  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),initramfspiggyback)
  42. targethelp:
  43. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  44. ifeq ($(ADK_TARGET_QEMU),y)
  45. @echo "Start qemu with following command line:"
  46. @echo 'qemu-system-riscv64 ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  47. endif
  48. ifeq ($(ADK_TARGET_SYSTEM_SIPEED_MAIX_BIT),y)
  49. @echo 'sudo python3 scripts/kflash.py -p /dev/ttyUSB0 -b 1500000 -t $(FW_DIR)/$(TARGET_KERNEL)'
  50. endif
  51. ifeq ($(ADK_TARGET_SYSTEM_SIPEED_MAIXDUINO),y)
  52. @echo 'sudo python3 scripts/kflash.py -p /dev/ttyUSB0 -b 1500000 -t $(FW_DIR)/$(TARGET_KERNEL)'
  53. endif
  54. endif
  55. ifeq ($(ADK_TARGET_FS),genimage)
  56. targethelp:
  57. @echo "The disk image is: $(FW_DIR)/sdcard.img"
  58. @echo "Use following command to install it on SD card:"
  59. @echo 'sudo dd if=$(FW_DIR)/sdcard.img of=/dev/sdX bs=2048k'
  60. endif
  61. ifeq ($(ADK_TARGET_FS),nfsroot)
  62. targethelp:
  63. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  64. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  65. endif
  66. kernel-strip:
  67. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  68. kernel-install: kernel-strip
  69. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  70. dtb-install:
  71. ${KERNEL_MAKE} dtbs
  72. for x in $(LINUX_DIR)/arch/riscv/boot/dts/*/*.dtb; do \
  73. [[ -e "$$x" ]] && cp $(LINUX_DIR)/arch/riscv/boot/dts/*/*.dtb $(FW_DIR); \
  74. break; \
  75. done
  76. # filesystem specific targets
  77. ifeq ($(ADK_TARGET_FS),archive)
  78. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  79. endif
  80. ifeq ($(ADK_TARGET_FS),initramfs)
  81. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  82. endif
  83. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  84. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  85. endif
  86. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  87. imageinstall: createinitramfs targethelp
  88. endif
  89. ifeq ($(ADK_TARGET_FS),genimage)
  90. imageinstall: dtb-install $(FW_DIR)/$(GENIMAGE) targethelp
  91. endif
  92. ifeq ($(ADK_TARGET_FS),nfsroot)
  93. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  94. endif