Category: linux

Configuring Linux’s serial port to raw mode

I was facing a strange issue when debugging a serial communication from a microcontroller on a Linux machine.

I was using this command to print modem communication:

$ cat /dev/ttyUSB0 | hexdump -v -e '/1 "%02X "' -e '/1 "%c\n"'

41 A
54 T
5A Z
0A 
0A 

The microcontroller was sending “ATZ\r\n” but in the Linux I saw only “ATZ\n\n”, initially I suspected that RTOS NuttX in the microcontroller was converting the “\r” (0x0D) to “\n” (0x0A).

After some low level debug I verified that NuttX was writing “\r” correctly in the serial port’s buffer.

Then I realized the guilt should be the Linux. In fact Linux handles serial port as a TTY interface. It means that Linux will do some post processing of serial data.

Fortunately we can change this behavior configuring the serial port to RAW mode, this way:

$ sudo stty -F /dev/ttyUSB0 raw
$ sudo stty -F /dev/ttyUSB0 -echo -echoe -echok
$ sudo stty -F /dev/ttyUSB0 115200

Now everything goes fine:

$ cat /dev/ttyUSB0 | hexdump -v -e '/1 "%02X "' -e '/1 "%c\n"'

41 A
54 T
5A Z
0D 
0A 

Source: http://www.armadeus.com/wiki/index.php?title=Serial_ports_usage_on_Linux

How to recover and decompress a Linux kernel dumped MTD partition

I used the “dd” utility to recover the kernel image from my IP Camera. Now I want to analyze it.

$ cp mtd2_Kernel.img /tmp/

Let see how is the kernel image:

$ file mtd2_Kernel.img
mtd2_Kernel.img: u-boot legacy uImage, Linux-2.6.24ssl, Linux/ARM, OS Kernel Image (Not compressed), 1467600 bytes, Mon Apr  8 16:01:50 2013, Load Address: 0x50C08000, Entry Point: 0x50C08000, Header CRC: 0xFFA94C01, Data CRC: 0xA90B8571

Hmm, it is u-boot uImage, let us to remove the u-boot header:

$ dd if=mtd2_Kernel.img of=Image bs=64 skip=1
23551+0 records in
23551+0 records out
1507264 bytes (1.5 MB) copied, 0.0529103 s, 28.5 MB/s

Let see now:

$ file Image 
Image: Linux kernel ARM boot executable zImage (little-endian)

Hmm, it is a zImage file, if I rename it and try to extract?

$ mv Image Image.gz
$ gunzip Image.gz
gzip: Image.gz: not in gzip format

No way!

(After more search I found this suggestions)

Let try it:

$ mv Image.gz zImage
$ arm-linux-objdump -EL -b binary -D -m armv5t zImage | grep 8b1f
    31e4:	00088b1f 	andeq	r8, r8, pc, lsl fp
   28404:	6c8b1f44 	stcvs	15, cr1, [fp], {68}
   36464:	e8b1f4f9 	ldmia	r1!, {r0, r3, r4, r5, r6, r7, sl, ip, sp, lr, pc}
...

We are interested only in the first address (31e4 = 12772)

$ dd if=zImage of=piggy.gz bs=1 skip=12772
1494492+0 records in
1494492+0 records out
1494492 bytes (1.5 MB) copied, 2.36995 s, 631 kB/s

And finally:

$ file piggy.gz 
piggy.gz: gzip compressed data, last modified: Mon Apr  8 16:01:49 2013, max compression, from Unix

$ gunzip piggy.gz

gzip: piggy.gz: decompression OK, trailing garbage ignored

Great!!!

Now I can inspect the kernel symbols because /proc/ksyms and /proc/kallsyms are not present.

Controlling the LEDs of a USB Keyboard connected to RaspberryPi using SNMP

I will show you how to read the LEDs’ status of a USB Keyboard connected to RaspberryPi and how to change the status of Scroll-Lock LED remotely (X11 libs don’t accept to control CapsLock and NumLock). We will use the SNMP protocol to read the LEDs status and write to Scroll-Lock LED.

Because I only found a 2GB SD Card here in my house I was forced to use the old “2012-10-28-wheezy-raspbian.img” Raspbian image to fit inside this card.

After installing and configuring Raspbian it returned “403 Forbidden Failed” when attempting to install packages.

You can fix it editing /etc/apt/source.list removing the default repository and adding:

deb http://archive.raspbian.org/raspbian wheezy main contrib non-free

Install all necessary software to get SNMP working and X11 lib to control keyboard LEDs:

$ sudo apt-get install snmp-mibs-downloader libsnmp-dev snmp snmpd libx11-dev

Verify the paths where “snmpd” are looking for snmpd.conf and for MIBs:

$ net-snmp-config --default-mibdirs

As you can see it returned many paths, but among them the /home/pi/.snmp. This is a place where snmpd will look to find a config file. We will put our file there.

First let create the .snmpd directory:

$ mkdir -p ~/.snmp/mibs/
$ mkdir -p ~/snmp/src/

Download the file exemplo.zip

Decompress it and copy EXEMPLO-MIB file to ~/.snmp/mibs:

$ cp snmp/EXEMPLO-MIB ~/.snmp/mibs

Edit the file /etc/snmp/snmp.conf and replace “mibs :” by:

mibs +EXEMPLO-MIB

Also copy exemplo.c and exemplo.h files to ~/snmp/src:

$ cp snmp/exemplo.* ~/snmp/src

Enter inside ~/snmp/src and create the shared library (AKA snmp module) :

$ cd ~/snmp/src
$ gcc `net-snmp-config --cflags` -fPIC -shared -g -O0 -o exemplo.so exemplo.c `net-snmp-config --libs` -lX11

Copy it to /usr/lib:

$ sudo cp exemplo.so /usr/lib
$ sudo ldconfig

We need to load this library using SNMP commands, but to use SNMP commands we need to create an User and Password.

To do it enter inside ~/.snmp and create a basic configuration (snmpd.conf) file there:

$ cd ~/.snmp
$ snmpconf -r none -g basic_setup

Do you want to configure the information returned in the system MIB group
(contact info, etc)? (default = y):y

The location of the system: your location

The contact information: your name

Do you want to properly set the value of the sysServices.0 OID
(if you don't know, just say no)? (default = y): n

Do you want to allow SNMPv3 read-write user based access (default = y):y

The SNMPv3 user that should have read-write access: raspi

The minimum security level required for that user
[noauth|auth|priv, default = auth]: auth

The OID that this community should be restricted to [if appropriate]: 

Finished Output: rwuser raspi auth
Do another rwuser line? (default = y):n

Do you want to allow SNMPv3 read-only user based access (default = y):y

Enter the SNMPv3 user that should have read-only access to the system: joe

The minimum security level required for that user [noauth|auth|priv, default = auth]: auth

The OID that this community should be restricted to [if appropriate]: .1.3.6.1.4.1.54321

Do another rouser line? (default = y): n

Do you want to allow SNMPv1/v2c read-write community access (default = y): y

Enter the community name to add read-write access for: acme

The hostname or network address to accept this community name from [RETURN for all]: 

The OID that this community should be restricted to [RETURN for no-restriction]: 

Do another rwcommunity line? (default = y): n

Do you want to allow SNMPv1/v2c read-only community access (default = y): n

Do you want to configure where and if the agent will send traps? (default = y): n

Do you want to configure the agent's ability to monitor varios aspects of your system (default = y): n

It will create the snmpd.conf file at our current location (/home/pi/.snmp/)

Stop snmpd and start it manually:

$ sudo service snmpd stop
$ sudo snmpd -f -L -Dexemplo,dlmod

If you faced some user/password issues at this point you can stop the snmp service and configure the /etc/snmp/snmp.conf this way:

mibs +EXEMPLO-MIB
defSecurityName raspi
defContext ""
defAuthType MD5
defSecurityLevel authNoPriv
defAuthPassphrase password
defVersion 3

You can replace “defAuthPassphrase password” by “defAuthPassphrase yourpass” but “yourpass” needs to have at least 8 characters.

Remember to start the snmpd server before execute next commands.

Now we can load the library, to do it create a new row in the dlmod table:

$ snmpset -c acme -v3 -u raspi -A password localhost UCD-DLMOD-MIB::dlmodStatus.1 i create 

UCD-DLMOD-MIB::dlmodStatus.1 = INTEGER: create(6)

We can see its content using this command:

$ snmptable -c acme -v3 -u raspi -A password localhost UCD-DLMOD-MIB::dlmodTable 

SNMP table: UCD-DLMOD-MIB::dlmodTable

 dlmodName dlmodPath dlmodError dlmodStatus
                                   unloaded

We need to update this new row with our dynamic module info:

$ snmpset -c acme -v3 -u raspi -A password localhost UCD-DLMOD-MIB::dlmodName.1 s "exemplo" UCD-DLMOD-MIB::dlmodPath.1 s "/usr/lib/exemplo.so"

MIB::dlmodName.1 = STRING: exemplo
UCD-DLMOD-MIB::dlmodPath.1 = STRING: /usr/lib/exemplo.so

Load the dynamic module:

$ snmpset -c acme -v3 -u raspi -A password localhost UCD-DLMOD-MIB::dlmodStatus.1 i load

UCD-DLMOD-MIB::dlmodStatus.1 = INTEGER: load(4)

Confirm it was loaded successfully:

$ snmptable -c acme -v3 -u raspi -A password localhost UCD-DLMOD-MIB::dlmodTable 

SNMP table: UCD-DLMOD-MIB::dlmodTable

 dlmodName           dlmodPath dlmodError dlmodStatus
   exemplo /usr/lib/exemplo.so                 loaded

You can test if it is working this way:

$ snmpget -c acme -v3 -u raspi -A password localhost EXEMPLO-MID::scrollLock.0

EXEMPLO-MIB::scrollLock.0 = INTEGER: 0

Now you can write to Scroll-Lock LED this way:

$ snmpset -c acme -v3 -u raspi -A password localhost EXEMPLO-MID::scrollLock.0 i 1

EXEMPLO-MIB::scrollLock.0 = INTEGER: aceso(1)

If everything worked fine the Scroll-Lock LED of keyboard connected to RaspiberryPi will turn on!

Now time to try the remote access! My Raspi board got the IP 192.168.0.15 and my computer got the IP 192.168.0.14. Then from my computer I tried to control the Scroll-Lock this way:

$ snmpset -c acme -v3 -u raspi -A password 192.168.0.15 EXEMPLO-MIB::scrollLock.0 i 1
snmpset: Timeout

Unfortunately it didn’t work! More some Internet search and I discovered that I need to use the interface IP in the snmpd command line to get it working:

$ sudo snmpd -f -L -Dexemplo,dlmod 192.168.0.15

Let me try again:

$ snmpset -c acme -v3 -u raspi -A password 192.168.0.15 EXEMPLO-MIB::scrollLock.0 i 1
Error in packet.
Reason: authorizationError (access denied to that object)

Now the error changed to authorization access.

Just more some search and I find out the right way to go:

$ snmpset -c acme -v3 -u raspi -A password -l authNoPriv 192.168.0.15 EXEMPLO-MIB::scrollLock.0 i 1
EXEMPLO-MIB::scrollLock.0 = INTEGER: aceso(1)

If you want to enable the SNMPv1 support in the snmpd you need to edit the /etc/snmp/snmpd.conf and add:

view         acmeonly      included    .1.3.6.1.4.1.54321
rwcommunity  acme          default     -V acmeonly

You can test if it worked this way:

$ snmpset -c acme -v1 192.168.0.15 EXEMPLO-MIB::scrollLock.0 i 1

EXEMPLO-MIB::scrollLock.0 = INTEGER: 1

All done!

Source for SNMP configuration: http://net-snmp.sourceforge.net/tutorial/tutorial-5/demon/snmpd.html

Creating a SNMP agent in the Debian

This post is a logic continuation of my friend Marcelo’s posts (in Portuguese sorry) :

https://jedizone.wordpress.com/2012/03/08/o-guia-definitivo-para-os-iniciantes-em-net-snmp-6/
https://jedizone.wordpress.com/2012/03/21/o-guia-definitivo-para-os-iniciantes-em-net-snmp/

When trying to run mib2c in Debian I got this error:

$ mib2c -c mib2c.scalar.conf exemplo

ERROR: You don't have the SNMP perl module installed.  Please obtain
this by getting the latest source release of the net-snmp toolkit from
http://www.net-snmp.org/download/ .  Once you download the source and
unpack it, the perl module is contained in the perl/SNMP directory.
See the README file there for instructions.

Then I downloaded the current netsnmp tarball, decompressed and executed:

$ cd net-snmp-5.7.3/perl/
$ perl Makefile.PL
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for NetSNMP::default_store
Writing MYMETA.yml and MYMETA.json
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for NetSNMP::ASN
Writing MYMETA.yml and MYMETA.json
ERROR:
Net-SNMP installed version: 5.7.2.1 => 5.07021
Perl Module Version:        5.0703

These versions must match for perfect support of the module.  It is possible
that different versions may work together, but it is strongly recommended
that you make these two versions identical.  You can get the Net-SNMP
source code and the associated perl modules directly from 

   http://www.net-snmp.org/

If you want to continue anyway please set the NETSNMP_DONT_CHECK_VERSION
environmental variable to 1 and re-run the Makefile.PL script.

Hmm, after downloading the netsnmp version 5.7.2.1 (that is the version used by my Debian distro) and repeated the process and it worked fine:

$ cd net-snmp-5.7.3/perl/
$ perl Makefile.PL
$ make
$ sudo make install

Great perl snmp module compiled and installed.

Now we can create our MIBs as a dynamic library (called module in this context) :

$ mib2c -c mib2c.scalar.conf exemplo

$ gcc `net-snmp-config --cflags` -fPIC -shared -g -O0 -o exemplo.so exemplo.c `net-snmp-config --libs` -lX11

Copy it to your defaul library directory (optional, but recommend if you are a “copypaster”) :

$ sudo cp exemplo.so /usr/lib
$ sudo ldconfig

Edit/create file /etc/snmp/snmpd.conf with:

createUser initial
rwuser initial

You can replace “initial” by other user, but you need to create this new user using the “net-snmp-config” command. This “initial” is an initial user that comes pre-configured in the snmp.

Case snmpd is running you need to stop it:

$ sudo service snmpd stop

Now start snmpd manually and ask it to debug the modules exemplo,dlmod:

$ sudo snmpd -f -L -Dexemplo,dlmod

Unfortunately this is not enough to start your dynamic module, as you can see:

$ snmpget -c acme -v3 -u initial -l noAuthNoPriv localhost EXEMPLO-MIB::scrollLock.0

EXEMPLO-MIB::scrollLock.0 = No Such Object available on this agent at this OID

We need to create a new row in the dlmod table:

$ snmpset -c acme -v3 -u initial -l noAuthNoPriv localhost UCD-DLMOD-MIB::dlmodStatus.1 i create 

UCD-DLMOD-MIB::dlmodStatus.1 = INTEGER: create(6)

We can see its content using this command:

$ snmptable -c acme -v3 -u initial -l noAuthNoPriv localhost UCD-DLMOD-MIB::dlmodTable 

SNMP table: UCD-DLMOD-MIB::dlmodTable

 dlmodName dlmodPath dlmodError dlmodStatus
                                   unloaded

We need to update this new row with our dynamic module info:

$ snmpset -c acme -v3 -u initial -l noAuthNoPriv localhost UCD-DLMOD-MIB::dlmodName.1 s "exemplo" UCD-DLMOD-MIB::dlmodPath.1 s "/usr/lib/exemplo.so"

MIB::dlmodName.1 = STRING: exemplo
UCD-DLMOD-MIB::dlmodPath.1 = STRING: /usr/lib/exemplo.so

Load the dynamic module:

$ snmpset -c acme -v3 -u initial -l noAuthNoPriv localhost UCD-DLMOD-MIB::dlmodStatus.1 i load

UCD-DLMOD-MIB::dlmodStatus.1 = INTEGER: load(4)

Confirm it was loaded successfully:

$ snmptable -c acme -v3 -u initial -l noAuthNoPriv localhost UCD-DLMOD-MIB::dlmodTable 

SNMP table: UCD-DLMOD-MIB::dlmodTable

 dlmodName           dlmodPath dlmodError dlmodStatus
   exemplo /usr/lib/exemplo.so                 loaded

Now that the dynamic library was loaded you can repeat the above command:

$ snmpget -c acme -v3 -u initial -l noAuthNoPriv localhost EXEMPLO-MIB::scrollLock.0

EXEMPLO-MIB::scrollLock.0 = INTEGER: 0

Let try to set it to 1:

$ snmpset -c acme -v3 -u initial -l noAuthNoPriv localhost EXEMPLO-MIB::scrollLock.0 i 1

EXEMPLO-MIB::scrollLock.0 = INTEGER: aceso(1)

Let to double check it changed:

$ snmpget -c acme -v3 -u initial -l noAuthNoPriv localhost EXEMPLO-MIB::scrollLock.0

EXEMPLO-MIB::scrollLock.0 = INTEGER: aceso(1)

Source: http://net-snmp.sourceforge.net/tutorial/tutorial-5/toolkit/dlmod/

How to create SNMP User: https://stomp.colorado.edu/blog/blog/2010/07/09/on-configuring-snmpv3-in-net-snmp/

Compiling Lintouch in the Debian Squeezy

This procedure was performed inside a VirtualBox machine running Debian Squeezy (installed from debian-6.0.10-amd64-netinst.iso) in a 64GB virtual disk.

First step: install all development packages:

$ sudo apt-get install \
build-essential \
automake \
libtool \
texinfo \
libncurses5-dev \
libusb-dev \
libxml2-dev \
libusb-1.0-0-dev \
cmake \
gawk \
gperf \
bison \
flex \
chrpath \
git \
gitk \
subversion \
vim \
doxygen \
libcppunit-dev \
libapr1-dev \
libaprutil1-dev \
libsnmp-dev \
libqt3-mt-dev \
libqwt-dev

Clone Lintouch repository:

$ git clone https://github.com/acassis/lintouch.git

### Initial Configuration/Compilation ###

$ cd lintouch/lintouch
$ ./bootstrap
$ ./configure
$ make
$ sudo make install

Now you can just call the Lintouch editor to start developing your project:

$ lintouch-editor

How to install an old Debian version in the VirtualBox

1) Download the Debian netinstall CDs

