xref: /linux/arch/riscv/boot/Makefile (revision feff82eb5f4075d541990d0ba60dad14ea83ea9b)
1c0fbcd99SAnup Patel#
2c0fbcd99SAnup Patel# arch/riscv/boot/Makefile
3c0fbcd99SAnup Patel#
4c0fbcd99SAnup Patel# This file is included by the global makefile so that you can add your own
5c0fbcd99SAnup Patel# architecture-specific flags and dependencies.
6c0fbcd99SAnup Patel#
7c0fbcd99SAnup Patel# This file is subject to the terms and conditions of the GNU General Public
8c0fbcd99SAnup Patel# License.  See the file "COPYING" in the main directory of this archive
9c0fbcd99SAnup Patel# for more details.
10c0fbcd99SAnup Patel#
11c0fbcd99SAnup Patel# Copyright (C) 2018, Anup Patel.
12c0fbcd99SAnup Patel# Author: Anup Patel <anup@brainfault.org>
13c0fbcd99SAnup Patel#
14c0fbcd99SAnup Patel# Based on the ia64 and arm64 boot/Makefile.
15c0fbcd99SAnup Patel#
16c0fbcd99SAnup Patel
17c0fbcd99SAnup PatelOBJCOPYFLAGS_Image :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
1857a4542cSGeert UytterhoevenOBJCOPYFLAGS_loader.bin :=-O binary
1944c92257SVitaly WoolOBJCOPYFLAGS_xipImage :=-O binary -R .note -R .note.gnu.build-id -R .comment -S
20c0fbcd99SAnup Patel
2144c92257SVitaly Wooltargets := Image Image.* loader loader.o loader.lds loader.bin xipImage
2244c92257SVitaly Wool
23c0fbcd99SAnup Patel$(obj)/Image: vmlinux FORCE
24c0fbcd99SAnup Patel	$(call if_changed,objcopy)
25c0fbcd99SAnup Patel
26c0fbcd99SAnup Patel$(obj)/Image.gz: $(obj)/Image FORCE
27c0fbcd99SAnup Patel	$(call if_changed,gzip)
28c0fbcd99SAnup Patel
290e72a2f9SOlof Johansson$(obj)/loader.o: $(src)/loader.S $(obj)/Image
30405fe7aaSChristoph Hellwig
31405fe7aaSChristoph Hellwig$(obj)/loader: $(obj)/loader.o $(obj)/Image $(obj)/loader.lds FORCE
32405fe7aaSChristoph Hellwig	$(Q)$(LD) -T $(obj)/loader.lds -o $@ $(obj)/loader.o
33405fe7aaSChristoph Hellwig
348083c629SAtish Patra$(obj)/Image.bz2: $(obj)/Image FORCE
358083c629SAtish Patra	$(call if_changed,bzip2)
368083c629SAtish Patra
378083c629SAtish Patra$(obj)/Image.lz4: $(obj)/Image FORCE
388083c629SAtish Patra	$(call if_changed,lz4)
398083c629SAtish Patra
408083c629SAtish Patra$(obj)/Image.lzma: $(obj)/Image FORCE
418083c629SAtish Patra	$(call if_changed,lzma)
428083c629SAtish Patra
438083c629SAtish Patra$(obj)/Image.lzo: $(obj)/Image FORCE
448083c629SAtish Patra	$(call if_changed,lzo)
458083c629SAtish Patra
46de59b6edSJisheng Zhang$(obj)/Image.zst: $(obj)/Image FORCE
47de59b6edSJisheng Zhang	$(call if_changed,zstd)
48de59b6edSJisheng Zhang
49*ab4ce983SLasse Collin$(obj)/Image.xz: $(obj)/Image FORCE
50*ab4ce983SLasse Collin	$(call if_changed,xzkern)
51*ab4ce983SLasse Collin
5237809df4SChristoph Hellwig$(obj)/loader.bin: $(obj)/loader FORCE
5337809df4SChristoph Hellwig	$(call if_changed,objcopy)
54f5579340SArd Biesheuvel
55f5579340SArd BiesheuvelEFI_ZBOOT_PAYLOAD	:= Image
56f5579340SArd BiesheuvelEFI_ZBOOT_BFD_TARGET	:= elf$(BITS)-littleriscv
57f5579340SArd BiesheuvelEFI_ZBOOT_MACH_TYPE	:= RISCV$(BITS)
58f5579340SArd Biesheuvel
59f5579340SArd Biesheuvelinclude $(srctree)/drivers/firmware/efi/libstub/Makefile.zboot
60