Makefile 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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)/$(ADK_TARGET_KERNEL)
  7. QEMU_ARGS:=${ADK_QEMU_ARGS}
  8. ifeq ($(ADK_TARGET_CPU_CSKY_CK610),y)
  9. QEMU:=qemu-system-cskyv1
  10. endif
  11. # target helper text
  12. ifeq ($(ADK_TARGET_FS),archive)
  13. targethelp:
  14. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
  15. endif
  16. ifeq ($(ADK_TARGET_FS),initramfs)
  17. targethelp:
  18. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  19. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  20. endif
  21. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  22. targethelp:
  23. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  24. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  25. endif
  26. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  27. targethelp:
  28. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  29. ifeq ($(ADK_TARGET_QEMU),y)
  30. @echo "Start qemu with following command line:"
  31. @echo '${QEMU} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
  32. endif
  33. endif
  34. ifeq ($(ADK_TARGET_FS),nfsroot)
  35. targethelp:
  36. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  37. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  38. endif
  39. kernel-strip:
  40. @cp $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  41. kernel-install: kernel-strip
  42. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  43. # filesystem specific targets
  44. ifeq ($(ADK_TARGET_FS),archive)
  45. imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
  46. endif
  47. ifeq ($(ADK_TARGET_FS),initramfs)
  48. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  49. endif
  50. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  51. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  52. endif
  53. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  54. imageinstall: createinitramfs targethelp
  55. endif
  56. ifeq ($(ADK_TARGET_FS),nfsroot)
  57. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  58. endif