2) Create a new machine in the VirtualBox select Debian 32 or 64 bits (needs to be same arch of downloaded netinstall CD). Select about 512MB of RAM or more and 8GB Hard disc or more.

3) Edit the machine Settings. In the Storage click in the Empty disk under “Controller IDE” and then click in the CD Disk more at right side of screen and click on “Choose CD/DVD virtual disk” and point it to .iso netinstall CD.

4) Click in the “Controller: IDE” and then click “Add Hard Disk” and select the Debian.vdi disk image that was created when you create the Debian Image. This same file is also at “Controller: SATA”, but older Debian images (Woody, Sarge) will not detect the SATA then you can remove the Debian.vdi from SATA.

Now just start the Debian image and it will show the Debian boot image. After conclude the installation you need to enter the Archive debian repositories:

deb http://archive.debian.org/debian-security/ <version>/updates main non-free contrib
deb-src http://archive.debian.org/debian-security/ <version>/updates main non-free contrib

Remember to replace “<version>” by “woody”, or “sarge”, etc.

NameError: global name ‘base’ is not defined

I was facing this error:

$ python Spectrogram.py 
Traceback (most recent call last):
  File "Spectrogram.py", line 22, in 
    devices = SerialPortDevice.enumerate_devices()
  File "/comum/workspace/adafruit_guide_fft-master/SerialPortDevice.py", line 68, in enumerate_devices
    return [SerialPortDevice(port[0], port[1]) for port in serial.tools.list_ports.comports() if port[2] != 'n/a']
  File "/usr/lib/python2.7/dist-packages/serial/tools/list_ports_posix.py", line 122, in comports
    return [(d, describe(d), hwinfo(d)) for d in devices]
  File "/usr/lib/python2.7/dist-packages/serial/tools/list_ports_posix.py", line 93, in describe
    return usb_lsusb_string(sys_usb)
  File "/usr/lib/python2.7/dist-packages/serial/tools/list_ports_posix.py", line 80, in usb_lsusb_string
    return base
NameError: global name 'base' is not defined

Then I found this “pyserial_patch.diff” patch:
http://sourceforge.net/p/pyserial/patches/26/

After editing the list_ports_posix.py the error message disappeared:

$ sudo vi /usr/lib/python2.7/dist-packages/serial/tools/list_ports_posix.py

More Sony KDL-32EX405 logs

I got these logs from Sony KDL-32EX405 TV using the Linux kernel SysRq resource to force the kernel to kill (tErmine) all process, etc.

You can send SysRq commands over minicom using Ctrl + F combination:

Ctrl + F e
Ctrl + F i

See my logs:

