2024-04-30 00:34:30 +00:00

6 lines
212 B
Bash
Executable File

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