diff options
author | Uros Majstorovic <majstor@majstor.org> | 2025-02-16 19:54:41 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2025-02-16 19:54:41 +0100 |
commit | aeb896b55c384d7f9a6e9a29f74cf560c6392c5b (patch) | |
tree | f817f015ae530e6f375482a851ee5b6779eea982 /yocto/overlays/Makefile | |
parent | 7269b0a3f0b7e5f41ba65c7321fde9b8fd88c642 (diff) |
linux for toradex module support initial import
Diffstat (limited to 'yocto/overlays/Makefile')
-rw-r--r-- | yocto/overlays/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/yocto/overlays/Makefile b/yocto/overlays/Makefile new file mode 100644 index 0000000..b574d5d --- /dev/null +++ b/yocto/overlays/Makefile @@ -0,0 +1,7 @@ +DTC ?= dtc + +P = .preprocessed +%.dtbo: %.dts + cpp -nostdinc -I "$(STAGING_KERNEL_DIR)/arch/arm64/boot/dts" -I "$(STAGING_KERNEL_DIR)/include" -undef -x assembler-with-cpp $< $<$P + $(DTC) $(DTC_FLAGS) -Hepapr -I dts -O dtb -i "$(STAGING_KERNEL_DIR)/arch/arm64/boot/dts/" -o $@ $<$P + rm $<$P |