Makefile 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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)/vmlinux
  9. OSTRIP:=-R .reginfo -R .notes -R .note -R .comment -R .mdebug -R .note.gnu.build-id
  10. # target helper text
  11. ifeq ($(ADK_TARGET_FS),initramfs)
  12. targethelp:
  13. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  14. @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
  15. endif
  16. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  17. targethelp:
  18. @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
  19. @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
  20. endif
  21. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  22. targethelp:
  23. @echo 'The kernel+initramfs file is: $(FW_DIR)/${TARGET_KERNEL}'
  24. ifeq ($(ADK_TARGET_SIM),y)
  25. @echo "Run the simulator via:"
  26. @echo '$(TARGET_CROSS)gdb $(FW_DIR)/$(TARGET_KERNEL)'
  27. @echo 'target sim'
  28. @echo 'sim intmode 1'
  29. @echo 'sim sci pty'
  30. @echo 'load'
  31. @echo 'run earlyprintk=h8300-sim console=ttySC0'
  32. endif
  33. endif
  34. kernel-strip:
  35. $(TARGET_CROSS)objcopy $(OSTRIP) -S $(KERNEL) $(BUILD_DIR)/$(TARGET_KERNEL)
  36. kernel-install: kernel-strip
  37. @cp $(BUILD_DIR)/$(TARGET_KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
  38. # filesystem specific targets
  39. ifeq ($(ADK_TARGET_FS),initramfs)
  40. imageinstall: kernel-install $(FW_DIR)/$(INITRAMFS) targethelp
  41. endif
  42. ifeq ($(ADK_TARGET_FS),initramfsarchive)
  43. imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
  44. endif
  45. ifeq ($(ADK_TARGET_FS),initramfspiggyback)
  46. imageinstall: createinitramfs targethelp
  47. endif