diff options
| -rw-r--r-- | Makefile | 10 | ||||
| -rw-r--r-- | config.mk | 4 | 
2 files changed, 12 insertions, 2 deletions
| @@ -183,6 +183,16 @@ endif  # load other configuration  include $(TOPDIR)/config.mk +# Targets which don't build the source code +NON_BUILD_TARGETS = backup clean clobber distclean mkproper tidy unconfig + +# Only do the generic board check when actually building, not configuring +ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),) +ifeq ($(findstring _config,$(MAKECMDGOALS)),) +$(CHECK_GENERIC_BOARD) +endif +endif +  # If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use  # that (or fail if absent).  Otherwise, search for a linker script in a  # standard location. @@ -233,8 +233,8 @@ endif  # Does this architecture support generic board init?  ifeq ($(__HAVE_ARCH_GENERIC_BOARD),)  ifneq ($(CONFIG_SYS_GENERIC_BOARD),) -$(error Your architecture does not support generic board. Please undefined \ -CONFIG_SYS_GENERIC_BOARD in your board config file) +CHECK_GENERIC_BOARD = $(error Your architecture does not support generic board. \ +Please undefined CONFIG_SYS_GENERIC_BOARD in your board config file)  endif  endif |