diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-02-05 17:55:12 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-02-08 10:22:40 -0500 |
commit | 8ee19a7319497ab855e772c282201fcd08dc9590 (patch) | |
tree | 8f5f1d6d7e3140226fa62ba6b71871417ea7efcf /scripts | |
parent | 0cb389dd1a3805db9639f70131e58f9bb602100e (diff) | |
download | u-boot-8ee19a7319497ab855e772c282201fcd08dc9590.tar.gz |
kbuild: remove unneeded ifdef conditionals around build rules
These rules are only used for SOCFPGA, SUNXI, but no need to hide
them from other SoCs.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.spl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index f486feb0d0..adabfcff40 100644 --- a/scripts/Makefile.spl +++ b/scripts/Makefile.spl @@ -228,18 +228,14 @@ ifneq ($(CONFIG_SPL_TEXT_BASE),) LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE) endif -ifdef CONFIG_ARCH_SOCFPGA MKIMAGEFLAGS_$(SPL_BIN).sfp = -T socfpgaimage $(obj)/$(SPL_BIN).sfp: $(obj)/$(SPL_BIN).bin FORCE $(call if_changed,mkimage) -endif -ifdef CONFIG_SUNXI quiet_cmd_mksunxiboot = MKSUNXI $@ cmd_mksunxiboot = $(objtree)/tools/mksunxiboot $< $@ $(obj)/sunxi-spl.bin: $(obj)/$(SPL_BIN).bin $(call if_changed,mksunxiboot) -endif quiet_cmd_u-boot-spl = LD $@ cmd_u-boot-spl = (cd $(obj) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \ |