diff options
Diffstat (limited to 'roms/u-boot/board/varisys/common/Makefile')
-rw-r--r-- | roms/u-boot/board/varisys/common/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/roms/u-boot/board/varisys/common/Makefile b/roms/u-boot/board/varisys/common/Makefile new file mode 100644 index 000000000..b7358c7c6 --- /dev/null +++ b/roms/u-boot/board/varisys/common/Makefile @@ -0,0 +1,21 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# (C) Copyright 2006 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. + +MINIMAL= + +ifdef CONFIG_SPL_BUILD +ifdef CONFIG_SPL_INIT_MINIMAL +MINIMAL=y +endif +endif + +ifdef MINIMAL +# necessary to create built-in.o +obj- := __dummy__.o +else +ifndef CONFIG_SPL_BUILD +obj-$(CONFIG_ID_EEPROM) += sys_eeprom.o +endif +endif |