diff options
author | Peng Fan <Peng.Fan@freescale.com> | 2015-03-18 22:04:39 +0800 |
---|---|---|
committer | Peng Fan <Peng.Fan@freescale.com> | 2015-04-29 14:56:07 +0800 |
commit | 2ebe0c77e3626c8d6de0e80060233a8507adcae0 (patch) | |
tree | ce3a936b9f481d7fc9e2b446f5f5ddb10309ed27 /board/freescale/mx6sxsabresd/Makefile | |
parent | 080be535aae3fd94a53863cb0a855acca6760445 (diff) | |
download | u-boot-imx-2ebe0c77e3626c8d6de0e80060233a8507adcae0.zip u-boot-imx-2ebe0c77e3626c8d6de0e80060233a8507adcae0.tar.gz u-boot-imx-2ebe0c77e3626c8d6de0e80060233a8507adcae0.tar.bz2 |
MLK-10774-20 imx:mx6 add plugin support
Add plugin support
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Diffstat (limited to 'board/freescale/mx6sxsabresd/Makefile')
-rw-r--r-- | board/freescale/mx6sxsabresd/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/freescale/mx6sxsabresd/Makefile b/board/freescale/mx6sxsabresd/Makefile index 97dbfda..fd8974f 100644 --- a/board/freescale/mx6sxsabresd/Makefile +++ b/board/freescale/mx6sxsabresd/Makefile @@ -1,6 +1,10 @@ -# (C) Copyright 2014 Freescale Semiconductor, Inc. +# (C) Copyright 2014-2015 Freescale Semiconductor, Inc. # # SPDX-License-Identifier: GPL-2.0+ # obj-y := mx6sxsabresd.o + +extra-$(CONFIG_USE_PLUGIN) := plugin.bin +$(obj)/plugin.bin: $(obj)/plugin.o + $(OBJCOPY) -O binary --gap-fill 0xff $< $@ |