Newer
Older
barebox / arch / openrisc / Makefile
@Masahiro Yamada Masahiro Yamada on 13 May 2019 549 bytes arch: add KBUILD_DEFCONFIG to allow "make defconfig"
KBUILD_DEFCONFIG := generic_defconfig

CPPFLAGS += -D__OR1K__ -ffixed-r10 -mhard-mul -mhard-div

board-$(CONFIG_GENERIC) := generic

KALLSYMS += --symbol-prefix=_

archprepare: maketools

PHONY += maketools

ifneq ($(board-y),)
BOARD  := arch/openrisc/boards/$(board-y)/
else
BOARD  :=
endif

common-y += $(BOARD)
common-y += arch/openrisc/lib/
common-y += arch/openrisc/cpu/

lds-y += arch/openrisc/cpu/barebox.lds

common-$(CONFIG_BUILTIN_DTB) += arch/openrisc/dts/

dts := arch/openrisc/dts

%.dtb: scripts
	$(Q)$(MAKE) $(build)=$(dts) $(dts)/$@