[   34.024761] 021.996s  # expires at 127444093668 nsecs [in 105450701280 nsec]
[   34.032884]                                                                 
[   34.032892] 021.996s                                                        
[   34.042354]                                                                 
[   34.042362] 025.417s SysRq : Changing Loglevel                              
[   34.046935]                                                                 
[   34.046942] 025.417s Loglevel set to 8                                      
[   34.053718]                                                                 
[   34.053726] 029.437s eth0: link down                                        
[   34.059812]                                                                 
[   34.059821] 030.305s SysRq : Changing Loglevel                              
[   34.065693]                                                                 
[   34.065701] 030.305s Loglevel set to 8                                      
[   34.072476]                                                                 
[   34.072484] 032.301s SysRq : Terminate All Tasks                            
[   34.078529]                                                                 
[   34.078536] ================================================================
[   34.096019] [register dump]                                                 
[   34.099366]  0: r0: 0x00000000 at: r1: 0x10008400 v0: r2: 0x2aaddd2c v1: r30
[   34.107612] a0: r4: 0x7f7fec94 a1: r5: 0x00000000 a2: r6: 0x80000000 a3: r71
[   34.115867] t0: r8: 0x00000000 t1: r9: 0x00000000 t2:r10: 0x80f044ec t3:r114
[   34.124112] t4:r12: 0x7f7fed08 t5:r13: 0x00000001 t6:r14: 0x00000000 t7:r150
[   34.132372] s0:r16: 0x2aaddd34 s1:r17: 0x7f7fec94 s2:r18: 0x00000001 s3 r19c
[   34.140801] s4:r20: 0x2aad4848 s5:r21: 0x7f7ffd50 s6:r22: 0x7f7fec90 s7:r23c
[   34.148931] t8:r24: 0x00000000 t9:r25: 0x2c255c34 k0:r26: 0x00000000 k1:r270
[   34.157256] gp:r28: 0x2c2750e0 sp:r29: 0x7f7fe960 s8:r30: 0x7f7fe960 ra:r31c
[   34.165609] hi:   : 0x00000000 lo:   : 0x000007b0                           
[   34.170497] cp0 status:   0x00008413                                        
[   34.170517] cp0 badvaddr: 0x2aaddd34                                        
[   34.170529] cp0 cause:    0x10800008                                        
[   34.170541] cp0 epc:      0x2c255c74                                        
[   34.170553]                                                                 
[   34.186528]                                                                 
[   34.186551] [stack dump]                                                    
[   34.190782] 7f7fe960 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.197845] 7f7fe970 :  0x2c2750e0 0x00000000 0x7f7ffd50 0x7f7ffd50         
[   34.204963] 7f7fe980 :  0x00000001 0x2aaddd3c 0x7f7fe990 0x2c2544dc         
[   34.211647] 7f7fe990 :  0x00000000 0x00000000 0x7f7fe9a0 0x00000000         
[   34.218890] 7f7fe9a0 :  0x2c2750e0 0x00000000 0x7f7ffd50 0xffffffff         
[   34.226035] 7f7fe9b0 :  0x7f7fe9b8 0x2c259910 0x7f7fe9c0 0x2c25bf14         
[   34.232730] 7f7fe9c0 :  0x00000000 0x00000000 0x2c2750e0 0x00000000         
[   34.240015] 7f7fe9d0 :  0x2aaddd34 0x2aaddd2c 0x7f7fec78 0x7f7fe9f0         
[   34.246662] 7f7fe9e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.253778] 7f7fe9f0 :  0x24021017 0x0000000c 0x00000000 0x00000000         
[   34.260473] 7f7fea00 :  0x00000000 0x2c05b814 0x00000000 0x00000000         
[   34.267323] 7f7fea10 :  0x00000000 0x10008400 0x00000000 0x00000004         
[   34.274414] 7f7fea20 :  0x00000000 0x7f7ffd50 0x00000000 0x2aaddd3c         
[   34.281413] 7f7fea30 :  0x00000000 0x00000000 0x00000000 0x00000001         
[   34.288002] 7f7fea40 :  0x00000000 0x00000001 0x00000000 0x00000000         
[   34.294933] 7f7fea50 :  0x00000000 0x00000000 0x00000000 0x80f044ec         
[   34.302345] 7f7fea60 :  0x00000000 0x00000004 0x00000000 0x7f7fed08         
[   34.308936] 7f7fea70 :  0x00000000 0x00000001 0x00000000 0x00000000         
[   34.315885] 7f7fea80 :  0x00000000 0x80851800 0x00000000 0x2aaddd34         
[   34.322975] 7f7fea90 :  0x00000000 0x2aaddd2c 0x00000000 0x00000001         
[   34.329937] 7f7feaa0 :  0x00000000 0x2aaddd3c 0x00000000 0x2aad4848         
[   34.336567] 7f7feab0 :  0x00000000 0x7f7ffd50 0x00000000 0x7f7fec90         
[   34.343549] 7f7feac0 :  0x00000000 0x7fbfeaac 0x00000000 0x00000000         
[   34.350836] 7f7fead0 :  0x00000000 0x2c05b800 0x00000000 0x00000000         
[   34.357651] 7f7feae0 :  0x00000000 0x00000000 0x00000000 0x2c10b180         
[   34.364334] 7f7feaf0 :  0x00000000 0x7f7fec78 0x00000000 0x7f7fec78         
[   34.371650] 7f7feb00 :  0x00000000 0x2c2568c4 0x2c8137c3 0x7f7fed98         
[   34.378289] 7f7feb10 :  0x00000000 0x2c0ef5e8 0x00000000 0x00000012         
[   34.385622] 7f7feb20 :  0x00000000 0x7f7feae7 0x7f7fe774 0x7f7fe798         
[   34.392303] 7f7feb30 :  0x7f7fe7d8 0x2c0ef5e8 0x00000018 0x7f7fed8c         
[   34.399161] 7f7feb40 :  0x2c8137b0 0x2c830000 0x00000001 0x7f7fee58         
[   34.406246] 7f7feb50 :  0x00000002 0x7fbfeaac 0x7f7feb60 0x2c086bf8         
[   34.413221] 7f7feb60 :  0x7f7feb80 0x2c830000 0x0000007d 0x2ab13760         
[   34.419911] 7f7feb70 :  0x2c10b180 0x7fbfeaac 0x7f7feb80 0x7f7fed74         
[   34.427144] 7f7feb80 :  0x7f7fed9e 0x00000000 0x00000005 0x0208ffff         
[   34.434280] 7f7feb90 :  0x7f7fed8c 0x00000017 0x00000000 0x7f7fed94         
[   34.440960] 7f7feba0 :  0x7f7fedbe 0x00000000 0x00000005 0x0208ffff         
[   34.448195] 7f7febb0 :  0x7f7febd8 0x00000017 0x00000000 0x00000000         
[   34.455316] 7f7febc0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.462002] 7f7febd0 :  0x7f7febf8 0x00000000 0x00000000 0x00000000         
[   34.469228] 7f7febe0 :  0x2c82cb30 0x00000000 0x00000000 0x2ac3820c         
[   34.476220] 7f7febf0 :  0x2c82cb30 0x2c810000 0x2ab136c0 0x000002b6         
[   34.482906] 7f7fec00 :  0x00000000 0x2c7d8820 0x2c2750e0 0x00000000         
[   34.490179] 7f7fec10 :  0x0000000c 0x00000000 0x2c2750e0 0x2aabc040         
[   34.496822] 7f7fec20 :  0x00000000 0x00000000 0x00000000 0x000007b0         
[   34.503924] 7f7fec30 :  0x0000000c 0x2c34cbe4 0x2c2750e0 0x2aabc040         
[   34.510606] 7f7fec40 :  0x2c10b180 0x7f7fec50 0x00000000 0x00000000         
[   34.517841] 7f7fec50 :  0x00000000 0x00000000 0x2aad4848 0xffffffff         
[   34.524837] 7f7fec60 :  0x2c2750e0 0x7f7fee58 0x2aaddd34 0x2aaddd2c         
[   34.531523] 7f7fec70 :  0x7f7fec78 0x2c2568a8 0x0000000c 0x7f7fedd8         
[   34.538746] 7f7fec80 :  0x2c2750e0 0x2aabc040 0x2c2750e0 0x7f7fec98         
[   34.545877] 7f7fec90 :  0x00000000 0x2aaddd2c 0x2aad4848 0x7f7feca8         
[   34.552558] 7f7feca0 :  0x2c255c34 0x7f7fec94 0x2aad4848 0x2aaddd2c         
[   34.559896] 7f7fecb0 :  0x2aad4848 0xffffffff 0x00000001 0x7f7fee58         
[   34.566487] 7f7fecc0 :  0x00000002 0x7f7fefb0 0x2c352ca4 0x7f7fee58         
[   34.573464] 7f7fecd0 :  0x0000000c 0x7fbfeaac 0x7f7fece0 0x2c078c7c         
[   34.580151] 7f7fece0 :  0x2c3b4970 0x7f7fefb0 0xffffffff 0x2aaddd2c         
[   34.587430] 7f7fecf0 :  0x2c352f60 0x00000000 0x2aaddcd8 0x2aad4824         
[   34.594722] 7f7fed00 :  0x2c2750e0 0xffffffff 0x2aaddcd8 0x7f7fefb0         
[   34.601729] 7f7fed10 :  0x2c3b4970 0x7f7fefb0 0x0016e001 0x00009825         
[   34.609060] 7f7fed20 :  0x2c826d30 0xffffffff 0x2aaddcd8 0x2aad4824         
[   34.615815] 7f7fed30 :  0x2aaddc98 0x2c34baac 0x2ab137e0 0x7f7fedd8         
[   34.623439] 7f7fed40 :  0x2c826d30 0x2c80113c 0x2c3b4970 0x00000000         
[   34.630258] 7f7fed50 :  0x2ab137e0 0xfffff44b 0x2c826d30 0x2c826d34         
[   34.637185] 7f7fed60 :  0x2c80150c 0x2c8014bc 0x2c82cb30 0xffffffff         
[   34.644552] 7f7fed70 :  0xffffec7e 0x00000009 0x2c82cb30 0x2c830000         
[   34.651308] 7f7fed80 :  0xffffffff 0x7f7fedd8 0x2c82cb30 0xffffffff         
[   34.658227] 7f7fed90 :  0x2c7c6738 0x74696361 0x6c736563 0x5f390000         
[   34.665414] 7f7feda0 :  0x00000000 0xffffffff 0x2c82cb30 0x00000000         
[   34.672472] 7f7fedb0 :  0xffffec7e 0x00000000 0x2c7c8e5c 0x2c7c8e34         
[   34.679137] 7f7fedc0 :  0x7f7ffd50 0x7f600000 0x7f7fefb0 0x2c34d248         
[   34.686511] 7f7fedd0 :  0x2c82cb30 0x7f7fee98 0x012750e0 0x7f600000         
[   34.693756] 7f7fede0 :  0x2c82cb30 0x7f7fee98 0x2c82cb30 0x2c810000         
[   34.700515] 7f7fedf0 :  0x0000006a 0x2ab13760 0xffffffff 0x2c7cb344         
[   34.707435] 7f7fee00 :  0x2c82cb30 0x00000000 0x2c3b4970 0x7f7fee98         
[   34.714596] 7f7fee10 :  0x2c82cb30 0x2c7facfc 0x2c82cb30 0x7f7fee98         
[   34.721658] 7f7fee20 :  0x2c82cb30 0x7f7fee98 0x7f7ffd50 0x7f600000         
[   34.728321] 7f7fee30 :  0x00200000 0x2c7cccf0 0x00000000 0x00000000         
[   34.735323] 7f7fee40 :  0x00000000 0x01000000 0x00000000 0x00000000         
[   34.742939] 7f7fee50 :  0x2c82cb30 0x00000000 0x00000000 0x00000000         
[   34.749694] 7f7fee60 :  0x01000000 0x5f584946 0x5849464d 0x67720000         
[   34.756614] 7f7fee70 :  0x00000000 0x2c8247d0 0x32363834 0x33353435         
[   34.763785] 7f7fee80 :  0x37000000 0x00000000 0x10000001 0x0000004e         
[   34.770864] 7f7fee90 :  0xffffffff 0x00000000 0x2c8247d0 0x5f584946         
[   34.777526] 7f7feea0 :  0x5849464d 0x67720000 0x00000000 0x00000002         
[   34.784543] 7f7feeb0 :  0x0000004e 0x0000220e 0x00000000 0x00000001         
[   34.792055] 7f7feec0 :  0x00000004 0x00000001 0x2c8247d0 0x32363834         
[   34.798732] 7f7feed0 :  0x33353435 0x37000000 0x00000000 0x10000001         
[   34.805731] 7f7feee0 :  0x0000004e 0xffffffff 0x00000000 0x2c8247d0         
[   34.813361] 7f7feef0 :  0x008247d0 0x0082cb30 0x2c7fa314 0x2c8247d0         
[   34.820119] 7f7fef00 :  0xffffffff 0x0000004e 0xffffffff 0x00000000         
[   34.827038] 7f7fef10 :  0x2c8247d0 0x00000000 0xffffffff 0x2c82cb30         
[   34.834210] 7f7fef20 :  0x00000000 0xffffffff 0x0000004e 0xffffffff         
[   34.841273] 7f7fef30 :  0x00000000 0x2c8247d0 0x00b1407c 0x2c82cb30         
[   34.847941] 7f7fef40 :  0x73746172 0x2c8247d0 0xffffffff 0x0000004e         
[   34.854996] 7f7fef50 :  0xffffffff 0x00000000 0x00000001 0x00000000         
[   34.862423] 7f7fef60 :  0x2aabd860 0x2c3b4970 0x7f7ffd50 0x7f600000         
[   34.869086] 7f7fef70 :  0x00200000 0x00001000 0x2c353bf4 0x2c353b40         
[   34.876433] 7f7fef80 :  0x00000000 0x2aabd8b4 0x00000000 0x00000000         
[   34.883786] 7f7fef90 :  0x00000000 0x7fbfea48 0x2c3b4970 0x7f600000         
[   34.890538] 7f7fefa0 :  0x7f7ffd50 0x7fbfea48 0x2c25c5a8 0x00000000         
[   34.897455] 7f7fefb0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.904599] 7f7fefc0 :  0x2c2750e0 0x00000000 0x00000015 0x00000000         
[   34.911544] 7f7fefd0 :  0x7f7ffd50 0x7fbfe9f0 0x2c05cc04 0x00000000         
[   34.918433] 7f7fefe0 :  0x2c25c52c 0x7f7ffd50 0x00380f00 0x00000000         
[   34.925301] 7f7feff0 :  0x00000000 0x00000000 0x00000000 0x2c10b180         
[   34.932626] 7f7ff000 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.939284] 7f7ff010 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.946322] 7f7ff020 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.953109] 7f7ff030 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.960427] 7f7ff040 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.967138] 7f7ff050 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.974180] 7f7ff060 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.980934] 7f7ff070 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.988224] 7f7ff080 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   34.995285] 7f7ff090 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.002033] 7f7ff0a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.009311] 7f7ff0b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.016373] 7f7ff0c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.023111] 7f7ff0d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.030464] 7f7ff0e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.037168] 7f7ff0f0 :  0x00000000 0x00000000 0x00000000 0x7f7ff50c         
[   35.044355] 7f7ff100 :  0x2aabc040 0x00000000 0x7f7ffd50 0x00000000         
[   35.051101] 7f7ff110 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.058381] 7f7ff120 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.065450] 7f7ff130 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.072188] 7f7ff140 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.079465] 7f7ff150 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.086671] 7f7ff160 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.093410] 7f7ff170 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.100740] 7f7ff180 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.107445] 7f7ff190 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.114744] 7f7ff1a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.121734] 7f7ff1b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.129057] 7f7ff1c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.135809] 7f7ff1d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.143424] 7f7ff1e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.150234] 7f7ff1f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.157153] 7f7ff200 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.164397] 7f7ff210 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.171147] 7f7ff220 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.178464] 7f7ff230 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.185547] 7f7ff240 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.192400] 7f7ff250 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.199863] 7f7ff260 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.206777] 7f7ff270 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.213526] 7f7ff280 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.220889] 7f7ff290 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.227598] 7f7ff2a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.234787] 7f7ff2b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.241535] 7f7ff2c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.248851] 7f7ff2d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.255931] 7f7ff2e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.262689] 7f7ff2f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.270049] 7f7ff300 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.276758] 7f7ff310 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.283828] 7f7ff320 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.290578] 7f7ff330 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.297895] 7f7ff340 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.304974] 7f7ff350 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.311854] 7f7ff360 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.319091] 7f7ff370 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.326274] 7f7ff380 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.333028] 7f7ff390 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.340377] 7f7ff3a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.347091] 7f7ff3b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.354275] 7f7ff3c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.361034] 7f7ff3d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.368012] 7f7ff3e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.375140] 7f7ff3f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.382292] 7f7ff400 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.388947] 7f7ff410 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.395933] 7f7ff420 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.403087] 7f7ff430 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.410067] 7f7ff440 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.417003] 7f7ff450 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.423749] 7f7ff460 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.431106] 7f7ff470 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.437812] 7f7ff480 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.444842] 7f7ff490 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.451716] 7f7ff4a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.458941] 7f7ff4b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.465985] 7f7ff4c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.472730] 7f7ff4d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.480088] 7f7ff4e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.486798] 7f7ff4f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.493840] 7f7ff500 :  0x00000000 0x00000000 0x00000000 0x00000001         
[   35.500590] 7f7ff510 :  0x00000000 0x7f7ff100 0x00000000 0x00000000         
[   35.507935] 7f7ff520 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.514978] 7f7ff530 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.521721] 7f7ff540 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.529005] 7f7ff550 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.536075] 7f7ff560 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.542947] 7f7ff570 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.550218] 7f7ff580 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.556877] 7f7ff590 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.563925] 7f7ff5a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.570673] 7f7ff5b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.577956] 7f7ff5c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.585157] 7f7ff5d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.591905] 7f7ff5e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.599190] 7f7ff5f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.606256] 7f7ff600 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.613141] 7f7ff610 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.620398] 7f7ff620 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.627307] 7f7ff630 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.634486] 7f7ff640 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.641237] 7f7ff650 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.648156] 7f7ff660 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.655386] 7f7ff670 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.662664] 7f7ff680 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.669323] 7f7ff690 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.676315] 7f7ff6a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.683506] 7f7ff6b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.690519] 7f7ff6c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.697458] 7f7ff6d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.704200] 7f7ff6e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.711594] 7f7ff6f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.718309] 7f7ff700 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.725482] 7f7ff710 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.732236] 7f7ff720 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.739149] 7f7ff730 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.746309] 7f7ff740 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.753369] 7f7ff750 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.760127] 7f7ff760 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.767442] 7f7ff770 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.774528] 7f7ff780 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.781426] 7f7ff790 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.788668] 7f7ff7a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.795717] 7f7ff7b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.802469] 7f7ff7c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.809815] 7f7ff7d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.816528] 7f7ff7e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.823586] 7f7ff7f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.830341] 7f7ff800 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.837646] 7f7ff810 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.844720] 7f7ff820 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.851473] 7f7ff830 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.858775] 7f7ff840 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.865994] 7f7ff850 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.872744] 7f7ff860 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.880126] 7f7ff870 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.886838] 7f7ff880 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.893876] 7f7ff890 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.900626] 7f7ff8a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.907913] 7f7ff8b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.915212] 7f7ff8c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.921964] 7f7ff8d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.929257] 7f7ff8e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.936326] 7f7ff8f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.943069] 7f7ff900 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.950421] 7f7ff910 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.957126] 7f7ff920 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.964172] 7f7ff930 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.970919] 7f7ff940 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.978203] 7f7ff950 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   35.985398]                                                                 
[   35.987068] [software version]                                              
[   35.990475] #: [PKG Info]                                                   
[   35.990502] PACKAGE_VERSION=PKG4.088BRL                                     
[   35.990514] PROTOTYPE=Release                                               
[   35.990525] IMAGE_TYPE=MS-F/MS-D                                            
[   35.990536] DOWNLOAD_ENCRYPTION_MODELID=0x00020400                          
[   35.990550] PACKAGE_TYPE=BR                                                 
[   35.990560] BASELINE_TYPE=L                                                 
[   35.990571]                                                                 
[   35.990579] #: [Release Info]                                               
[   35.990590] SOFTWARE_VERSION=DM4.088BRL                                     
[   35.990602] PACKAGE_VERSION=PKG4.088BRL                                     
[   35.990614] PACKAGE_NAME=10_AZ1_00020400_V0488_PKG4.088BRL_F.frz            
[   35.990630] DOWNLOAD_ENCRYPTION_MODELID=0x00020400                          
[   35.990644] DOWNLOAD_VERSION=0488                                           
[   35.990655] UPDATE_ID=0x0FA00A00A0A0                                        
[   35.990667] JP_UPDATE_ID=0xFFFFFFFF                                         
[   35.990679] BR_UPDATE_ID=0xA5170202                                         
[   35.990690] DVB_UPDATE_ID=00020400                                          
[   35.990702] US_UPDATE_ID=0xFFFFFFFF                                         
[   35.990713] NVM_DATA_VERSION=                                               
[   35.990724]                                                                 
[   35.990732] #: [PKG Items]                                                  
[   35.990743] EDID_LABEL=                                                     
[   35.990752] OSIM_LABEL=                                                     
[   36.068930] FONT_LABEL=                                                     
[   36.068951] EPOP_LABEL=                                                     
[   36.068959] NVM_DATA_LABEL=                                                 
[   36.068968] SM_INDEX_PATH=//jps00003210/scm10/odyssey/Microitems/SUB/releasA
[   36.068988] PM_INDEX_PATH=                                                  
[   36.068997]                                                                 
[   36.069004] #: [DTT Info]                                                   
[   36.069013] DTT_BASELINE=//TVSWPF/Release/2010TD                            
[   36.069025] CHANGE_LIST=321876                                              
[   36.069035] BUILD_TYPE=BL                                                   
[   36.069044] DEFCONFIG=configs/defconfig-3th-ce5-one-binary                  
[   36.069058] PATCHCONFIG="configs/patches/patchconfig-one-to-isdbg-xmb confi"
[   36.069086] EMMA_FW_3TL_VERSION=DF0.1000J00AA                               
[   36.069098] P4DEPOT_NAME=TVSWPF                                             
[   36.069108] EMMA_FW_3TH_VERSION=DF0.1021J00AA                               
[   36.134719] CONFIGFILE=configs/defconfig-3th-ce5-one-binary                 
[   36.134748] P4BASE_NAME=2010TD                                              
[   36.134759] P4_SYNC_LABEL=@321876                                           
[   36.134770] CONFIG_TV_SOFTWARE_DEFCONFIG_PATCHED_NAME=defconfig             
[   36.134786] PACKAGE_HOST=slave34                                            
[   36.134797] CELINUX_VERSION=5.0.2.1                                         
[   36.134809] DVB_RECEIVER_VERSION=0100                                       
[   36.134821] P4_TOP_PATH=//TVSWPF/Release/2010TD                             
[   36.134834] PACKAGE_TIME=2010/11/26:22:04:04                                
[   36.134847] NVM_DATA_VERSION=DD1.078W00AA                                   
[   36.134860] PACKAGER=root                                                   
[   36.134870] KERNEL_BASE_VERSION=5_0_DTV10_20091127                          
[   36.134884] EMMA_FW_3TL2_VERSION=J00AA                                      
[   36.188729]                                                                 
[   36.188754] [call stack (kstack)]                                           
[   36.193847] [0x80ec6ec8] bt_kstack_current+0x10/0x40                        
[   36.199474] [0x8f4c33e4] em_dump_regs_detail+0x5a0/0x6b8 [exception_monitor]
[   36.207164] [0x8f4c1464] em_dump_write+0x800/0x14e8 [exception_monitor]     
[   36.214709]                                                                 
[   36.216299]                                                                 
[   36.216317] [call stack (ustack)]                                           
[   36.221667] [0x2c255c74] (stripped)+0x40 (libsonypthread.so hash:b3b0508d a)
[   36.229749] [0x2c2544dc] (stripped)+0x40 (libsonypthread.so hash:b3b0508d a)
[   36.237836] [0x2c259910] (stripped)+0x48 (libsonypthread.so hash:b3b0508d a)
[   36.245685] [0x7f7fe9f0] stop backtracing: no file associated to addr       
[   36.252620]                                                                 
[   36.254490]                                                                 
[   36.254514] [system maps]                                                   
[   36.259061] start    end      flg offset     name                           
[   36.263895] 00400000-0076a000 r-x 0x00000000 dtX2.BR                        
[   36.269305] 00779000-00797000 rw- 0x00369000 dtX2.BR                        
[   36.274878] 00797000-0079b000 rwx 0x00797000                                
[   36.280100] 007a6000-00856000 rw- 0x00386000 dtX2.BR                        
[   36.285422] 2aaa8000-2aab0000 rw- 0x2aaa8000                                
[   36.290520] 2aab0000-2aab1000 rw- 0x00000000 .OSAL-SHM-SHMP-ATOMIC_SHM      
[   36.297414] 2aab1000-2aab2000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5309    
[   36.304890] 2aab2000-2aabd000 rw- 0x2aab2000                                
[   36.309992] 2aaeb000-2aaf4000 rw- 0x00000000 .OSAL-SHM-SHMP-EH_domainList   
[   36.317140] 2aaf4000-2aaf5000 rw- 0x00000000 SYSV0000162e                   
[   36.323301] 2aaf5000-2aaf6000 rw- 0x00000000 .OSAL-SHM-SHMP-STAR_CS_NAME    
[   36.330464] 2aaf6000-2aaf7000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5101    
[   36.337899] 2aaf7000-2aaf8000 rw- 0x00000000 .OSAL-SHM-SHMP-SHM_SETSPEC     
[   36.345260] 2aaf8000-2aaf9000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5203    
[   36.352730] 2aaf9000-2aafd000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5801    
[   36.359881] 2aafd000-2aafe000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5800    
[   36.367306] 2aafe000-2aaff000 rw- 0x00000000 SYSV00000828                   
[   36.373444] 2ab00000-2ac00000 rw- 0x2ab00000                                
[   36.378548] 2ac00000-2ac1f000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5208    
[   36.385611] 2ac1f000-2ac38000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5201    
[   36.392980] 2ac38000-2ac61000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5500    
[   36.400889] 2ac61000-2ac6a000 rw- 0x00000000 SYSV00000000                   
[   36.406647] 2ac6a000-2ac73000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5300    
[   36.414207] 2ac73000-2acb4000 rw- 0x00000000 SYSV00000000                   
[   36.420702] 2acb4000-2acc5000 rw- 0x00000000 SYSV00000000                   
[   36.426509] 2acc5000-2acc7000 rw- 0x00000000 SYSV666c6167                   
[   36.432596] 2acc7000-2acd0000 rw- 0x00000000 SYSV00000000                   
[   36.439135] 2acd0000-2acea000 rw- 0x00000000 SYSV00000000                   
[   36.444924] 2acea000-2acec000 r-- 0x00000000 ld.so.cache                    
[   36.450815] 2acec000-2acf3000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530a    
[   36.458170] 2acf3000-2acf9000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530b    
[   36.465561] 2acf9000-2acfe000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530c    
[   36.473210] 2acfe000-2ad00000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530f    
[   36.480399] 2ad00000-2ae00000 rw- 0x2ad00000                                
[   36.485340] 2ae00000-2aea1000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5600    
[   36.492903] 2aea1000-2b2a1000 rw- 0x003f8000 gfxmem                         
[   36.498489] 2b2a1000-2b2b7000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5308    
[   36.505589] 2b2b7000-2b2cd000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5307    
[   36.512960] 2b2cd000-2b2e3000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5306    
[   36.520836] 2b2e3000-2b2f9000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5305    
[   36.528022] 2b2f9000-2b30f000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5304    
[   36.535331] 2b30f000-2b325000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5303    
[   36.542885] 2b325000-2b33b000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5302    
[   36.550292] 2b33b000-2b41d000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530d    
[   36.557390] 2b41d000-2b603000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5301    
[   36.564760] 2b603000-2b7ff000 rw- 0x00000000 gfxmem                         
[   36.570500] 2b7ff000-2b9fb000 rw- 0x001fc000 gfxmem                         
[   36.575730] 2b9fb000-2b9fd000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5312    
[   36.583164] 2ba00000-2bb00000 rw- 0x2ba00000                                
[   36.587871] 2bb00000-2bb09000 rw- 0x00000000 SYSV00000000                   
[   36.594036] 2bb09000-2bb30000 rw- 0x00000000 SYSV00000000                   
[   36.600530] 2bb30000-2bb4a000 rw- 0x00000000 SYSV00000000                   
[   36.606285] 2bb4a000-2bb53000 rw- 0x00000000 SYSV00000000                   
[   36.612342] 2bb53000-2bb5c000 rw- 0x00000000 SYSV00000000                   
[   36.618911] 2bb5c000-2bbc6000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5310    
[   36.626007] 2bbc6000-2bbd7000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5311    
[   36.633380] 2bbd7000-2bbf2000 rw- 0x2bbd7000                                
[   36.638922] 2bc00000-2bf00000 rw- 0x2bc00000                                
[   36.643629] 2c000000-2c030000 r-x 0x00000000 sonyld.so                      
[  emma_nmi_handler: NMI pre-information epc : 80fd3880 

and this:

                                                                     
                                                                     
                                                                     
                                             
[   40.069703] 021.299s 3 usd:   0                                             
[   40.078852]                                                                 
[   40.078859] 021.300s Active:7422 inactive:19886 dirty:20 writeback:0 unstab0
[   40.084351]                                                                 
[   40.084359] 021.300s  free:545 slab:2518 mapped:6889 pagetables:254 bounce:0
[   40.094012]                                                                 
[   40.094021] 021.300s Normal free:2180kB min:1540kB low:1924kB high:2308kB an
[   40.103421] 021.300s active:79544kB present:148480kB pages_scanned:0 all_uno
[   40.112627]                                                                 
[   40.112641] 021.300s                                                        
[   40.123224] 021.300s lowmem_reserve[]: 0 0                                  
[   40.126320]                                                                 
[   40.126328] 021.300s Normal: 1*4kB 0*8kB 14*16kB 3*32kB 1*64kB 0*128kB 1*250
[   40.132781] 021.300s 24kB 0*2048kB 0*4096kB = 2180kB                        
[   40.141979]                                                                 
[   40.141993] 021.300s Swap cache: add 0, delete 0, find 0/0, race 0+0        
[   40.149262]                                                                 
[   40.149270] 021.300s Free swap  = 0kB                                       
[   40.157963]                                                                 
[   40.157974] 021.300s Total swap = 0kB                                       
[   40.163983]                                                                 
[   40.163994] 021.300s Free swap:            0kB                              
[   40.170006]                                                                 
[   40.170017] 021.312s 65536 pages of RAM                                     
[   40.176757]                                                                 
[   40.176766] 021.312s 0 pages of HIGHMEM                                     
[   40.182959]                                                                 
[   40.182970] 021.312s 33217 reserved pages                                   
[   40.189105]                                                                 
[   40.189113] 021.312s 16693 pages shared                                     
[   40.195466]                                                                 
[   40.195477] 021.312s 0 pages swap cached                                    
[   40.201662]                                                                 
[   40.201673] 021.313s Out of memory: kill process 36 (Init) score 3634 or a d
[   40.207902]                                                                 
[   40.207911] 021.313s Killed process 37 (dtUtil)                             
[   40.217648]                                                                 
[   40.217659] 029.408s eth0: link down                                        
[   40.224531]                                                                 
[   40.224542] 035.388s SysRq : Changing Loglevel                              
[   40.230466]                                                                 
[   40.230477] 035.388s Loglevel set to 8                                      
[   40.237218]                                                                 
[   40.237226] 038.880s SysRq : Terminate All Tasks                            
[   40.243321]                                                                 
[   40.243332] ================================================================
[   40.260797] [register dump]                                                 
[   40.264071]  0: r0: 0x00000000 at: r1: 0x00000001 v0: r2: 0x00000000 v1: r30
[   40.272433] a0: r4: 0x00000086 a1: r5: 0x00000006 a2: r6: 0x2c1020d8 a3: r70
[   40.280647] t0: r8: 0x00000001 t1: r9: 0x7f9fe5e8 t2:r10: 0x00000000 t3:r118
[   40.288861] t4:r12: 0x7dbfde78 t5:r13: 0x00000001 t6:r14: 0x00000000 t7:r158
[   40.297121] s0:r16: 0x7dbfe1c8 s1:r17: 0x2ada2408 s2:r18: 0x7dbfe3c4 s3 r194
[   40.305389] s4:r20: 0x0000002c s5:r21: 0x7dbfe438 s6:r22: 0x00000000 s7:r238
[   40.313839] t8:r24: 0x2aabc124 t9:r25: 0x2c05bc80 k0:r26: 0x00000000 k1:r270
[   40.322206] gp:r28: 0x2c10b180 sp:r29: 0x7dbfe1b0 s8:r30: 0x7dbfe1b0 ra:r314
[   40.330570] hi:   : 0x00000000 lo:   : 0x000008c0                           
[   40.335388] cp0 status:   0x00008413                                        
[   40.335406] cp0 badvaddr: 0x2c209330                                        
[   40.335418] cp0 cause:    0x10800020                                        
[   40.335430] cp0 epc:      0x2c05bc94                                        
[   40.335442]                                                                 
[   40.351453]                                                                 
[   40.351478] [stack dump]                                                    
[   40.355676] 7dbfe1b0 :  0x2c2750e0 0x00000000 0x7dbfe1c0 0x0000001d         
[   40.363182] 7dbfe1c0 :  0x2c10b180 0x7dbfe1d0 0xffffffdf 0xffffffff         
[   40.369778] 7dbfe1d0 :  0xffffffff 0xffffffff 0xffffffff 0xffffffff         
[   40.377192] 7dbfe1e0 :  0xffffffff 0xffffffff 0xffffffff 0xffffffff         
[   40.384412] 7dbfe1f0 :  0xffffffff 0xffffffff 0xffffffff 0xffffffff         
[   40.391008] 7dbfe200 :  0xffffffff 0xffffffff 0xffffffff 0xffffffff         
[   40.397991] 7dbfe210 :  0xffffffff 0xffffffff 0xffffffff 0xffffffff         
[   40.405137] 7dbfe220 :  0xffffffff 0xffffffff 0xffffffff 0xffffffff         
[   40.412052] 7dbfe230 :  0xffffffff 0xffffffff 0xffffffff 0xffffffff         
[   40.418892] 7dbfe240 :  0xffffffff 0xffffffff 0x2c2015e0 0x7dbfefb0         
[   40.425595] 7dbfe250 :  0x2c1d2ab0 0x2c1d2aa0 0x00000000 0x00000000         
[   40.432973] 7dbfe260 :  0x00000000 0x00000000 0x2c209870 0x00000000         
[   40.439617] 7dbfe270 :  0x00000008 0x00000000 0x2c2015e0 0x2ada2408         
[   40.446766] 7dbfe280 :  0x7dbfe3c4 0x2c1cfdc0 0x7dbfe290 0x7dbfe438         
[   40.453476] 7dbfe290 :  0x00000000 0x2baf4238 0x2c209870 0x2c078c7c         
[   40.460353] 7dbfe2a0 :  0x2c2015e0 0x2c1cfe38 0x2c2015e0 0x2ada2408         
[   40.467478] 7dbfe2b0 :  0x7dbfe3c4 0x7dbfe444 0x2c209870 0x7dbfefb0         
[   40.474645] 7dbfe2c0 :  0x2c1cef40 0x2d23e954 0x00000000 0x2c82cb30         
[   40.481333] 7dbfe2d0 :  0x00006017 0x00000000 0x2c209870 0xffffffff         
[   40.488234] 7dbfe2e0 :  0x2bafa824 0x2bafa800 0x2c1d0074 0x7dbfefb0         
[   40.495347] 7dbfe2f0 :  0x2c34b7f8 0x2c7d1224 0x00000000 0x2bafa800         
[   40.502271] 7dbfe300 :  0x2c209870 0x7dbfe444 0x2c1d2950 0x2c7f0f58         
[   40.509164] 7dbfe310 :  0x00000265 0x2c7facfc 0x2c2750e0 0x2aabc040         
[   40.515863] 7dbfe320 :  0x2c209870 0x7dbfe330 0x7dbfe330 0x2bafa800         
[   40.523243] 7dbfe330 :  0x2bafa824 0x2bafa800 0x7dbfe3c4 0x2c1cfdc0         
[   40.529886] 7dbfe340 :  0x2c2750e0 0x0000000c 0x7dbfe350 0x2c2553a4         
[   40.536997] 7dbfe350 :  0x2c209870 0x00000265 0x2bafa824 0x2c1cfe38         
[   40.543698] 7dbfe360 :  0x2c2750e0 0x00000001 0x2bafa824 0x2bafa800         
[   40.550988] 7dbfe370 :  0x2c209870 0x7dbfefb0 0x2c1d06c0 0x7dbfe610         
[   40.558397] 7dbfe380 :  0x2bafa824 0x2bafa800 0x7dbfe3c4 0x7dbfe444         
[   40.565101] 7dbfe390 :  0x2c209870 0x7dbfe438 0x2d59d7cc 0x2d59d77c         
[   40.572043] 7dbfe3a0 :  0x00000000 0x2d5ad028 0x00000000 0x00000000         
[   40.579091] 7dbfe3b0 :  0x7dbfe3c4 0x2c79db18 0x2d75aeb0 0x7dbfde78         
[   40.586232] 7dbfe3c0 :  0x2d59c9b4 0x00000010 0xf0f0f0f0 0x30303030         
[   40.592936] 7dbfe3d0 :  0x30346530 0x30303030 0x30643000 0x30303030         
[   40.600236] 7dbfe3e0 :  0x30346530 0x30303030 0x30643000 0x00000001         
[   40.607396] 7dbfe3f0 :  0x7dbfe6c4 0x2bafa800 0x7dbfe4b0 0x7dbfe4a8         
[   40.614100] 7dbfe400 :  0x7dbfe438 0x7dbfe444 0x2d5fa558 0x000f4240         
[   40.621450] 7dbfe410 :  0x00000000 0x2baf4238 0x00000000 0x2aabc124         
[   40.628088] 7dbfe420 :  0x00015f90 0x2c05c190 0x2d75aeb0 0x7fffffff         
[   40.635239] 7dbfe430 :  0x7dbfe4b0 0x7dbfe4a8 0x2d72e168 0x0010b180         
[   40.641944] 7dbfe440 :  0x7dbfe430 0x00000265 0x00000064 0x2bafa800         
[   40.648818] 7dbfe450 :  0x00000006 0x00000009 0x00000001 0x0000000a         
[   40.655931] 7dbfe460 :  0x3000000b 0xffffffff 0x00000000 0x0000004b         
[   40.662935] 7dbfe470 :  0x2bafa800 0x7dbfe4b0 0x7dbfeb10 0x7dbfe6f8         
[   40.669526] 7dbfe480 :  0x00000000 0x00000001 0x307e986c 0x307e9818         
[   40.676506] 7dbfe490 :  0x00000003 0x000e0064 0x00000006 0x00000009         
[   40.684086] 7dbfe4a0 :  0x308061e0 0x0000000a 0x2d00000b 0xffffffff         
[   40.690676] 7dbfe4b0 :  0x00000000 0x0000004b 0x00000000 0x00000000         
[   40.697646] 7dbfe4c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   40.704757] 7dbfe4d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   40.711623] 7dbfe4e0 :  0x00000001 0x00000000 0x00000000 0x00000000         
[   40.718468] 7dbfe4f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   40.725165] 7dbfe500 :  0x00000000 0x00000000 0x00000001 0x00000000         
[   40.732493] 7dbfe510 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   40.739130] 7dbfe520 :  0x00000001 0x00000000 0x00000000 0x00000000         
[   40.746117] 7dbfe530 :  0x00000000 0x00000000 0x00000001 0x00000000         
[   40.752819] 7dbfe540 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   40.760593] 7dbfe550 :  0x00000000 0x00000000 0x00ffffff 0x00000000         
[   40.767380] 7dbfe560 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   40.774381] 7dbfe570 :  0x2c2750e0 0x00000000 0x2c3b4970 0x2bcdef40         
[   40.782026] 7dbfe580 :  0x2c3b4970 0x2bc00000 0x00000000 0x7dbfe598         
[   40.788691] 7dbfe590 :  0x00004811 0x2d75e440 0x2c2750e0 0x7dbfe6fa         
[   40.795704] 7dbfe5a0 :  0x00004811 0x7dbfefb0 0x2c34c354 0x7dbfefb0         
[   40.803131] 7dbfe5b0 :  0x2c34b7f8 0x00000000 0x307ff914 0x2bcdef40         
[   40.809795] 7dbfe5c0 :  0x7dbfe6fc 0x7dbfe6fa 0x2c3b4970 0x00000001         
[   40.816840] 7dbfe5d0 :  0x00000000 0x2d23e954 0x307e9cb4 0x307e9cb4         
[   40.824515] 7dbfe5e0 :  0x2d73eb10 0x2d23e130 0x2d73eb10 0x2d23e130         
[   40.831179] 7dbfe5f0 :  0x2d22fdd4 0x2d22fd84 0x307e9cf0 0x7dbfefb0         
[   40.838240] 7dbfe600 :  0x2d73eb10 0x2d23e130 0x2d73eb10 0x2d75e440         
[   40.845437] 7dbfe610 :  0x2d2300f8 0x2d230070 0x307e9d58 0x7dbfefb0         
[   40.852423] 7dbfe620 :  0x2d23e994 0x7dbfee80 0x2d73eb10 0x00000000         
[   40.859331] 7dbfe630 :  0x00000001 0x00000000 0x7dbfe700 0x307ff910         
[   40.866094] 7dbfe640 :  0x7dbfe6fc 0x307ea3c8 0x2c34cbc8 0xffffffff         
[   40.873579] 7dbfe650 :  0x2c2750e0 0x00001000 0x308061e0 0x2aacf4a4         
[   40.880295] 7dbfe660 :  0x307eb0b0 0x2d238bdc 0x2c3b4970 0x7dbfeec8         
[   40.887352] 7dbfe670 :  0x7dbfeec8 0x2c34cc38 0x308061e0 0x2aabc040         
[   40.894123] 7dbfe680 :  0x00000003 0x000f0001 0x00000006 0x00000009         
[   40.901797] 7dbfe690 :  0x00000001 0x0000000a 0x3000000b 0xffffffff         
[   40.908698] 7dbfe6a0 :  0x00000000 0x0000004b 0x308061e0 0x308061e0         
[   40.915469] 7dbfe6b0 :  0x7dbfeb10 0x00000000 0x307eb1a8 0x307eb144         
[   40.922897] 7dbfe6c0 :  0x00000000 0x00000006 0x00000009 0x00000001         
[   40.929609] 7dbfe6d0 :  0x0000000a 0x3000000b 0xffffffff 0x00000000         
[   40.936685] 7dbfe6e0 :  0x0000004b 0x7dbfeb10 0x7dbfe6f8 0x0000000e         
[   40.943722] 7dbfe6f0 :  0x308061e0 0x00000000 0x0000000f 0x00000003         
[   40.950875] 7dbfe700 :  0x00000006 0x00000009 0x00000001 0x0000000a         
[   40.957963] 7dbfe710 :  0x3000000b 0xffffffff 0x00000000 0x0000004b         
[   40.964738] 7dbfe720 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   40.972173] 7dbfe730 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   40.978881] 7dbfe740 :  0x00000000 0x00000000 0x00000001 0x00000000         
[   40.985979] 7dbfe750 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   40.992747] 7dbfe760 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.000146] 7dbfe770 :  0x00000000 0x00000000 0x00000001 0x00000000         
[   41.007220] 7dbfe780 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.013983] 7dbfe790 :  0x00000001 0x00000000 0x00000000 0x00000000         
[   41.021439] 7dbfe7a0 :  0x00000000 0x00000000 0x00000001 0x00000000         
[   41.028146] 7dbfe7b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.035337] 7dbfe7c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.042100] 7dbfe7d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.049044] 7dbfe7e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.056222] 7dbfe7f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.063232] 7dbfe800 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.070182] 7dbfe810 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.077193] 7dbfe820 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.084384] 7dbfe830 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.091032] 7dbfe840 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.098227] 7dbfe850 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.104996] 7dbfe860 :  0x2c2750e0 0x00000000 0x0000000c 0x2c34cbe4         
[   41.112406] 7dbfe870 :  0x2c2750e0 0x2aabc040 0x2baff5a0 0x7dbfee70         
[   41.119124] 7dbfe880 :  0x2c07885c 0x2aabc040 0x2ab15cc0 0x7dbfee80         
[   41.126183] 7dbfe890 :  0x2c07885c 0x00000000 0x2c10b180 0x00000000         
[   41.132951] 7dbfe8a0 :  0x2c2750e0 0x00000000 0x2aacf4a4 0x7dbfeee8         
[   41.140303] 7dbfe8b0 :  0x2c34cbc8 0xffffffff 0x2c2750e0 0x00001000         
[   41.147528] 7dbfe8c0 :  0x2ba00c04 0x2aacf4a4 0x2baff5a0 0x2ba00000         
[   41.154304] 7dbfe8d0 :  0x2c3b4970 0x7dbfeec8 0x7dbfeec8 0x2c34cc38         
[   41.161708] 7dbfe8e0 :  0x2cbfe8e8 0x2aabc040 0x2abfe908 0x2aacf4a4         
[   41.168425] 7dbfe8f0 :  0x2c2750e0 0xffffffff 0x2aacf4c0 0x7dbfefb0         
[   41.175640] 7dbfe900 :  0x2c000000 0x2aacf4a4 0x00000036 0xffffffff         
[   41.182412] 7dbfe910 :  0x2c0003dd 0x0208ffff 0x7dbfeb14 0x000003ff         
[   41.189364] 7dbfe920 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.196534] 7dbfe930 :  0x00000000 0x00000000 0x7dbfe960 0x00000000         
[   41.203610] 7dbfe940 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.210265] 7dbfe950 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.217305] 7dbfe960 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.224821] 7dbfe970 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.231585] 7dbfe980 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.238990] 7dbfe990 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.246052] 7dbfe9a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.252822] 7dbfe9b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.260155] 7dbfe9c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.267255] 7dbfe9d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.274027] 7dbfe9e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.281957] 7dbfe9f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.288618] 7dbfea00 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.295611] 7dbfea10 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.303211] 7dbfea20 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.309867] 7dbfea30 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.316915] 7dbfea40 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.324362] 7dbfea50 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.331020] 7dbfea60 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.338066] 7dbfea70 :  0x2c3b4970 0x00000000 0x00000000 0x00000000         
[   41.345265] 7dbfea80 :  0x00000003 0x00000000 0x434f5245 0x00000055         
[   41.352364] 7dbfea90 :  0x00000004 0x00000006 0x2d6bbaec 0x00001000         
[   41.359029] 7dbfeaa0 :  0x2c348218 0x00000000 0x00000000 0x00000000         
[   41.366074] 7dbfeab0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.373636] 7dbfeac0 :  0x00000000 0x00000000 0x2c3b4970 0x00000000         
[   41.380297] 7dbfead0 :  0x00000000 0x00000000 0x434f5245 0x00000003         
[   41.387347] 7dbfeae0 :  0x434f0000 0x2d73eb10 0x00200000 0x2d2507e4         
[   41.394868] 7dbfeaf0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.401644] 7dbfeb00 :  0x7dbfeb14 0x00000000 0x2d73eb10 0x00000000         
[   41.409006] 7dbfeb10 :  0x00000001 0x00000000 0x00000001 0x00000004         
[   41.416245] 7dbfeb20 :  0x00000001 0x2c8247d0 0x32363834 0x33353536         
[   41.423021] 7dbfeb30 :  0x39000000 0x00000000 0x00000001 0x00313231         
[   41.430383] 7dbfeb40 :  0x00000070 0x7f9fe470 0x2c2750e0 0x2aabc040         
[   41.437484] 7dbfeb50 :  0x2bda2d30 0x7f9fe2f0 0xffffffff 0xffffffff         
[   41.444259] 7dbfeb60 :  0xffffffff 0xffffffff 0x00000001 0x00000000         
[   41.451750] 7dbfeb70 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.458412] 7dbfeb80 :  0x00000001 0x00000000 0x00000000 0x00000000         
[   41.465487] 7dbfeb90 :  0x00000000 0x00000000 0x00000001 0x00000000         
[   41.472273] 7dbfeba0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.479678] 7dbfebb0 :  0x00000000 0xffffffff 0xffffffff 0xffffffff         
[   41.486758] 7dbfebc0 :  0xffffffff 0xffffffff 0xffffffff 0xffffffff         
[   41.493534] 7dbfebd0 :  0xffffffff 0xffffffff 0xffffffff 0xffffffff         
[   41.500971] 7dbfebe0 :  0xffffffff 0xffffffff 0xffffffff 0x00000000         
[   41.508059] 7dbfebf0 :  0x00000000 0x00000000 0x00000001 0x7f9fe5dc         
[   41.515055] 7dbfec00 :  0x2c8137b0 0x2c830000 0x00790040 0x7f9fe634         
[   41.522645] 7dbfec10 :  0x2c79da20 0x2c7facfc 0x00000001 0x2c086bf8         
[   41.529307] 7dbfec20 :  0x7f9fe3d0 0x7f9fe718 0x2c82cb30 0x00000000         
[   41.536416] 7dbfec30 :  0x2c79da60 0x005a3d88 0x2c82cb30 0x7f9f0000         
[   41.543899] 7dbfec40 :  0x00000001 0x00000477 0x2c3b4970 0x7f9fe5e8         
[   41.550556] 7dbfec50 :  0x2c79daa4 0x0000006a 0x2ada4438 0x2c7f2710         
[   41.557971] 7dbfec60 :  0x00000001 0x7f9fe5e8 0x2c2750e0 0x7f9fe5e8         
[   41.565339] 7dbfec70 :  0x00016057 0x00000000 0x2c34c354 0x7f9fe5e8         
[   41.572122] 7dbfec80 :  0x2c79db18 0x7f9fee70 0x00000001 0x7f9fe5e8         
[   41.579063] 7dbfec90 :  0x2ada4438 0x7f9fe5e8 0x2c3b4970 0x7f9fe718         
[   41.586254] 7dbfeca0 :  0x2ada4480 0x2c7facfc 0x00000001 0x7f9fe498         
[   41.593318] 7dbfecb0 :  0x00000000 0x00000000 0x2c82cb30 0x00000000         
[   41.599973] 7dbfecc0 :  0x2c79f1e8 0x2c79f15c 0x00000000 0x0000f4a4         
[   41.607031] 7dbfecd0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.614523] 7dbfece0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.621179] 7dbfecf0 :  0x00000000 0x00000000 0x00ff0000 0x00000000         
[   41.628596] 7dbfed00 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.635715] 7dbfed10 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.642482] 7dbfed20 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.649822] 7dbfed30 :  0x00000001 0x00000000 0x00000000 0x00000000         
[   41.656911] 7dbfed40 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.663676] 7dbfed50 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.671018] 7dbfed60 :  0x00000001 0x00000000 0x00000000 0x00000000         
[   41.678108] 7dbfed70 :  0x00000000 0x00000000 0x00000001 0x00000000         
[   41.684878] 7dbfed80 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.692279] 7dbfed90 :  0x00000001 0x00000000 0x00000000 0x00000000         
[   41.698985] 7dbfeda0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.706049] 7dbfedb0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.712952] 7dbfedc0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.720233] 7dbfedd0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.727291] 7dbfede0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.734057] 7dbfedf0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.741449] 7dbfee00 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.748157] 7dbfee10 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.755371] 7dbfee20 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.762137] 7dbfee30 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.769489] 7dbfee40 :  0x00000000 0x00000000 0x2c2750e0 0x00000000         
[   41.776576] 7dbfee50 :  0x0000000c 0x2c34cbe4 0x2c2750e0 0x2aabc040         
[   41.783365] 7dbfee60 :  0x2baff5a0 0x7dbfee70 0x2c07885c 0x2aabc040         
[   41.790706] 7dbfee70 :  0x2ab15cc0 0x7dbfee80 0x2c07885c 0x00000000         
[   41.798221] 7dbfee80 :  0x2c10b180 0x00000000 0x2c2750e0 0x00000000         
[   41.805001] 7dbfee90 :  0x2aacf4a4 0x7dbfeee8 0x2c34cbc8 0xffffffff         
[   41.812536] 7dbfeea0 :  0x2c2750e0 0x00001000 0x2ba00c04 0x2aacf4a4         
[   41.819465] 7dbfeeb0 :  0x2baff5a0 0x2ba00000 0x2c3b4970 0x7dbfeec8         
[   41.826368] 7dbfeec0 :  0x7dbfeec8 0x2c34cc38 0x2c10b180 0x2aabc040         
[   41.833954] 7dbfeed0 :  0x2aacf4c0 0x2aacf4a4 0x2c2750e0 0xffffffff         
[   41.840623] 7dbfeee0 :  0x2aacf4c0 0x7dbfefb0 0x2c34d518 0x2aacf4a4         
[   41.847673] 7dbfeef0 :  0x00000000 0xffffffff 0x2c2750e0 0x00001000         
[   41.854942] 7dbfef00 :  0x2baf4238 0x2baf424f 0x434f0000 0x2d73eb10         
[   41.861717] 7dbfef10 :  0x00200000 0x00001000 0xffffffff 0x7f1feafc         
[   41.869101] 7dbfef20 :  0x2d230ec8 0x2c078c7c 0x2d781c10 0x2c3b4970         
[   41.876348] 7dbfef30 :  0x7dbffd50 0x2baf424f 0x00000012 0x0000000b         
[   41.883120] 7dbfef40 :  0x2d73eb10 0x7dbfef50 0x2d781c10 0x2c3b4970         
[   41.890553] 7dbfef50 :  0x7dbffd50 0x7da00000 0x2d23ea88 0x00000000         
[   41.897626] 7dbfef60 :  0x2c2750e0 0x2c3b4970 0x2aabe5f8 0x2c3b4970         
[   41.904409] 7dbfef70 :  0x2d73eb10 0x7dbfefb0 0x2aabe5f8 0x2c353bf4         
[   41.911846] 7dbfef80 :  0x00000000 0x2aabe64c 0x00000000 0x00000000         
[   41.918561] 7dbfef90 :  0x00000000 0x7f1fea98 0x2c3b4970 0x7da00000         
[   41.925639] 7dbfefa0 :  0x7dbffd50 0x7f1fea98 0x2c25c5a8 0x00000000         
[   41.932412] 7dbfefb0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.939785] 7dbfefc0 :  0x2c2750e0 0x00000000 0x00000000 0x00000000         
[   41.946881] 7dbfefd0 :  0x7dbffd50 0x7f1fea40 0x2c05cc04 0x00000000         
[   41.953660] 7dbfefe0 :  0x2c25c52c 0x7dbffd50 0x00380f00 0x00000000         
[   41.961024] 7dbfeff0 :  0x00000000 0x00000000 0x00000000 0x2c10b180         
[   41.968130] 7dbff000 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.975050] 7dbff010 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.982383] 7dbff020 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.989049] 7dbff030 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   41.996116] 7dbff040 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.002893] 7dbff050 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.010239] 7dbff060 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.017683] 7dbff070 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.024445] 7dbff080 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.031855] 7dbff090 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.038565] 7dbff0a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.045638] 7dbff0b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.052467] 7dbff0c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.059790] 7dbff0d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.066860] 7dbff0e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.073629] 7dbff0f0 :  0x00000000 0x00000000 0x00000000 0x7dbff50c         
[   42.080970] 7dbff100 :  0x2aabc040 0x00000000 0x7dbffd50 0x00000000         
[   42.088305] 7dbff110 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.095062] 7dbff120 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.102482] 7dbff130 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.109188] 7dbff140 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.116236] 7dbff150 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.123004] 7dbff160 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.130347] 7dbff170 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.137570] 7dbff180 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.144334] 7dbff190 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.151377] 7dbff1a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[   42.158495]                                                                 
[   42.160165] [software version]                                              
[   42.163862] #: [PKG Info]                                                   
[   42.163890] PACKAGE_VERSION=PKG4.088BRL                                     
[   42.163902] PROTOTYPE=Release                                               
[   42.163913] IMAGE_TYPE=MS-F/MS-D                                            
[   42.163924] DOWNLOAD_ENCRYPTION_MODELID=0x00020400                          
[   42.163938] PACKAGE_TYPE=BR                                                 
[   42.163948] BASELINE_TYPE=L                                                 
[   42.163959]                                                                 
[   42.163967] #: [Release Info]                                               
[   42.163978] SOFTWARE_VERSION=DM4.088BRL                                     
[   42.163990] PACKAGE_VERSION=PKG4.088BRL                                     
[   42.164002] PACKAGE_NAME=10_AZ1_00020400_V0488_PKG4.088BRL_F.frz            
[   42.164018] DOWNLOAD_ENCRYPTION_MODELID=0x00020400                          
[   42.164032] DOWNLOAD_VERSION=0488                                           
[   42.164043] UPDATE_ID=0x0FA00A00A0A0                                        
[   42.164055] JP_UPDATE_ID=0xFFFFFFFF                                         
[   42.164067] BR_UPDATE_ID=0xA5170202                                         
[   42.164078] DVB_UPDATE_ID=00020400                                          
[   42.164090] US_UPDATE_ID=0xFFFFFFFF                                         
[   42.164101] NVM_DATA_VERSION=                                               
[   42.164112]                                                                 
[   42.164120] #: [PKG Items]                                                  
[   42.164131] EDID_LABEL=                                                     
[   42.164141] OSIM_LABEL=                                                     
[   42.242365] FONT_LABEL=                                                     
[   42.242389] EPOP_LABEL=                                                     
[   42.242399] NVM_DATA_LABEL=                                                 
[   42.242410] SM_INDEX_PATH=//jps00003210/scm10/odyssey/Microitems/SUB/releasA
[   42.242431] PM_INDEX_PATH=                                                  
[   42.242441]                                                                 
[   42.242449] #: [DTT Info]                                                   
[   42.242459] DTT_BASELINE=//TVSWPF/Release/2010TD                            
[   42.242473] CHANGE_LIST=321876                                              
[   42.242484] BUILD_TYPE=BL                                                   
[   42.242494] DEFCONFIG=configs/defconfig-3th-ce5-one-binary                  
[   42.242509] PATCHCONFIG="configs/patches/patchconfig-one-to-isdbg-xmb confi"
[   42.242539] EMMA_FW_3TL_VERSION=DF0.1000J00AA                               
[   42.242552] P4DEPOT_NAME=TVSWPF                                             
[   42.242563] EMMA_FW_3TH_VERSION=DF0.1021J00AA                               
[   42.308201] CONFIGFILE=configs/defconfig-3th-ce5-one-binary                 
[   42.308231] P4BASE_NAME=2010TD                                              
[   42.308242] P4_SYNC_LABEL=@321876                                           
[   42.308253] CONFIG_TV_SOFTWARE_DEFCONFIG_PATCHED_NAME=defconfig             
[   42.308269] PACKAGE_HOST=slave34                                            
[   42.308280] CELINUX_VERSION=5.0.2.1                                         
[   42.308292] DVB_RECEIVER_VERSION=0100                                       
[   42.308304] P4_TOP_PATH=//TVSWPF/Release/2010TD                             
[   42.308317] PACKAGE_TIME=2010/11/26:22:04:04                                
[   42.308330] NVM_DATA_VERSION=DD1.078W00AA                                   
[   42.308342] PACKAGER=root                                                   
[   42.308353] KERNEL_BASE_VERSION=5_0_DTV10_20091127                          
[   42.308366] EMMA_FW_3TL2_VERSION=J00AA                                      
[   42.362239]                                                                 
[   42.362265] [call stack (kstack)]                                           
[   42.367346] [0x80ec6ec8] bt_kstack_current+0x10/0x40                        
[   42.372778] [0x8f4c33e4] em_dump_regs_detail+0x5a0/0x6b8 [exception_monitor]
[   42.380389] [0x8f4c1464] em_dump_write+0x800/0x14e8 [exception_monitor]     
[   42.388224] [0x80f31290] sys_write+0x54/0x98                                
[   42.392893] [0x80ec3d88] work_notifysig+0xc/0x14                            
[   42.397725]                                                                 
[   42.399429]                                                                 
[   42.399453] [call stack (ustack)]                                           
[   42.413521] [0x2c05bc94] (stripped)+0x14 (libsonyc.so hash:ef243b15 adj:356)
[   42.421149] [0x2c06f594] (stripped)+0xdc (libsonyc.so hash:ef243b15 adj:356)
[   42.433860] [0x2c1d2ab0] (stripped)+0x1a0 (libsonystdc++.so.6.0.8 hash:6c8c)
[   42.442818] [0x2c1cfdc0] (stripped)+0x28 (libsonystdc++.so.6.0.8 hash:6c8c1)
[   42.451928] [0x2c1cfe38] (stripped)+0x28 (libsonystdc++.so.6.0.8 hash:6c8c1)
[   42.460317] [0x2c1cef40] (stripped)+0xb4 (libsonystdc++.so.6.0.8 hash:6c8c1)
[   42.469018] [0x2c1d0074] (stripped)+0x24 (libsonystdc++.so.6.0.8 hash:6c8c1)
[   42.477900] [0x2c1d2950] (stripped)+0x40 (libsonystdc++.so.6.0.8 hash:6c8c1)
[   42.486658] [0x2c1cfdc0] (stripped)+0x28 (libsonystdc++.so.6.0.8 hash:6c8c1)
[   42.495145] [0x2c1cfe38] (stripped)+0x28 (libsonystdc++.so.6.0.8 hash:6c8c1)
[   42.503821] [0x2c1d06c0] (stripped)+0x40 (libsonystdc++.so.6.0.8 hash:6c8c1)
[   42.513246] [0x2d59d7cc] (stripped)+0xe4 (libX2BR.so hash:8c5dc3c4 adj:1539)
[   42.520801] [0x2d5fa558] (stripped)+0x124 (libX2BR.so hash:8c5dc3c4 adj:153)
[   42.529812] [0x307e986c] (stripped)+0xa0 (SiProxy.rel hash:b9d449c6 adj:0)  
[   42.537523] [0x307eb1a8] (stripped)+0xd4 (SiProxy.rel hash:b9d449c6 adj:0)  
[   42.545103] [0x2d230ec8] (stripped)+0x6c (libX2BR.so hash:8c5dc3c4 adj:1539)
[   42.552736] [0x2d23ea88] (stripped)+0x58 (libX2BR.so hash:8c5dc3c4 adj:1539)
[   42.569138] [0x2c353bf4] (stripped)+0x208 (libDt.so hash:292b51b2 adj:0)    
[   42.576901] [0x2c25c5a8] (stripped)+0x7c (libsonypthread.so hash:b3b0508d a)
[   42.585001] [0x2c05cc04] (stripped)+0x10 (libsonyc.so hash:ef243b15 adj:356)
[   42.592699]                                                                 
[   42.594302]                                                                 
[   42.594320] [system maps]                                                   
[   42.598621] start    end      flg offset     name                           
[   42.603600] 00400000-0076a000 r-x 0x00000000 dtX2.BR                        
[   42.609414] 00779000-00797000 rw- 0x00369000 dtX2.BR                        
[   42.615186] 00797000-0079b000 rwx 0x00797000                                
[   42.619899] 007a6000-00856000 rw- 0x00386000 dtX2.BR                        
[   42.625575] 2aaa8000-2aab0000 rw- 0x2aaa8000                                
[   42.630765] 2aab0000-2aab1000 rw- 0x00000000 .OSAL-SHM-SHMP-ATOMIC_SHM      
[   42.638051] 2aab1000-2aab2000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5309    
[   42.645233] 2aab2000-2aabd000 rw- 0x2aab2000                                
[   42.650224] 2aabd000-2aaeb000 rw- 0x00000000 .OSAL-SHM-admin-table          
[   42.657302] 2aaeb000-2aaf4000 rw- 0x00000000 .OSAL-SHM-SHMP-EH_domainList   
[   42.665047] 2aaf4000-2aaf5000 rw- 0x00000000 SYSV0000162e                   
[   42.670837] 2aaf5000-2aaf6000 rw- 0x00000000 .OSAL-SHM-SHMP-STAR_CS_NAME    
[   42.678130] 2aaf6000-2aaf7000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5101    
[   42.685564] 2aaf7000-2aaf8000 rw- 0x00000000 .OSAL-SHM-SHMP-SHM_SETSPEC     
[   42.693242] 2aaf8000-2aaf9000 rw- 0x0000

