diff options
author | Simon Glass <sjg@chromium.org> | 2016-01-31 18:10:53 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-02-01 20:55:48 -0500 |
commit | bd7dc3883bf4e61538e5519ca2d6798b3e8e0695 (patch) | |
tree | 67cc859dda648c22a12ada3c0e55dfeca20bfabe /Makefile | |
parent | a9d78260a8693f5dcfc6a3b61175467c76c273b4 (diff) | |
download | u-boot-imx-bd7dc3883bf4e61538e5519ca2d6798b3e8e0695.zip u-boot-imx-bd7dc3883bf4e61538e5519ca2d6798b3e8e0695.tar.gz u-boot-imx-bd7dc3883bf4e61538e5519ca2d6798b3e8e0695.tar.bz2 |
socfpga: Simplify Makefile filenames
We don't need the -dtb suffix anymore, so drop it.
Tested-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1010,10 +1010,10 @@ u-boot.spr: spl/u-boot-spl.img u-boot.img FORCE ifneq ($(CONFIG_ARCH_SOCFPGA),) quiet_cmd_socboot = SOCBOOT $@ -cmd_socboot = cat spl/u-boot-spl-dtb.sfp spl/u-boot-spl-dtb.sfp \ - spl/u-boot-spl-dtb.sfp spl/u-boot-spl-dtb.sfp \ - u-boot-dtb.img > $@ || rm -f $@ -u-boot-with-spl-dtb.sfp: spl/u-boot-spl-dtb.sfp u-boot-dtb.img FORCE +cmd_socboot = cat spl/u-boot-spl.sfp spl/u-boot-spl.sfp \ + spl/u-boot-spl.sfp spl/u-boot-spl.sfp \ + u-boot.img > $@ || rm -f $@ +u-boot-with-spl.sfp: spl/u-boot-spl.sfp u-boot.img FORCE $(call if_changed,socboot) endif @@ -1322,7 +1322,7 @@ spl/u-boot-spl: tools prepare $(if $(CONFIG_OF_SEPARATE),dts/dt.dtb) spl/sunxi-spl.bin: spl/u-boot-spl @: -spl/u-boot-spl-dtb.sfp: spl/u-boot-spl +spl/u-boot-spl.sfp: spl/u-boot-spl @: spl/boot.bin: spl/u-boot-spl |