efi_loader: add some description about UEFI secure boot
[oweals/u-boot.git] / arch / arm / mach-stm32mp / config.mk
1 # SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2 #
3 # Copyright (C) 2018, STMicroelectronics - All Rights Reserved
4 #
5
6 ifndef CONFIG_SPL
7 ALL-y += u-boot.stm32
8 else
9 ifdef CONFIG_SPL_BUILD
10 ALL-y += u-boot-spl.stm32
11 endif
12 endif
13
14 MKIMAGEFLAGS_u-boot.stm32 = -T stm32image -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE)
15
16 u-boot.stm32: MKIMAGEOUTPUT = u-boot.stm32.log
17
18 u-boot.stm32: u-boot.bin FORCE
19         $(call if_changed,mkimage)
20
21 MKIMAGEFLAGS_u-boot-spl.stm32 = -T stm32image -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE)
22
23 spl/u-boot-spl.stm32: MKIMAGEOUTPUT = spl/u-boot-spl.stm32.log
24
25 spl/u-boot-spl.stm32: spl/u-boot-spl.bin FORCE
26         $(call if_changed,mkimage)
27
28 u-boot-spl.stm32 : spl/u-boot-spl.stm32
29         $(call if_changed,copy)