ladybird/Kernel/mkmap.sh
2018-12-03 02:23:49 +01:00

7 lines
145 B
Bash

#!/bin/sh
tmp=$(mktemp)
nm -nC kernel | uniq > $tmp
printf "%08x\n" $(wc -l $tmp | cut -f1 -d' ') > kernel.map
cat $tmp >> kernel.map
rm -f $tmp