diff options
author | Wig C <wig.cheng@technexion.com> | 2015-12-04 17:46:23 +0800 |
---|---|---|
committer | fang hui <hui.fang@nxp.com> | 2017-01-19 14:43:31 +0800 |
commit | b36bd6175bccc76102831d1110519c6e41a1d7c6 (patch) | |
tree | 6a61a7cc7fb0958c87dc70be80c6154fa0f76faa /board/technexion/pico-imx7d/Makefile | |
parent | 460ea1d8108d136f79317aca85631e2a66141922 (diff) | |
download | u-boot-imx-b36bd6175bccc76102831d1110519c6e41a1d7c6.zip u-boot-imx-b36bd6175bccc76102831d1110519c6e41a1d7c6.tar.gz u-boot-imx-b36bd6175bccc76102831d1110519c6e41a1d7c6.tar.bz2 |
MA-9190 Add pico-imx7d board support
Ethnet is not supported in uboot.
But ethnet on kernel relay the config in uboot.
Once ethnet on kernel is indepedent, will remove ethnet code in uboot.
Change-Id: If44705d2fbfc1c596cbce010ff7106fcd7556b9f
Diffstat (limited to 'board/technexion/pico-imx7d/Makefile')
-rw-r--r-- | board/technexion/pico-imx7d/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/board/technexion/pico-imx7d/Makefile b/board/technexion/pico-imx7d/Makefile new file mode 100644 index 0000000..30bba14 --- /dev/null +++ b/board/technexion/pico-imx7d/Makefile @@ -0,0 +1,10 @@ +# (C) Copyright 2015 Freescale Semiconductor, Inc. +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y := pico-imx7d.o + +extra-$(CONFIG_USE_PLUGIN) := plugin.bin +$(obj)/plugin.bin: $(obj)/plugin.o + $(OBJCOPY) -O binary --gap-fill 0xff $< $@ |