This commit is contained in:
Owen
2024-04-30 00:34:30 +00:00
parent 0c3ba1f9ec
commit 8c7f66238b
9 changed files with 93 additions and 35 deletions

View File

@@ -0,0 +1,5 @@
rm -f dtbs/*
for file in `ls ../{*.dts,*.dtsi}`; do
echo "Processing $file to ${file##*/}"
cpp -I/usr/src/linux-headers-6.8.0-31-generic/include/ -nostdinc -undef -x assembler-with-cpp $file > ${file##*/}
done