diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-05-14 14:20:41 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-05-14 14:20:41 +0200 |
commit | 7429778133f01e278422bf68154470f190cd5572 (patch) | |
tree | 34a3a641e55591404f46b6b484da7ab2a5573b59 /dts | |
parent | f4b909d04e8ae14173f7ccb47ddc5e62054e93b2 (diff) |
compile dtb
Diffstat (limited to 'dts')
-rw-r--r-- | dts/.gitignore | 1 | ||||
l--------- | dts/include | 1 | ||||
-rw-r--r-- | dts/makefile | 17 | ||||
l--------- | dts/src | 1 |
4 files changed, 20 insertions, 0 deletions
diff --git a/dts/.gitignore b/dts/.gitignore new file mode 100644 index 0000000..b60ed20 --- /dev/null +++ b/dts/.gitignore @@ -0,0 +1 @@ +*.dtb diff --git a/dts/include b/dts/include new file mode 120000 index 0000000..3937464 --- /dev/null +++ b/dts/include @@ -0,0 +1 @@ +../linux/include
\ No newline at end of file diff --git a/dts/makefile b/dts/makefile new file mode 100644 index 0000000..5ccaa69 --- /dev/null +++ b/dts/makefile @@ -0,0 +1,17 @@ +DTC := dtc +DTCFLAGS += -I dts +DTCFLAGS += -O dtb +CPP := cpp +CPPFLAGS += -nostdinc +CPPFLAGS += -I include +CPPFLAGS += -undef +CPPFLAGS += -x assembler-with-cpp + +all: am335x-boneblack-uboot-univ.dtb + +%.dts.pre: %.dts + $(CPP) $(CPPFLAGS) $< $@ + +%.dtb: src/%.dts.pre + $(DTC) $(DTCFLAGS) -o $@ $< + @@ -0,0 +1 @@ +../linux/arch/arm/boot/dts
\ No newline at end of file |