Makefile 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #
  2. # arch/riscv/boot/Makefile
  3. #
  4. # This file is included by the global makefile so that you can add your own
  5. # architecture-specific flags and dependencies.
  6. #
  7. # This file is subject to the terms and conditions of the GNU General Public
  8. # License. See the file "COPYING" in the main directory of this archive
  9. # for more details.
  10. #
  11. # Copyright (C) 2018, Anup Patel.
  12. # Author: Anup Patel <anup@brainfault.org>
  13. #
  14. # Based on the ia64 and arm64 boot/Makefile.
  15. #
  16. OBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
  17. OBJCOPYFLAGS_loader.bin :=-O binary
  18. OBJCOPYFLAGS_xipImage :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
  19. targets := Image Image.* loader loader.o loader.lds loader.bin xipImage
  20. ifeq ($(CONFIG_XIP_KERNEL),y)
  21. quiet_cmd_mkxip = $(quiet_cmd_objcopy)
  22. cmd_mkxip = $(cmd_objcopy)
  23. $(obj)/xipImage: vmlinux FORCE
  24. $(call if_changed,mkxip)
  25. @$(kecho) ' Physical Address of xipImage: $(CONFIG_XIP_PHYS_ADDR)'
  26. endif
  27. ifdef CONFIG_RELOCATABLE
  28. vmlinux.relocs: vmlinux
  29. @ (! [ -f vmlinux.relocs ] && echo "vmlinux.relocs can't be found, please remove vmlinux and try again") || true
  30. $(obj)/Image: vmlinux.relocs FORCE
  31. else
  32. $(obj)/Image: vmlinux FORCE
  33. endif
  34. $(call if_changed,objcopy)
  35. $(obj)/Image.gz: $(obj)/Image FORCE
  36. $(call if_changed,gzip)
  37. $(obj)/loader.o: $(src)/loader.S $(obj)/Image
  38. $(obj)/loader: $(obj)/loader.o $(obj)/Image $(obj)/loader.lds FORCE
  39. $(Q)$(LD) -T $(obj)/loader.lds -o $@ $(obj)/loader.o
  40. $(obj)/Image.bz2: $(obj)/Image FORCE
  41. $(call if_changed,bzip2)
  42. $(obj)/Image.lz4: $(obj)/Image FORCE
  43. $(call if_changed,lz4)
  44. $(obj)/Image.lzma: $(obj)/Image FORCE
  45. $(call if_changed,lzma)
  46. $(obj)/Image.lzo: $(obj)/Image FORCE
  47. $(call if_changed,lzo)
  48. $(obj)/Image.zst: $(obj)/Image FORCE
  49. $(call if_changed,zstd)
  50. $(obj)/Image.xz: $(obj)/Image FORCE
  51. $(call if_changed,xzkern)
  52. $(obj)/loader.bin: $(obj)/loader FORCE
  53. $(call if_changed,objcopy)
  54. EFI_ZBOOT_PAYLOAD := Image
  55. EFI_ZBOOT_BFD_TARGET := elf$(BITS)-littleriscv
  56. EFI_ZBOOT_MACH_TYPE := RISCV$(BITS)
  57. include $(srctree)/drivers/firmware/efi/libstub/Makefile.zboot