Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 1 | # |
| 2 | # arch/arm64/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) 1995-2001 by Russell King |
| 12 | |
Nick Desaulniers | 4653522 | 2020-10-16 10:53:39 -0700 | [diff] [blame] | 13 | LDFLAGS_vmlinux :=--no-undefined -X -z norelro |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 14 | CPPFLAGS_vmlinux.lds = -DTEXT_OFFSET=$(TEXT_OFFSET) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 15 | GZFLAGS :=-9 |
| 16 | |
Nick Desaulniers | 7bd6bf0 | 2017-10-27 09:33:41 -0700 | [diff] [blame] | 17 | ifeq ($(CONFIG_RELOCATABLE), y) |
| 18 | # Pass --no-apply-dynamic-relocs to restore pre-binutils-2.27 behaviour |
| 19 | # for relative relocs, since this leads to better Image compression |
| 20 | # with the relocation offsets always being zero. |
Nick Desaulniers | 4653522 | 2020-10-16 10:53:39 -0700 | [diff] [blame] | 21 | LDFLAGS_vmlinux += -shared -Bsymbolic -z notext \ |
Nick Desaulniers | 7bd6bf0 | 2017-10-27 09:33:41 -0700 | [diff] [blame] | 22 | $(call ld-option, --no-apply-dynamic-relocs) |
Ard Biesheuvel | 1e48ef7 | 2016-01-26 09:13:44 +0100 | [diff] [blame] | 23 | endif |
| 24 | |
Will Deacon | 6ffe992 | 2016-08-22 11:58:36 +0100 | [diff] [blame] | 25 | ifeq ($(CONFIG_ARM64_ERRATUM_843419),y) |
| 26 | ifeq ($(call ld-option, --fix-cortex-a53-843419),) |
| 27 | $(warning ld does not support --fix-cortex-a53-843419; kernel may be susceptible to erratum) |
| 28 | else |
Sami Tolvanen | 50e3137 | 2017-11-01 08:42:49 -0700 | [diff] [blame] | 29 | ifeq ($(call gold-ifversion, -lt, 114000000, y), y) |
| 30 | $(warning This version of GNU gold may generate incorrect code with --fix-cortex-a53-843419;\ |
| 31 | see https://sourceware.org/bugzilla/show_bug.cgi?id=21491) |
| 32 | endif |
Will Deacon | 6ffe992 | 2016-08-22 11:58:36 +0100 | [diff] [blame] | 33 | LDFLAGS_vmlinux += --fix-cortex-a53-843419 |
| 34 | endif |
Sami Tolvanen | 50e3137 | 2017-11-01 08:42:49 -0700 | [diff] [blame] | 35 | else |
| 36 | ifeq ($(ld-name),gold) |
| 37 | # Pass --no-fix-cortex-a53-843419 to ensure the erratum fix is disabled |
| 38 | LDFLAGS += --no-fix-cortex-a53-843419 |
| 39 | endif |
Will Deacon | 6ffe992 | 2016-08-22 11:58:36 +0100 | [diff] [blame] | 40 | endif |
| 41 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 42 | KBUILD_DEFCONFIG := defconfig |
| 43 | |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 44 | # Check for binutils support for specific extensions |
| 45 | lseinstr := $(call as-instr,.arch_extension lse,-DCONFIG_AS_LSE=1) |
| 46 | |
| 47 | ifeq ($(CONFIG_ARM64_LSE_ATOMICS), y) |
| 48 | ifeq ($(lseinstr),) |
| 49 | $(warning LSE atomics not supported by binutils) |
| 50 | endif |
| 51 | endif |
| 52 | |
Marc Zyngier | d91750f | 2017-04-11 17:32:30 +0100 | [diff] [blame] | 53 | ifeq ($(CONFIG_ARM64), y) |
Marc Zyngier | bbb56c2 | 2016-12-06 15:27:43 +0000 | [diff] [blame] | 54 | brokengasinst := $(call as-instr,1:\n.inst 0\n.rept . - 1b\n\nnop\n.endr\n,,-DCONFIG_BROKEN_GAS_INST=1) |
| 55 | |
Marc Zyngier | d91750f | 2017-04-11 17:32:30 +0100 | [diff] [blame] | 56 | ifneq ($(brokengasinst),) |
Marc Zyngier | bbb56c2 | 2016-12-06 15:27:43 +0000 | [diff] [blame] | 57 | $(warning Detected assembler with broken .inst; disassembly will be unreliable) |
Marc Zyngier | d91750f | 2017-04-11 17:32:30 +0100 | [diff] [blame] | 58 | endif |
Marc Zyngier | bbb56c2 | 2016-12-06 15:27:43 +0000 | [diff] [blame] | 59 | endif |
| 60 | |
Greg Hackmann | 1416d1c | 2017-04-10 11:23:25 -0700 | [diff] [blame] | 61 | ifeq ($(cc-name),clang) |
| 62 | # This is a workaround for https://bugs.llvm.org/show_bug.cgi?id=30792. |
| 63 | # TODO: revert when this is fixed in LLVM. |
| 64 | KBUILD_CFLAGS += -mno-implicit-float |
| 65 | else |
| 66 | KBUILD_CFLAGS += -mgeneral-regs-only |
| 67 | endif |
| 68 | KBUILD_CFLAGS += $(lseinstr) $(brokengasinst) |
William Cohen | 728dabd | 2016-01-21 22:56:26 -0500 | [diff] [blame] | 69 | KBUILD_CFLAGS += -fno-asynchronous-unwind-tables |
dann frazier | 67dfa17 | 2016-01-25 16:52:16 -0700 | [diff] [blame] | 70 | KBUILD_CFLAGS += $(call cc-option, -mpc-relative-literal-loads) |
Greg Hackmann | 9709dab | 2014-12-01 16:13:30 -0800 | [diff] [blame] | 71 | KBUILD_CFLAGS += -fno-pic |
Marc Zyngier | bbb56c2 | 2016-12-06 15:27:43 +0000 | [diff] [blame] | 72 | KBUILD_AFLAGS += $(lseinstr) $(brokengasinst) |
Will Deacon | c09d6a0 | 2015-02-03 16:14:13 +0000 | [diff] [blame] | 73 | |
Andrew Pinski | 3d6a7b9 | 2017-09-18 11:20:20 +0100 | [diff] [blame] | 74 | KBUILD_CFLAGS += $(call cc-option,-mabi=lp64) |
| 75 | KBUILD_AFLAGS += $(call cc-option,-mabi=lp64) |
| 76 | |
Sami Tolvanen | fb8319c | 2018-05-02 09:41:34 -0700 | [diff] [blame] | 77 | ifeq ($(CONFIG_SHADOW_CALL_STACK), y) |
| 78 | KBUILD_CFLAGS += -ffixed-x18 |
| 79 | endif |
| 80 | |
Will Deacon | a0974e6 | 2013-10-11 14:52:08 +0100 | [diff] [blame] | 81 | ifeq ($(CONFIG_CPU_BIG_ENDIAN), y) |
| 82 | KBUILD_CPPFLAGS += -mbig-endian |
Luc Van Oostenryck | bcde519 | 2017-06-24 17:42:11 +0200 | [diff] [blame] | 83 | CHECKFLAGS += -D__AARCH64EB__ |
Will Deacon | a0974e6 | 2013-10-11 14:52:08 +0100 | [diff] [blame] | 84 | AS += -EB |
| 85 | LD += -EB |
Sami Tolvanen | d9df1dc | 2017-11-01 11:23:22 -0700 | [diff] [blame] | 86 | ifeq ($(ld-name),gold) |
| 87 | LDFLAGS += -maarch64_elf64_be_vec |
| 88 | else |
Andrew Pinski | 3d6a7b9 | 2017-09-18 11:20:20 +0100 | [diff] [blame] | 89 | LDFLAGS += -maarch64linuxb |
Sami Tolvanen | d9df1dc | 2017-11-01 11:23:22 -0700 | [diff] [blame] | 90 | endif |
Michal Marek | cfa88c7 | 2016-08-30 10:31:35 +0200 | [diff] [blame] | 91 | UTS_MACHINE := aarch64_be |
Will Deacon | a0974e6 | 2013-10-11 14:52:08 +0100 | [diff] [blame] | 92 | else |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 93 | KBUILD_CPPFLAGS += -mlittle-endian |
Luc Van Oostenryck | bcde519 | 2017-06-24 17:42:11 +0200 | [diff] [blame] | 94 | CHECKFLAGS += -D__AARCH64EL__ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 95 | AS += -EL |
| 96 | LD += -EL |
Sami Tolvanen | d9df1dc | 2017-11-01 11:23:22 -0700 | [diff] [blame] | 97 | ifeq ($(ld-name),gold) |
| 98 | LDFLAGS += -maarch64_elf64_le_vec |
| 99 | else |
Andrew Pinski | 3d6a7b9 | 2017-09-18 11:20:20 +0100 | [diff] [blame] | 100 | LDFLAGS += -maarch64linux |
Sami Tolvanen | d9df1dc | 2017-11-01 11:23:22 -0700 | [diff] [blame] | 101 | endif |
Michal Marek | cfa88c7 | 2016-08-30 10:31:35 +0200 | [diff] [blame] | 102 | UTS_MACHINE := aarch64 |
Will Deacon | a0974e6 | 2013-10-11 14:52:08 +0100 | [diff] [blame] | 103 | endif |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 104 | |
Luc Van Oostenryck | f5d2849 | 2017-06-20 14:24:43 +0200 | [diff] [blame] | 105 | CHECKFLAGS += -D__aarch64__ -m64 |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 106 | |
Ard Biesheuvel | fd045f6 | 2015-11-24 12:37:35 +0100 | [diff] [blame] | 107 | ifeq ($(CONFIG_ARM64_MODULE_CMODEL_LARGE), y) |
Will Deacon | b6dd8e0 | 2015-10-08 11:11:17 +0100 | [diff] [blame] | 108 | KBUILD_CFLAGS_MODULE += -mcmodel=large |
Sami Tolvanen | 05fc028 | 2017-11-16 15:56:44 -0800 | [diff] [blame] | 109 | ifeq ($(CONFIG_LTO_CLANG), y) |
| 110 | # Code model is not stored in LLVM IR, so we need to pass it also to LLVMgold |
Sami Tolvanen | ff9973a | 2018-10-01 16:21:22 -0700 | [diff] [blame] | 111 | KBUILD_LDFLAGS_MODULE += -plugin-opt=-code-model=large |
Sami Tolvanen | 05fc028 | 2017-11-16 15:56:44 -0800 | [diff] [blame] | 112 | endif |
Will Deacon | df057cc | 2015-03-17 12:15:02 +0000 | [diff] [blame] | 113 | endif |
| 114 | |
Ard Biesheuvel | fd045f6 | 2015-11-24 12:37:35 +0100 | [diff] [blame] | 115 | ifeq ($(CONFIG_ARM64_MODULE_PLTS),y) |
| 116 | KBUILD_LDFLAGS_MODULE += -T $(srctree)/arch/arm64/kernel/module.lds |
| 117 | endif |
| 118 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 119 | # Default value |
| 120 | head-y := arch/arm64/kernel/head.o |
| 121 | |
| 122 | # The byte offset of the kernel image in RAM from the start of RAM. |
Mark Rutland | da57a36 | 2014-06-24 16:51:37 +0100 | [diff] [blame] | 123 | ifeq ($(CONFIG_ARM64_RANDOMIZE_TEXT_OFFSET), y) |
Mark Rutland | aed7eb8 | 2016-05-31 15:58:00 +0100 | [diff] [blame] | 124 | TEXT_OFFSET := $(shell awk "BEGIN {srand(); printf \"0x%06x\n\", \ |
| 125 | int(2 * 1024 * 1024 / (2 ^ $(CONFIG_ARM64_PAGE_SHIFT)) * \ |
| 126 | rand()) * (2 ^ $(CONFIG_ARM64_PAGE_SHIFT))}") |
Mark Rutland | da57a36 | 2014-06-24 16:51:37 +0100 | [diff] [blame] | 127 | else |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 128 | TEXT_OFFSET := 0x00080000 |
Mark Rutland | da57a36 | 2014-06-24 16:51:37 +0100 | [diff] [blame] | 129 | endif |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 130 | |
Matthias Kaehlcke | 8c82740 | 2017-04-21 16:00:56 -0700 | [diff] [blame] | 131 | ifeq ($(cc-name),clang) |
| 132 | KBUILD_CFLAGS += $(call cc-disable-warning, asm-operand-widths) |
| 133 | endif |
| 134 | |
Andrey Konovalov | 372f527 | 2018-12-28 00:29:57 -0800 | [diff] [blame] | 135 | ifeq ($(CONFIG_KASAN_SW_TAGS), y) |
| 136 | KASAN_SHADOW_SCALE_SHIFT := 4 |
| 137 | else |
| 138 | KASAN_SHADOW_SCALE_SHIFT := 3 |
| 139 | endif |
| 140 | |
| 141 | KBUILD_CFLAGS += -DKASAN_SHADOW_SCALE_SHIFT=$(KASAN_SHADOW_SCALE_SHIFT) |
| 142 | KBUILD_CPPFLAGS += -DKASAN_SHADOW_SCALE_SHIFT=$(KASAN_SHADOW_SCALE_SHIFT) |
| 143 | KBUILD_AFLAGS += -DKASAN_SHADOW_SCALE_SHIFT=$(KASAN_SHADOW_SCALE_SHIFT) |
| 144 | |
Andrey Konovalov | 36a2210 | 2018-03-01 18:07:12 +0100 | [diff] [blame] | 145 | # KASAN_SHADOW_OFFSET = VA_START + (1 << (VA_BITS - KASAN_SHADOW_SCALE_SHIFT)) |
| 146 | # - (1 << (64 - KASAN_SHADOW_SCALE_SHIFT)) |
Andrey Ryabinin | 39d114d | 2015-10-12 18:52:58 +0300 | [diff] [blame] | 147 | # in 32-bit arithmetic |
| 148 | KASAN_SHADOW_OFFSET := $(shell printf "0x%08x00000000\n" $$(( \ |
Andrey Konovalov | 36a2210 | 2018-03-01 18:07:12 +0100 | [diff] [blame] | 149 | (0xffffffff & (-1 << ($(CONFIG_ARM64_VA_BITS) - 32))) \ |
| 150 | + (1 << ($(CONFIG_ARM64_VA_BITS) - 32 - $(KASAN_SHADOW_SCALE_SHIFT))) \ |
| 151 | - (1 << (64 - 32 - $(KASAN_SHADOW_SCALE_SHIFT))) )) ) |
Andrey Ryabinin | 39d114d | 2015-10-12 18:52:58 +0300 | [diff] [blame] | 152 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 153 | export TEXT_OFFSET GZFLAGS |
| 154 | |
| 155 | core-y += arch/arm64/kernel/ arch/arm64/mm/ |
Zi Shen Lim | e54bcde | 2014-08-26 21:15:30 -0700 | [diff] [blame] | 156 | core-$(CONFIG_NET) += arch/arm64/net/ |
Marc Zyngier | 6211753 | 2012-12-10 16:41:44 +0000 | [diff] [blame] | 157 | core-$(CONFIG_KVM) += arch/arm64/kvm/ |
Catalin Marinas | 63917f0 | 2013-06-12 16:48:38 +0100 | [diff] [blame] | 158 | core-$(CONFIG_XEN) += arch/arm64/xen/ |
Ard Biesheuvel | 2c98833 | 2014-03-06 16:23:33 +0800 | [diff] [blame] | 159 | core-$(CONFIG_CRYPTO) += arch/arm64/crypto/ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 160 | libs-y := arch/arm64/lib/ $(libs-y) |
Steve Capper | ad08fd4 | 2015-03-16 09:30:39 +0000 | [diff] [blame] | 161 | core-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 162 | |
| 163 | # Default target when executing plain make |
Michal Marek | 0699580 | 2016-11-22 22:34:29 +0100 | [diff] [blame] | 164 | boot := arch/arm64/boot |
Alex Ray | 4b8dc1f | 2014-03-17 13:44:01 -0700 | [diff] [blame] | 165 | ifeq ($(CONFIG_BUILD_ARM64_APPENDED_DTB_IMAGE),y) |
Dmitry Shmidt | d96012b | 2017-03-28 13:30:18 -0700 | [diff] [blame] | 166 | KBUILD_IMAGE := $(boot)/$(subst $\",,$(CONFIG_BUILD_ARM64_APPENDED_KERNEL_IMAGE_NAME)) |
Alex Ray | 4b8dc1f | 2014-03-17 13:44:01 -0700 | [diff] [blame] | 167 | else |
Michal Marek | 0699580 | 2016-11-22 22:34:29 +0100 | [diff] [blame] | 168 | KBUILD_IMAGE := $(boot)/Image.gz |
Alex Ray | 4b8dc1f | 2014-03-17 13:44:01 -0700 | [diff] [blame] | 169 | endif |
| 170 | |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 171 | KBUILD_DTBS := dtbs |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 172 | |
Dmitry Shmidt | d96012b | 2017-03-28 13:30:18 -0700 | [diff] [blame] | 173 | all: Image.gz $(KBUILD_DTBS) $(subst $\",,$(CONFIG_BUILD_ARM64_APPENDED_KERNEL_IMAGE_NAME)) |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 174 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 175 | |
Olof Johansson | 0723c05 | 2015-07-16 21:26:16 +0100 | [diff] [blame] | 176 | Image: vmlinux |
| 177 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 178 | |
Masahiro Yamada | 9ca4e58 | 2016-06-21 10:44:00 +0900 | [diff] [blame] | 179 | Image.%: Image |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 180 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 181 | |
Masahiro Yamada | 8684fa3 | 2016-02-19 15:05:50 +0900 | [diff] [blame] | 182 | zinstall install: |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 183 | $(Q)$(MAKE) $(build)=$(boot) $@ |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 184 | |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 185 | %.dtb: scripts |
| 186 | $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ |
| 187 | |
Robert Richter | 862f464 | 2014-08-29 14:17:02 +0200 | [diff] [blame] | 188 | PHONY += dtbs dtbs_install |
Robert Richter | 9fb5e53 | 2014-09-03 15:29:24 +0200 | [diff] [blame] | 189 | |
| 190 | dtbs: prepare scripts |
Robert Richter | d38726c | 2014-09-03 15:54:55 +0200 | [diff] [blame] | 191 | $(Q)$(MAKE) $(build)=$(boot)/dts |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 192 | |
Robert Richter | 9fb5e53 | 2014-09-03 15:29:24 +0200 | [diff] [blame] | 193 | dtbs_install: |
| 194 | $(Q)$(MAKE) $(dtbinst)=$(boot)/dts |
| 195 | |
Amit Pundir | 89aa739 | 2018-03-26 20:43:33 +0530 | [diff] [blame] | 196 | Image-dtb: vmlinux scripts dtbs |
| 197 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 198 | |
| 199 | Image.gz-dtb: vmlinux scripts dtbs Image.gz |
Alex Ray | 4b8dc1f | 2014-03-17 13:44:01 -0700 | [diff] [blame] | 200 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 201 | |
Kyle McMartin | 3c01742 | 2013-06-16 20:32:44 +0100 | [diff] [blame] | 202 | PHONY += vdso_install |
| 203 | vdso_install: |
| 204 | $(Q)$(MAKE) $(build)=arch/arm64/kernel/vdso $@ |
| 205 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 206 | # We use MRPROPER_FILES and CLEAN_FILES now |
| 207 | archclean: |
| 208 | $(Q)$(MAKE) $(clean)=$(boot) |
Jungseok Lee | c7c52e4 | 2015-01-19 14:57:00 +0000 | [diff] [blame] | 209 | $(Q)$(MAKE) $(clean)=$(boot)/dts |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 210 | |
Victor Kamensky | a1af736 | 2018-10-30 16:37:10 -0700 | [diff] [blame] | 211 | ifeq ($(KBUILD_EXTMOD),) |
Kevin Brodsky | a66649d | 2016-05-12 17:39:15 +0100 | [diff] [blame] | 212 | # We need to generate vdso-offsets.h before compiling certain files in kernel/. |
| 213 | # In order to do that, we should use the archprepare target, but we can't since |
| 214 | # asm-offsets.h is included in some files used to generate vdso-offsets.h, and |
| 215 | # asm-offsets.h is built in prepare0, for which archprepare is a dependency. |
| 216 | # Therefore we need to generate the header after prepare0 has been made, hence |
| 217 | # this hack. |
| 218 | prepare: vdso_prepare |
| 219 | vdso_prepare: prepare0 |
| 220 | $(Q)$(MAKE) $(build)=arch/arm64/kernel/vdso include/generated/vdso-offsets.h |
Victor Kamensky | a1af736 | 2018-10-30 16:37:10 -0700 | [diff] [blame] | 221 | endif |
Kevin Brodsky | a66649d | 2016-05-12 17:39:15 +0100 | [diff] [blame] | 222 | |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 223 | define archhelp |
| 224 | echo '* Image.gz - Compressed kernel image (arch/$(ARCH)/boot/Image.gz)' |
| 225 | echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)' |
Rob Herring | 70f915a | 2012-12-03 17:17:21 -0600 | [diff] [blame] | 226 | echo '* dtbs - Build device tree blobs for enabled boards' |
Robert Richter | 862f464 | 2014-08-29 14:17:02 +0200 | [diff] [blame] | 227 | echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)' |
Catalin Marinas | 8c2c3df | 2012-04-20 14:45:54 +0100 | [diff] [blame] | 228 | echo ' install - Install uncompressed kernel' |
| 229 | echo ' zinstall - Install compressed kernel' |
| 230 | echo ' Install using (your) ~/bin/installkernel or' |
| 231 | echo ' (distribution) /sbin/installkernel or' |
| 232 | echo ' install to $$(INSTALL_PATH) and run lilo' |
| 233 | endef |