mirror of
https://github.com/easytarget/MQ-Pro-IO.git
synced 2026-01-23 03:13:27 +00:00
5 lines
161 B
Bash
Executable File
5 lines
161 B
Bash
Executable File
for file in `ls *.dts*` ; do
|
|
echo $file
|
|
cpp -I/usr/src/linux-headers-6.8.0-31-generic/include/ -nostdinc -undef -x assembler-with-cpp $file > dtspp/$file
|
|
done
|