blob: 2bd3f8349ab8101e79841a3f4934fba22481ff6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
GIT_SHA1 = `git --work-tree=$(top_srcdir) --git-dir=$(top_srcdir)/.git describe --always --long --dirty || echo unknown`
include libfdt/Makefile.libfdt
bin_PROGRAMS = pdbg
ACLOCAL_AMFLAGS = -Im4
AM_CFLAGS = -I$(top_srcdir)/ccan/array_size -Wall
pdbg_SOURCES = \
src/main.c
pdbg_LDADD = fake.dtb.o p8-fsi.dtb.o p8-i2c.dtb.o p9w-fsi.dtb.o \
p9z-fsi.dtb.o p9r-fsi.dtb.o p9-kernel.dtb.o libpdbg.la libfdt.la \
-L.libs
pdbg_LDFLAGS = -Wl,--whole-archive,-lpdbg,--no-whole-archive
pdbg_CFLAGS = -I$(top_srcdir)/libpdbg -Wall -DGIT_SHA1=\"${GIT_SHA1}\"
lib_LTLIBRARIES = libpdbg.la libfdt.la
libfdt_la_CFLAGS = -I$(top_srcdir)/libfdt -DHAVE_LITTLE_ENDIAN
libpdbg_la_CFLAGS = -I$(top_srcdir)/libfdt -DHAVE_LITTLE_ENDIAN
libfdt_la_SOURCES = \
libfdt/fdt.c \
libfdt/fdt_ro.c \
libfdt/fdt_wip.c \
libfdt/fdt_sw.c \
libfdt/fdt_rw.c \
libfdt/fdt_strerror.c \
libfdt/fdt_empty_tree.c \
libfdt/fdt_addresses.c \
libfdt/fdt_overlay.c
libpdbg_la_SOURCES = \
libpdbg/kernel.c \
libpdbg/fake.c \
libpdbg/chip.c \
libpdbg/p8chip.c \
libpdbg/p9chip.c \
libpdbg/bmcfsi.c \
libpdbg/cfam.c \
libpdbg/i2c.c \
libpdbg/adu.c \
libpdbg/device.c \
libpdbg/target.c
%.dts: %.dts.m4
m4 -Isrc $< > $@
%.dtsi: %.dtsi.m4
m4 -Isrc $< > $@
p9w-fsi.dtb.o: p9w-fsi.dts p9-fsi.dtsi
%.dtb.o: %.dts
dtc -I dts $< -O dtb > $@.tmp
# We need to align the output as some processor/kernel
# combinations can't deal with the alignment errors when
# unflattening the device-tree
dd if=$@.tmp of=$@ ibs=16 conv=sync
rm $@.tmp
objcopy -I binary -O @ARCH_FF@ $@ $@
|