mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
14 lines
231 B
Ruby
14 lines
231 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
crates = Dir["**/Cargo.toml"].sort!
|
|
|
|
crates.each do |x|
|
|
next if x.include?('raspi3_boot')
|
|
|
|
x = File.dirname(x)
|
|
puts "\n" + x.to_s + ':'
|
|
Dir.chdir(x) do
|
|
system('make nm | grep panic_fmt')
|
|
end
|
|
end
|