mirror of
https://github.com/openpower-cores/a2-code.git
synced 2026-01-13 23:45:30 +00:00
11 lines
219 B
Bash
Executable File
11 lines
219 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
if [ -z "$1" ]; then
|
|
f=a
|
|
else
|
|
f=$1
|
|
fi
|
|
|
|
# this removes the addresses; objdump does show all 0's when align skips addresses
|
|
objdump -s -j .hwinit $f.out | tail -n +5 | cut -c 7-41 > $f.hwinit.dmp
|