Makefile 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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),nfsroot)
  55. targethelp:
  56. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  57. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  58. endif
  59. kernel-strip:
  60. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  61. kernel-install: kernel-strip
  62. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  63. # filesystem specific targets
  64. ifeq ($(ADK_TARGET_FS),archive)
  65. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  66. endif
  67. ifeq ($(ADK_TARGET_FS),initramfs)
  68. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  69. endif
  70. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  71. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  72. endif
  73. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  74. imageinstall: createinitramfs targethelp
  75. endif
  76. ifeq ($(ADK_TARGET_FS),nfsroot)
  77. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  78. endif