Makefile 3.4 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. 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,format=raw
  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)'
  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-riscv64 ${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_QEMU),y)
  47. @echo "Start qemu with following command line:"
  48. @echo 'qemu-system-riscv64 ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  49. endif
  50. ifeq ($(ADK_TARGET_SYSTEM_SIPEED_MAIX_BIT),y)
  51. @echo 'sudo python3 scripts/kflash.py -p /dev/ttyUSB0 -b 1500000 -t $(FW_DIR)/$(TARGET_KERNEL)'
  52. endif
  53. endif
  54. ifeq ($(ADK_TARGET_FS),genimage)
  55. targethelp:
  56. @echo "The disk image is: $(FW_DIR)/sdcard.img"
  57. @echo "Use following command to install it on SD card:"
  58. @echo 'sudo dd if=$(FW_DIR)/sdcard.img of=/dev/sdX bs=2048k'
  59. endif
  60. ifeq ($(ADK_TARGET_FS),nfsroot)
  61. targethelp:
  62. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  63. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  64. endif
  65. kernel-strip:
  66. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  67. kernel-install: kernel-strip
  68. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  69. dtb-install:
  70. ${KERNEL_MAKE} dtbs
  71. for x in $(LINUX_DIR)/arch/riscv/boot/dts/*/*.dtb; do \
  72. [[ -e "$$x" ]] && cp $(LINUX_DIR)/arch/riscv/boot/dts/*/*.dtb $(FW_DIR); \
  73. break; \
  74. done
  75. # filesystem specific targets
  76. ifeq ($(ADK_TARGET_FS),archive)
  77. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  78. endif
  79. ifeq ($(ADK_TARGET_FS),initramfs)
  80. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  81. endif
  82. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  83. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  84. endif
  85. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  86. imageinstall: createinitramfs targethelp
  87. endif
  88. ifeq ($(ADK_TARGET_FS),genimage)
  89. imageinstall: dtb-install $(FW_DIR)/$(GENIMAGE) targethelp
  90. endif
  91. ifeq ($(ADK_TARGET_FS),nfsroot)
  92. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  93. endif