mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
d08fedf691
When we switch to including all linker lists in SPL it is important to not include commands as that may lead to link errors due to other things we have already discarded. In this case as we don't have other common code nor other Synology borads, move the cmd_syno.c file (which claims to be ds414 specific anyways!) into the ds414 directory and only build it for non-SPL builds. Signed-off-by: Tom Rini <trini@konsulko.com>
10 lines
157 B
Makefile
10 lines
157 B
Makefile
#
|
|
# Copyright (C) 2015 Phil Sutter <phil@nwl.cc>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += ds414.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += cmd_syno.o
|
|
endif
|