mirror of
https://github.com/easytarget/MQ-Pro-IO.git
synced 2025-10-14 09:45:52 +01:00
6 lines
212 B
Bash
Executable File
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
|