1 |
2 |
csantifort |
#!/bin/bash
|
2 |
|
|
|
3 |
|
|
#--------------------------------------------------------------#
|
4 |
|
|
# #
|
5 |
|
|
# amber-printk.sh #
|
6 |
|
|
# #
|
7 |
|
|
# This file is part of the Amber project #
|
8 |
|
|
# http://www.opencores.org/project,amber #
|
9 |
|
|
# #
|
10 |
|
|
# Description #
|
11 |
|
|
# Parse the Amber disassembly file, amber.dis, and extract #
|
12 |
|
|
# all the characters printed to the printk log file Useful #
|
13 |
|
|
# to follow the progress of a vmlinux simulation. #
|
14 |
|
|
# #
|
15 |
|
|
# Author(s): #
|
16 |
|
|
# - Conor Santifort, csantifort.amber@gmail.com #
|
17 |
|
|
# #
|
18 |
|
|
#//////////////////////////////////////////////////////////////#
|
19 |
|
|
# #
|
20 |
|
|
# Copyright (C) 2010 Authors and OPENCORES.ORG #
|
21 |
|
|
# #
|
22 |
|
|
# This source file may be used and distributed without #
|
23 |
|
|
# restriction provided that this copyright statement is not #
|
24 |
|
|
# removed from the file and that any derivative work contains #
|
25 |
|
|
# the original copyright notice and the associated disclaimer. #
|
26 |
|
|
# #
|
27 |
|
|
# This source file is free software; you can redistribute it #
|
28 |
|
|
# and/or modify it under the terms of the GNU Lesser General #
|
29 |
|
|
# Public License as published by the Free Software Foundation; #
|
30 |
|
|
# either version 2.1 of the License, or (at your option) any #
|
31 |
|
|
# later version. #
|
32 |
|
|
# #
|
33 |
|
|
# This source is distributed in the hope that it will be #
|
34 |
|
|
# useful, but WITHOUT ANY WARRANTY; without even the implied #
|
35 |
|
|
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR #
|
36 |
|
|
# PURPOSE. See the GNU Lesser General Public License for more #
|
37 |
|
|
# details. #
|
38 |
|
|
# #
|
39 |
|
|
# You should have received a copy of the GNU Lesser General #
|
40 |
|
|
# Public License along with this source; if not, download it #
|
41 |
|
|
# from http://www.opencores.org/lgpl.shtml #
|
42 |
|
|
# #
|
43 |
|
|
#--------------------------------------------------------------#
|
44 |
|
|
|
45 |
|
|
VMLINUXDIS=../../sw/vmlinux/vmlinux.dis
|
46 |
|
|
AMBERDIS=amber.dis
|
47 |
|
|
|
48 |
|
|
|
49 |
|
|
if [[ -e $VMLINUXDIS ]] ; then
|
50 |
11 |
csantifort |
ADDR=`grep '<emit_log_char>:' $VMLINUXDIS | awk '{print $1}' | sed 's/^0*//'`
|
51 |
2 |
csantifort |
grep "to $ADDR" $AMBERDIS | awk '{print $8}' | awk -F "" '{print $7 $8}' | ../../sw/tools/amber-mem-ascii
|
52 |
|
|
else
|
53 |
|
|
echo "Error can't find the file $VMLINUXDIS"
|
54 |
|
|
fi
|