mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-05 17:24:30 +01:00
11 lines
234 B
Bash
11 lines
234 B
Bash
|
kdir=${1:-../kernel}
|
||
|
scriptdir=$(dirname $0)
|
||
|
udir=$(dirname $scriptdir)
|
||
|
cat $scriptdir/kernel-files.txt | \
|
||
|
(while read l r; do
|
||
|
left=$(eval echo $l)
|
||
|
right=$(eval echo $r)
|
||
|
# echo $left $right
|
||
|
diff -up $left $right
|
||
|
done)
|