another:

                                                                     
                                                                     
                                                                     
                                             
[  136.063348] 7f7feec0 :  0x00000004 0x00000001 0x2c8247d0 0x32363834         
[  136.070719] 7f7feed0 :  0x33353435 0x37000000 0x00000000 0x10000001         
[  136.077429] 7f7feee0 :  0x0000004e 0xffffffff 0x00000000 0x2c8247d0         
[  136.084696] 7f7feef0 :  0x008247d0 0x0082cb30 0x2c7fa314 0x2c8247d0         
[  136.091573] 7f7fef00 :  0xffffffff 0x0000004e 0xffffffff 0x00000000         
[  136.098820] 7f7fef10 :  0x2c8247d0 0x00000000 0xffffffff 0x2c82cb30         
[  136.105881] 7f7fef20 :  0x00000000 0xffffffff 0x0000004e 0xffffffff         
[  136.112634] 7f7fef30 :  0x00000000 0x2c8247d0 0x00b1407c 0x2c82cb30         
[  136.119991] 7f7fef40 :  0x73746172 0x2c8247d0 0xffffffff 0x0000004e         
[  136.126749] 7f7fef50 :  0xffffffff 0x00000000 0x00000001 0x00000000         
[  136.133814] 7f7fef60 :  0x2aabd860 0x2c3b4970 0x7f7ffd50 0x7f600000         
[  136.140568] 7f7fef70 :  0x00200000 0x00001000 0x2c353bf4 0x2c353b40         
[  136.147883] 7f7fef80 :  0x00000000 0x2aabd8b4 0x00000000 0x00000000         
[  136.155056] 7f7fef90 :  0x00000000 0x7fbfea48 0x2c3b4970 0x7f600000         
[  136.161807] 7f7fefa0 :  0x7f7ffd50 0x7fbfea48 0x2c25c5a8 0x00000000         
[  136.169121] 7f7fefb0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.176422] 7f7fefc0 :  0x2c2750e0 0x00000000 0x00000015 0x00000000         
[  136.183175] 7f7fefd0 :  0x7f7ffd50 0x7fbfe9f0 0x2c05cc04 0x00000000         
[  136.190577] 7f7fefe0 :  0x2c25c52c 0x7f7ffd50 0x00380f00 0x00000000         
[  136.197242] 7f7feff0 :  0x00000000 0x00000000 0x00000000 0x2c10b180         
[  136.204422] 7f7ff000 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.211168] 7f7ff010 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.218086] 7f7ff020 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.225230] 7f7ff030 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.232405] 7f7ff040 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.239060] 7f7ff050 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.246058] 7f7ff060 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.253202] 7f7ff070 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.260249] 7f7ff080 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.266904] 7f7ff090 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.273911] 7f7ff0a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.281291] 7f7ff0b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.288170] 7f7ff0c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.295037] 7f7ff0d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.302321] 7f7ff0e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.308976] 7f7ff0f0 :  0x00000000 0x00000000 0x00000000 0x7f7ff50c         
[  136.316010] 7f7ff100 :  0x2aabc040 0x00000000 0x7f7ffd50 0x00000000         
[  136.322767] 7f7ff110 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.330095] 7f7ff120 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.336806] 7f7ff130 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.343865] 7f7ff140 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.350615] 7f7ff150 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.357891] 7f7ff160 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.365086] 7f7ff170 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.371845] 7f7ff180 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.379125] 7f7ff190 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.386467] 7f7ff1a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.393447] 7f7ff1b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.400961] 7f7ff1c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.407619] 7f7ff1d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.414616] 7f7ff1e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.422035] 7f7ff1f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.428692] 7f7ff200 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.436076] 7f7ff210 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.443051] 7f7ff220 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.449793] 7f7ff230 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.457106] 7f7ff240 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.464220] 7f7ff250 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.470973] 7f7ff260 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.478283] 7f7ff270 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.485502] 7f7ff280 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.492249] 7f7ff290 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.499572] 7f7ff2a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.506779] 7f7ff2b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.513528] 7f7ff2c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.520893] 7f7ff2d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.527603] 7f7ff2e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.534789] 7f7ff2f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.541537] 7f7ff300 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.548906] 7f7ff310 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.556095] 7f7ff320 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.562847] 7f7ff330 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.569857] 7f7ff340 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.576978] 7f7ff350 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.584041] 7f7ff360 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.590794] 7f7ff370 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.598113] 7f7ff380 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.605325] 7f7ff390 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.612114] 7f7ff3a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.619425] 7f7ff3b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.626504] 7f7ff3c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.633256] 7f7ff3d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.640646] 7f7ff3e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.647355] 7f7ff3f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.654372] 7f7ff400 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.661119] 7f7ff410 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.668418] 7f7ff420 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.675721] 7f7ff430 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.682470] 7f7ff440 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.689820] 7f7ff450 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.696527] 7f7ff460 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.703568] 7f7ff470 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.710314] 7f7ff480 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.717608] 7f7ff490 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.724664] 7f7ff4a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.731411] 7f7ff4b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.738706] 7f7ff4c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.745766] 7f7ff4d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.752514] 7f7ff4e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.759851] 7f7ff4f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.766559] 7f7ff500 :  0x00000000 0x00000000 0x00000000 0x00000001         
[  136.773607] 7f7ff510 :  0x00000000 0x7f7ff100 0x00000000 0x00000000         
[  136.780375] 7f7ff520 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.787671] 7f7ff530 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.794744] 7f7ff540 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.801490] 7f7ff550 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.808828] 7f7ff560 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.815869] 7f7ff570 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.822614] 7f7ff580 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.829944] 7f7ff590 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.836653] 7f7ff5a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.843696] 7f7ff5b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.850445] 7f7ff5c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.857724] 7f7ff5d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.864789] 7f7ff5e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.871544] 7f7ff5f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.878822] 7f7ff600 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.885902] 7f7ff610 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.892649] 7f7ff620 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.900520] 7f7ff630 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.907177] 7f7ff640 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.914179] 7f7ff650 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.921610] 7f7ff660 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.928268] 7f7ff670 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.935702] 7f7ff680 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.942492] 7f7ff690 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.949416] 7f7ff6a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.956594] 7f7ff6b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.963651] 7f7ff6c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.970412] 7f7ff6d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.977767] 7f7ff6e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.984820] 7f7ff6f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.991568] 7f7ff700 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  136.998886] 7f7ff710 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.005965] 7f7ff720 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.012706] 7f7ff730 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.020125] 7f7ff740 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.026784] 7f7ff750 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.033835] 7f7ff760 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.040577] 7f7ff770 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.047938] 7f7ff780 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.054991] 7f7ff790 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.061860] 7f7ff7a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.069104] 7f7ff7b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.076165] 7f7ff7c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.082908] 7f7ff7d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.090263] 7f7ff7e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.096967] 7f7ff7f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.104153] 7f7ff800 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.110915] 7f7ff810 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.117839] 7f7ff820 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.124993] 7f7ff830 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.132051] 7f7ff840 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.138713] 7f7ff850 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.145706] 7f7ff860 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.153256] 7f7ff870 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.160002] 7f7ff880 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.167288] 7f7ff890 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.174344] 7f7ff8a0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.181087] 7f7ff8b0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.188387] 7f7ff8c0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.195686] 7f7ff8d0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.202436] 7f7ff8e0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.209782] 7f7ff8f0 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.216490] 7f7ff900 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.223531] 7f7ff910 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.230278] 7f7ff920 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.237573] 7f7ff930 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.244630] 7f7ff940 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.251379] 7f7ff950 :  0x00000000 0x00000000 0x00000000 0x00000000         
[  137.258664]                                                                 
[  137.260692] [software version]                                              
[  137.264051] #: [PKG Info]                                                   
[  137.264075] PACKAGE_VERSION=PKG4.088BRL                                     
[  137.264087] PROTOTYPE=Release                                               
[  137.264098] IMAGE_TYPE=MS-F/MS-D                                            
[  137.264109] DOWNLOAD_ENCRYPTION_MODELID=0x00020400                          
[  137.264123] PACKAGE_TYPE=BR                                                 
[  137.264134] BASELINE_TYPE=L                                                 
[  137.264144]                                                                 
[  137.264152] #: [Release Info]                                               
[  137.264163] SOFTWARE_VERSION=DM4.088BRL                                     
[  137.264175] PACKAGE_VERSION=PKG4.088BRL                                     
[  137.264188] PACKAGE_NAME=10_AZ1_00020400_V0488_PKG4.088BRL_F.frz            
[  137.264203] DOWNLOAD_ENCRYPTION_MODELID=0x00020400                          
[  137.264217] DOWNLOAD_VERSION=0488                                           
[  137.264229] UPDATE_ID=0x0FA00A00A0A0                                        
[  137.264240] JP_UPDATE_ID=0xFFFFFFFF                                         
[  137.264252] BR_UPDATE_ID=0xA5170202                                         
[  137.264264] DVB_UPDATE_ID=00020400                                          
[  137.264275] US_UPDATE_ID=0xFFFFFFFF                                         
[  137.264287] NVM_DATA_VERSION=                                               
[  137.264298]                                                                 
[  137.264306] #: [PKG Items]                                                  
[  137.264317] EDID_LABEL=                                                     
[  137.264327] OSIM_LABEL=                                                     
[  137.342520] FONT_LABEL=                                                     
[  137.342545] EPOP_LABEL=                                                     
[  137.342555] NVM_DATA_LABEL=                                                 
[  137.342565] SM_INDEX_PATH=//jps00003210/scm10/odyssey/Microitems/SUB/releasA
[  137.342587] PM_INDEX_PATH=                                                  
[  137.342597]                                                                 
[  137.342605] #: [DTT Info]                                                   
[  137.342616] DTT_BASELINE=//TVSWPF/Release/2010TD                            
[  137.342629] CHANGE_LIST=321876                                              
[  137.342640] BUILD_TYPE=BL                                                   
[  137.342650] DEFCONFIG=configs/defconfig-3th-ce5-one-binary                  
[  137.342665] PATCHCONFIG="configs/patches/patchconfig-one-to-isdbg-xmb confi"
[  137.342695] EMMA_FW_3TL_VERSION=DF0.1000J00AA                               
[  137.342708] P4DEPOT_NAME=TVSWPF                                             
[  137.342719] EMMA_FW_3TH_VERSION=DF0.1021J00AA                               
[  137.408335] CONFIGFILE=configs/defconfig-3th-ce5-one-binary                 
[  137.408365] P4BASE_NAME=2010TD                                              
[  137.408376] P4_SYNC_LABEL=@321876                                           
[  137.408387] CONFIG_TV_SOFTWARE_DEFCONFIG_PATCHED_NAME=defconfig             
[  137.408403] PACKAGE_HOST=slave34                                            
[  137.408414] CELINUX_VERSION=5.0.2.1                                         
[  137.408426] DVB_RECEIVER_VERSION=0100                                       
[  137.408438] P4_TOP_PATH=//TVSWPF/Release/2010TD                             
[  137.408451] PACKAGE_TIME=2010/11/26:22:04:04                                
[  137.408464] NVM_DATA_VERSION=DD1.078W00AA                                   
[  137.408477] PACKAGER=root                                                   
[  137.408487] KERNEL_BASE_VERSION=5_0_DTV10_20091127                          
[  137.408501] EMMA_FW_3TL2_VERSION=J00AA                                      
[  137.462342]                                                                 
[  137.462367] [call stack (kstack)]                                           
[  137.467457] [0x80ec6ec8] bt_kstack_current+0x10/0x40                        
[  137.472863] [0x8f4c33e4] em_dump_regs_detail+0x5a0/0x6b8 [exception_monitor]
[  137.480456] [0x8f4c1464] em_dump_write+0x800/0x14e8 [exception_monitor]     
[  137.488124]                                                                 
[  137.489718]                                                                 
[  137.489736] [call stack (ustack)]                                           
[  137.495098] [0x2c255c74] (stripped)+0x40 (libsonypthread.so hash:b3b0508d a)
[  137.503181] [0x2c2544dc] (stripped)+0x40 (libsonypthread.so hash:b3b0508d a)
[  137.511257] [0x2c259910] (stripped)+0x48 (libsonypthread.so hash:b3b0508d a)
[  137.519164] [0x7f7fe9f0] stop backtracing: no file associated to addr       
[  137.526079]                                                                 
[  137.527943]                                                                 
[  137.527968] [system maps]                                                   
[  137.532521] start    end      flg offset     name                           
[  137.537354] 00400000-0076a000 r-x 0x00000000 dtX2.BR                        
[  137.542774] 00779000-00797000 rw- 0x00369000 dtX2.BR                        
[  137.548351] 00797000-0079b000 rwx 0x00797000                                
[  137.553572] 007a6000-00856000 rw- 0x00386000 dtX2.BR                        
[  137.558896] 2aaa8000-2aab0000 rw- 0x2aaa8000                                
[  137.563997] 2aab0000-2aab1000 rw- 0x00000000 .OSAL-SHM-SHMP-ATOMIC_SHM      
[  137.570880] 2aab1000-2aab2000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5309    
[  137.578354] 2aab2000-2aabd000 rw- 0x2aab2000                                
[  137.583488] 2aaeb000-2aaf4000 rw- 0x00000000 .OSAL-SHM-SHMP-EH_domainList   
[  137.590634] 2aaf4000-2aaf5000 rw- 0x00000000 SYSV0000162e                   
[  137.596785] 2aaf5000-2aaf6000 rw- 0x00000000 .OSAL-SHM-SHMP-STAR_CS_NAME    
[  137.603946] 2aaf6000-2aaf7000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5101    
[  137.611374] 2aaf7000-2aaf8000 rw- 0x00000000 .OSAL-SHM-SHMP-SHM_SETSPEC     
[  137.618743] 2aaf8000-2aaf9000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5203    
[  137.626199] 2aaf9000-2aafd000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5801    
[  137.633354] 2aafd000-2aafe000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5800    
[  137.640781] 2aafe000-2aaff000 rw- 0x00000000 SYSV00000828                   
[  137.646928] 2ab00000-2ac00000 rw- 0x2ab00000                                
[  137.652004] 2ac00000-2ac1f000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5208    
[  137.659104] 2ac1f000-2ac38000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5201    
[  137.666485] 2ac38000-2ac61000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5500    
[  137.674369] 2ac61000-2ac6a000 rw- 0x00000000 SYSV00000000                   
[  137.680163] 2ac6a000-2ac73000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5300    
[  137.687437] 2ac73000-2acb4000 rw- 0x00000000 SYSV00000000                   
[  137.693520] 2acb4000-2acc5000 rw- 0x00000000 SYSV00000000                   
[  137.699643] 2acc5000-2acc7000 rw- 0x00000000 SYSV666c6167                   
[  137.705798] 2acc7000-2acd0000 rw- 0x00000000 SYSV00000000                   
[  137.711634] 2acd0000-2acea000 rw- 0x00000000 SYSV00000000                   
[  137.717765] 2acea000-2acec000 r-- 0x00000000 ld.so.cache                    
[  137.724151] 2acec000-2acf3000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530a    
[  137.731207] 2acf3000-2acf9000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530b    
[  137.738679] 2acf9000-2acfe000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530c    
[  137.746118] 2acfe000-2ad00000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530f    
[  137.753480] 2ad00000-2ae00000 rw- 0x2ad00000                                
[  137.758497] 2ae00000-2aea1000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5600    
[  137.765652] 2aea1000-2b2a1000 rw- 0x003f8000 gfxmem                         
[  137.771138] 2b2a1000-2b2b7000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5308    
[  137.778697] 2b2b7000-2b2cd000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5307    
[  137.786161] 2b2cd000-2b2e3000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5306    
[  137.793308] 2b2e3000-2b2f9000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5305    
[  137.800733] 2b2f9000-2b30f000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5304    
[  137.808169] 2b30f000-2b325000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5303    
[  137.815622] 2b325000-2b33b000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5302    
[  137.822770] 2b33b000-2b41d000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x530d    
[  137.830195] 2b41d000-2b603000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5301    
[  137.837643] 2b603000-2b7ff000 rw- 0x00000000 gfxmem                         
[  137.843274] 2b7ff000-2b9fb000 rw- 0x001fc000 gfxmem                         
[  137.848511] 2b9fb000-2b9fd000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5312    
[  137.855784] 2ba00000-2bb00000 rw- 0x2ba00000                                
[  137.860619] 2bb00000-2bb09000 rw- 0x00000000 SYSV00000000                   
[  137.866868] 2bb09000-2bb30000 rw- 0x00000000 SYSV00000000                   
[  137.872878] 2bb30000-2bb4a000 rw- 0x00000000 SYSV00000000                   
[  137.878871] 2bb4a000-2bb53000 rw- 0x00000000 SYSV00000000                   
[  137.884718] 2bb53000-2bb5c000 rw- 0x00000000 SYSV00000000                   
[  137.890826] 2bb5c000-2bbc6000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5310    
[  137.898249] 2bbc6000-2bbd7000 rw- 0x00000000 .OSAL-SHM-SHMP-stars_0x5311    
[  137.905696] 2bbd7000-2bbf2000 rw- 0x2bbd7000                                
[  137.910405] 2bc00000-2bf00000 rw- 0x2bc00000                                
[  137.915463] 2c000000-2c030000 r-x 0x00000000 sonyld.so                      
[  137.921393] 2c03f000-2c041000 rw- 0x0002f000 sonyld.so                      
[  137.927272] 2c041000-2c045000 rwx 0x2c041000                                
[  137.932079] 2c050000-2c0f0000 r-x 0x00000000 libsonyc.so                    
[  137.937971] 2c0f0000-2c0ff000 --- 0x000a0000 libsonyc.so                    
[  137.944453] 2c0ff000-2c106000 rw- 0x0009f000 libsonyc.so                    
[  137.950120] 2c106000-2c11c000 rw- 0x2c106000                                
[  137.955190] 2c120000-2c131000 r-x 0x00000000 libsonygcc_s.so.1              
[  137.962409] 2c131000-2c140000 --- 0x00011000 libsonygcc_s.so.1              
[  137.968676] 2c140000-2c141000 rw- 0x00010000 libsonygcc_s.so.1              
[  137.975082] 2c150000-2c1e2000 r-x 0x00000000 libsonystdc++.so.6.0.8         
[  137.982012] 2c1e2000-2c1f1000 --- 0x00092000 libsonystdc++.so.6.0.8         
[  137.989178] 2c1f1000-2c205000 rw- 0x00091000 libsonystdc++.so.6.0.8         
[  137.995889] 2c205000-2c20a000 rw- 0x2c205000                                
[  138.000865] 2c210000-2c22f000 r-x 0x00000000 libsonym.so                    
[  138.007273] 2c22f000-2c23f000 --- 0x0001f000 libsonym.so                    
[  138.013029] 2c23f000-2c240000 rw- 0x0001f000 libsonym.so                    
[  138.019045] 2c250000-2c25d000 r-x 0x00000000 libsonypthread.so              
[  138.025694] 2c25d000-2c26d000 --- 0x0000d000 libsonypthread.so              
[  138.031968] 2c26d000-2c26e000 rw- 0x0000d000 libsonypthread.so              
[  138.038523] 2c26e000-2c270000 rw- 0x2c26e000                                
[  138.043629] 2c280000-2c399000 r-x 0x00000000 libDt.so                       
[  138.049035] 2c399000-2c3a9000 --- 0x00119000 libDt.so                       
[  138.054832] 2c3a9000-2c3b3000 rw- 0x00119000 libDt.so                       
[  138.060231] 2c3b3000-2c3b4000 rw- 0x2c3b3000                                
[  138.065261] 2c3c0000-2c3c5000 r-x 0x00000000 libsonyrt.so                   
[  138.071486] 2c3c5000-2c3d4000 --- 0x00005000 libsonyrt.so                   
[  138.077726] 2c3d4000-2c3d5000 rw- 0x00004000 libsonyrt.so                   
[  138.083598] 2c3e0000-2c3e2000 r-x 0x00000000 libsonydl.so                   
[  138.089472] 2c3e2000-2c3f1000 --- 0x00002000 libsonydl.so                   
[  138.095515] 2c3f1000-2c3f2000 rw- 0x00001000 libsonydl.so                   
[  138.101993] 2c400000-2c552000 r-x 0x00000000 libcrypto.so.0.9.8             
[  138.108310] 2c552000-2c561000 --- 0x00152000 libcrypto.so.0.9.8             
[  138.114803] 2c561000-2c577000 rw- 0x00151000 libcrypto.so.0.9.8             
[  138.121321] 2c577000-2c57b000 rw- 0x2c577000                                
[  138.126417] 2c580000-2c592000 r-x 0x00000000 libz.so.1.2.3                  
[  138.132629] 2c592000-2c5a1000 --- 0x00012000 libz.so.1.2.3                  
[  138.138511] 2c5a1000-2c5a2000 rw- 0x00011000 libz.so.1.2.3                  
[  138.144581] 2c5b0000-2c5c1000 r-x 0x00000000 libCacheFile.so                
[  138.150836] 2c5c1000-2c5d1000 --- 0x00011000 libCacheFile.so                
[  138.157238] 2c5d1000-2c5e1000 rw- 0x00011000 libCacheFile.so                
[  138.163664] 2c5e1000-2c601000 rw- 0x2c5e1000                                
[  138.168384] 2c610000-2c64f000 r-x 0x00000000 libcurl.so.4.0.1               
[  138.174703] 2c64f000-2c65e000 --- 0x0003f000 libcurl.so.4.0.1               
[  138.181045] 2c65e000-2c660000 rw- 0x0003e000 libcurl.so.4.0.1               
[  138.187544] 2c670000-2c6af000 r-x 0x00000000 libssl.so.0.9.8                
[  138.193964] 2c6af000-2c6bf000 --- 0x0003f000 libssl.so.0.9.8                
[  138.199984] 2c6bf000-2c6c3000 rw- 0x0003f000 libssl.so.0.9.8                
[  138.206313] 2c720000-2c741000 r-x 0x00000000 libexpat.so.1.5.2              
[  138.213328] 2c741000-2c751000 --- 0x00021000 libexpat.so.1.5.2              
[  138.219561] 2c751000-2c754000 rw- 0x00021000 libexpat.so.1.5.2              
[  138.225956] 2c760000-2c814000 r-x 0x00000000 libstar.so                     
[  138.231889] 2c814000-2c824000 --- 0x000b4000 libstar.so                     
[  138.237788] 2c824000-2c827000 rw- 0x000b4000 libstar.so                     
[  138.243769] 2c827000-2c82f000 rw- 0x2c827000                                
[  138.248481] 2c840000-2c8c5000 r-x 0x00000000 libfreetype.so.6.3.20          
[  138.255448] 2c8c5000-2c8d4000 --- 0x00085000 libfreetype.so.6.3.20          
[  138.262279] 2c8d4000-2c8d8000 rw- 0x00084000 libfreetype.so.6.3.20          
[  138.269171] 2c8e0000-2c940000 r-x 0x00000000 libServiceNetDataMgr.so        
[  138.276474] 2c940000-2c94f000 --- 0x00060000 libServiceNetDataMgr.so        
[  138.283310] 2c94f000-2c95d000 rw- 0x0005f000 libServiceNetDataMgr.so        
[  138.290151] 2c9b0000-2c9d5000 r-x 0x00000000 libjpeg.so.62.0.0              
[  138.296613] 2c9d5000-2c9e4000 --- 0x00025000 libjpeg.so.62.0.0              
[  138.303493] 2c9e4000-2c9e5000 rw- 0x00024000 libjpeg.so.62.0.0              
[  138.309724] 2c9f0000-2ca1a000 r-x 0x00000000 libpng.so.2.1.2.37             
[  138.316205] 2ca1a000-2ca29000 --- 0x0002a000 libpng.so.2.1.2.37             
[  138.322772] 2ca29000-2ca2a000 rw- 0x00029000 libpng.so.2.1.2.37             
[  138.329377] 2ca90000-2ca91000 r-x 0x00000000 libscnif.so                    
[  138.335446] 2ca91000-2caa0000 --- 0x00001000 libscnif.so                    
[  138.341113] 2caa0000-2caa1000 rw- 0x00000000 libscnif.so                    
[  138.347203] 2cab0000-2cab3000 r-x 0x00000000 libscnsngl.so                  
[  138.353773] 2cab3000-2cac2000 --- 0x00003000 libscnsngl.so                  
[  138.359614] 2cac2000-2cac3000 rw- 0x00002000 libscnsngl.so                  
[  138.365769] 2cad0000-2cad2000 r-x 0x00000000 libscnx2.so                    
[  138.372235] 2cad2000-2cae1000 --- 0x00002000 libscnx2.so                    
[  138.377941] 2cae1000-2cae2000 rw- 0x00001000 libscnx2.so                    
[  138.383700] 2caf0000-2caf3000 r-x 0x00000000 libsxifsrvlist.so              
[  138.390251] 2caf3000-2cb03000 --- 0x00003000 libsxifsrvlist.so              
[  138.396815] 2cb03000-2cb04000 rw- 0x00003000 libsxifsrvlist.so              
[  138.403356] 2cb10000-2ccd7000 r-x 0x00000000 libmint.so                     
[  138.408975] 2ccd7000-2cce6000 --- 0x001c7000 libmint.so                     
[  138.414630] 2cce6000-2ccf3000 rw- 0x001c6000 libmint.so                     
[  138.420571] 2cef0000-2d705000 r-x 0x00000000 libX2BR.so                     
[  138.426526] 2d705000-2d714000 --- 0x00815000 libX2BR.so                     
[  138.432474] 2d714000-2d75d000 rw- 0x00814000 libX2BR.so                     
[  138.438094] 2d75d000-2d7dc000 rw- 0x2d75d000                                
[  138.442902] 2dce0000-2dd96000 r-x 0x00000000 libjs.so                       
[  138.448559] 2dd96000-2dda6000 --- 0x000b6000 libjs.so                       
[  138.454449] 2dda6000-2ddab000 rw- 0x000b6000 libjs.so                       
[  138.459854] 2ddb0000-2de08000 r-x 0x00000000 libDtCesConvert.so             
[  138.466513] 2de08000-2de17000 --- 0x00058000 libDtCesConvert.so             
[  138.472881] 2de17000-2de2e000 rw- 0x00057000 libDtCesConvert.so             
[  138.479525] 2de2e000-2de2f000 rw- 0x2de2e000                                
[  138.484612] 2e0c0000-2e0f1000 r-x 0x00000000 libsapp.so                     
[  138.490190] 2e0f1000-2e100000 --- 0x00031000 libsapp.so                     
[  138.496451] 2e100000-2e102000 rw- 0x00030000 libsapp.so                     
[  138.502127] 2e320000-2e321000 r-x 0x00000000 libsonybacktrace.so            
[  138.508876] 2e321000-2e331000 --- 0x00001000 libsonybacktrace.so            
[  138.515835] 2e331000-2e332000 rw- 0x00001000 libsonybacktrace.so            
[  138.522290] 301c0000-30225000 r-x 0x00000000 xPartsComponent.rel            
[  138.529023] 30225000-30234000 --- 0x00065000 xPartsComponent.rel            
[  138.536033] 30234000-3023e000 rw- 0x00064000 xPartsComponent.rel            
[  138.542499] 3023e000-3023f000 rw- 0x3023e000                                
[  138.547469] 30250000-3027f000 r-x 0x00000000 MediaUtil.rel                  
[  138.553947] 3027f000-3028e000 --- 0x0002f000 MediaUtil.rel                  
[  138.559790] 3028e000-302bd000 rw- 0x0002e000 MediaUtil.rel                  
[  138.566042] 302bd000-302c4000 rw- 0x302bd000                                
[  138.571100] 30350000-303a5000 r-x 0x00000000 xMB_Plugin_Settings.rel        
[  138.578205] 303a5000-303b4000 --- 0x00055000 xMB_Plugin_Settings.rel        
[  138.585012] 303b4000-303c0000 rw- 0x00054000 xMB_Plugin_Settings.rel        
[  138.592136] 303c0000-303c2000 rw- 0x303c0000                                
[  138.597192] 30440000-30486000 r-x 0x00000000 xMB_Plugin_Settings_BD.rel     
[  138.604578] 30486000-30496000 --- 0x00046000 xMB_Plugin_Settings_BD.rel     
[  138.611641] 30496000-3049f000 rw- 0x00046000 xMB_Plugin_Settings_BD.rel     
[  138.618984] 305c0000-305ca000 r-x 0x00000000 xBivlFeatureManager.rel        
[  138.626097] 305ca000-305d9000 --- 0x0000a000 xBivlFeatureManager.rel        
[  138.633172] 305d9000-305da000 rw- 0x00009000 xBivlFeatureManager.rel        
[  138.639924] 305da000-30603000 rw- 0x305da000                                
[  138.644723] 306d0000-306f1000 r-x 0x00000000 PM_ActionVisual.rel            
[  138.651450] 306f1000-30700000 --- 0x00021000 PM_ActionVisual.rel            
[  138.658205] 30700000-30702000 rw- 0x00020000 PM_ActionVisual.rel            
[  138.664978] 307d0000-307ee000 r-x 0x00000000 emma_nmi_handler: NMI pre-info4

and another:

                                                                     
                                                                     
                                                                     
                                             
emma_nmi_handler: NMI pre-information epc : 80ec3638                           
[   18.440140] 002.598s No such queue: "chassis_hal"                           
[   18.440161]                                                                 
[   18.440169] 004.024s SysRq : HELP : loglevel0-8 reBoot tErm Full kIll showMs
[   18.448509] 004.024s how-all-timers(Q) Sync showTasks Unmount shoW-blocked- 
[   18.457666]                                                                 
[   18.457674] 004.661s  umalloc[0] type=2 addr=00000000 size=00000000         
[   18.467451]                                                                 
[   18.467460] 004.661s  umalloc[1] type=2 addr=00000000 size=00000000         
[   18.476024]                                                                 
[   18.476032] 004.661s  umalloc[2] type=2 addr=00000000 size=00000000         
[   18.484597]                                                                 
[   18.484605] 004.661s  umalloc[3] type=2 addr=00000000 size=00000000         
[   18.493167]                                                                 
[   18.493176] 011.281s eth0: link down                                        
[   18.501734]                                                                 
[   18.501742] 013.924s SysRq : Terminate All Tasks                            
[   18.507614]                                                                 
[   18.507622] 017.847s NMI taken!!!!                                          
[   18.514531]                                                                 
[   18.514540] 017.847s NMI[#1]:                                               
[   18.520234]                                                                 
[   18.520242] BUG: scheduling while atomic: swapper/0x10010000/0           
[   18.533461] Call Trace:                                                     
[   18.535991] [0x80ecb044] dump_stack+0x8/0x34                                
[   18.540346] [0x810c3934] schedule+0x6c/0x3f8                                
[   18.544679] [0x80ee03e4] __cond_resched+0x20/0x48                           
[   18.549469] [0x810c4660] cond_resched+0x44/0x5c                             
[   18.554072] [0x80f13c80] write_cache_pages+0x2b4/0x380                      
[   18.559291] [0x80f13db8] do_writepages+0x44/0x80                            
[   18.563962] [0x80f0e064] __filemap_fdatawrite_range+0x88/0xac               
[   18.569788] [0x80f0e0dc] filemap_write_and_wait_range+0x54/0xb4             
[   18.575808] [0x80f80ea8] __fat_write_inode+0x40c/0x4b0                      
[   18.580999] [0x80f7f49c] fat_clean_inode+0x2c/0x58                          
[   18.585872] [0x80f80800] fat_fsync+0x8c/0x10c                               
[   18.590345] [0x8f4c27ec] em_exception_monitor+0x6a0/0x76c [exception_monito]
[   18.597593] [0x80ec1874] emma_nmi_exception_check+0x24/0x48                 
[   18.603216] [�                                                              
[    0.000000] Linux version 2.6.23.17-alp_nl- (root@slave34) (gcc version 4.10
[    0.000000]  bdi=01000009                                                   
[    0.000000] [3-1-1] CPU revision is: 0001906c                               
[    0.000000] EMMA3TL2 (Version Gen.=0xf(Gen.=03000012), Maj.=0x2, Min.=0x3)  
[    0.000000]  umem: 06a00000 @ 81600000                                      
[    0.000000] Determined physical RAM map:                                    
[    0.000000]  memory: 012c0000 @ 00000000 (usable)                           
[    0.000000]  memory: 00040000 @ 015c0000 (usable)                           
[    0.000000]  memory: 08000000 @ 08000000 (usable)                           
[    0.000000] Initial ramdisk at: 0x811ad000 (315392 bytes)                   
[    0.000000] Zone PFN ranges:                                                
[    0.000000]   Normal          0 ->    65536                                 
[    0.000000] Movable zone start PFN for each node                            
[    0.000000] early_node_map[3] active PFN ranges                             
[    0.000000]     0:        0 ->     4800                                     
[    0.000000]     0:     5568 ->     5632                                     
[    0.000000]     0:    32768 ->    65536                                     
[    0.000000] Kernel command line:  console=ttyS00,115200n8 ip=off  rdinit=

How to install X-CTU on Linux using wine

If you want to use XBee modules connected to your Linux computer you will need to install the X-CTU program that is used to configure the modules and to update its firmware.

To install X-CTU using wine follow these steps:

http://wire.less.dk/?p=162

http://stackoverflow.com/questions/14593875/running-x-ctu-on-linux

Unfortunately X-CTU doesn’t detect the serial ports of Xplorer Xbee programmer, then you will need to edit your wine regedit to include the right serial port manually.

This step is documented here:
http://www.downtowndougbrown.com/2013/03/getting-x-ctu-in-wine-to-detect-your-serial-ports/