The fdt in the maskrom cannot be used to start linux. The correct fdt is dumped by replacing the bbl of the original firmware and used in coreboot. Correct the mac address in fdt by reading otp Change-Id: Ic29f0e590311360b85fafd12ebc36cd189fbbc38 Signed-off-by: Xiang Wang <wxjstz@126.com> Reviewed-on: https://review.coreboot.org/c/31047 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Philipp Hug <philipp@hug.cx>
31 lines
901 B
Makefile
31 lines
901 B
Makefile
# This file is part of the coreboot project.
|
|
#
|
|
# Copyright (C) 2018 Jonathan Neuschäfer
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
bootblock-y += memlayout.ld
|
|
|
|
romstage-y += memlayout.ld
|
|
romstage-y += romstage.c
|
|
|
|
ramstage-y += memlayout.ld
|
|
ramstage-y += fixup_fdt.c
|
|
|
|
|
|
DTB=build/hifive-unleashed.dtb
|
|
DTS=src/mainboard/sifive/hifive-unleashed/hifive-unleashed.dts
|
|
$(DTB): $(DTS)
|
|
dtc -I dts -O dtb -o $(DTB) $(DTS)
|
|
|
|
cbfs-files-y += fallback/DTB
|
|
fallback/DTB-file := $(DTB)
|
|
fallback/DTB-type := raw
|