diff options
author | Joachim Foerster <joachim.foerster@missinglinkelectronics.com> | 2011-10-26 14:25:00 +0200 |
---|---|---|
committer | Thomas Chou <thomas@wytron.com.tw> | 2011-10-30 21:02:43 +0800 |
commit | 4279c53e5b594ed9b09c752df3cf0b4eacf57788 (patch) | |
tree | 3d54281e180e69466663f8c7235a66df60462226 /arch/nios2/cpu/Makefile | |
parent | df969b5ffd62449f3625dacb036bef107d5306d4 (diff) | |
download | u-boot-imx-4279c53e5b594ed9b09c752df3cf0b4eacf57788.zip u-boot-imx-4279c53e5b594ed9b09c752df3cf0b4eacf57788.tar.gz u-boot-imx-4279c53e5b594ed9b09c752df3cf0b4eacf57788.tar.bz2 |
nios2: Offer ft_board_setup() capability and call fdt_fixup_ethernet().
The main motivation is, to have the local-mac-address property of the
ethernet peripherals fixed/synced with U-Boot's environment settings.
Signed-off-by: Joachim Foerster <joachim.foerster@missinglinkelectronics.com>
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Diffstat (limited to 'arch/nios2/cpu/Makefile')
-rw-r--r-- | arch/nios2/cpu/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/nios2/cpu/Makefile b/arch/nios2/cpu/Makefile index aa41160..402fd74 100644 --- a/arch/nios2/cpu/Makefile +++ b/arch/nios2/cpu/Makefile @@ -28,6 +28,7 @@ LIB = $(obj)lib$(CPU).o START = start.o SOBJS = exceptions.o COBJS = cpu.o interrupts.o sysid.o traps.o epcs.o +COBJS += fdt.o SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |