<br><br><div class="gmail_quote">2011/4/8 Andrew Bradford <span dir="ltr"><<a href="mailto:bradfa@gmail.com">bradfa@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div class="im">On Fri, Apr 8, 2011 at 5:34 AM, Angel Ivan Castell Rovira<br>
<<a href="mailto:al004140@gmail.com">al004140@gmail.com</a>> wrote:<br>
><br>
> I have built a buildroot-based toolchain with the same package versions used<br>
> in CLFS book, to compile my custom kernel (2.6.30.4)<br>
><br>
> binutils-2.21<br>
> gcc-4.5.2<br>
> uClibc-0.9.31<br>
><br>
> The kernel image generated with that toolchain also generated the Oops<br>
> message reported yesterday building with CLFS toolchain. So, it was<br>
> obviously not related with any missing CLFS patch...<br>
><br>
> I tryied again a buildroot-based toolchain, but setting up with older<br>
> version of gcc/binutils/uClibc packages. Just to test, I selected:<br>
><br>
> binutils-2.20<br>
> gcc-4.2.4<br>
> uClibc-0.9.30<br>
><br>
> And surprisingly (at least for me), the image of that kernel works fine, it<br>
> does not generate any Oops message. It seems that not every version of gcc<br>
> can build a working linux kernel. I'm curious to know why both<br>
> cross-compilers generate a kernel image fine, but only one of the generated<br>
> images runs fine on my platform. Does that have some sense to you?<br>
<br>
</div>Ivan,<br>
<br>
Can you provide the entire boot up logs (both successful and<br>
unsuccessful), either as a plain text attachments to a reply to this<br>
thread or as pastebins?  The CLFS pastebin server is<br>
<a href="http://pastebin.cross-lfs.org/" target="_blank">http://pastebin.cross-lfs.org/</a><br>
<br>
What version of the kernel headers are you using in your CLFS and<br>
buildroot builds (both that work and don't work)?  You should _NOT_ be<br>
using kernel headers that are newer than the kernel you are attempting<br>
to boot.<br>
<br>
For example, if you're booting a 2.6.30 kernel, use 2.6.30 or older<br>
headers.  Don't use 2.6.36 headers like the embedded book says.  There<br>
may be new functionality exposed by the headers that BusyBox or uClibc<br>
want to use.  Since to the compiler (looking at newer headers you<br>
installed) finds the functions that are exposed by the kernel, it'll<br>
try to call them, but when you run an older kernel, that kernel<br>
doesn't yet have said functionality and it'll be asked to do something<br>
it doesn't know how to.  And proceed to kernel oops.<br>
<br>
I'm not sure this is your problem, but it's worth ruling out.<br>
-Andrew<br>
_______________________________________________<br>
Clfs-support mailing list<br>
<a href="mailto:Clfs-support@lists.cross-lfs.org">Clfs-support@lists.cross-lfs.org</a><br>
<a href="http://lists.cross-lfs.org/listinfo.cgi/clfs-support-cross-lfs.org" target="_blank">http://lists.cross-lfs.org/listinfo.cgi/clfs-support-cross-lfs.org</a><br>
</blockquote></div><br>Hello Mr. Andrew:<br><br>I have rebuild all the CFLS from scratch using this CLFS environment (I wanted to be sure is not a problem with my setup):<br><br>CLFS_HOST=i486-cross-linux-gnu<br>CLFS_TARGET=armv4-linux-uclibceabi<br>
CLFS_FPU=<br>CLFS_ARM_ARCH=armv4t<br>CLFS_ARM_MODE=arm<br>CLFS=/home/clfs<br>CLFS_ARCH=arm<br>CLFS_ABI=aapcs-linux<br>CLFS_ENDIAN=little<br>CLFS_FLOAT=soft<br><br>You should be able to reproduce the same behabiour following  the same steps described on the book. <br>
<br>The small changes I made are theses:<br><br>I have installed this patches:<br><br>static gcc:<br>patch -Np1 -i ../810-arm-softfloat-libgcc.patch<br><br>uClibc:<br>patch -Np1 -i ../uClibc-0.9.31-configs-2.patch<br><br>
busybox:<br>patch -Np1 -i ../busybox-1.17.3-fixes-1.patch<br>patch -Np1 -i ../busybox-1.17.3-config-1.patch<br><br>I installed sanitized headers of my 2.6.30.4 kernel instead of the 2.6.36 refered on the book<br><br>I customized uClibc configuration, doing that:<br>
<br>    $ make menuconfig<br>        Target ABI (EABI)  ---><br>        Target Processor Type (Arm 920T)  ---><br>        *** Using ELF file format ***<br>        Target Processor Endianness (Little Endian)  ---><br>
        -*- Target CPU has a memory management unit (MMU)<br>        [*]   Do you want to utilize the MMU?<br>        [*] Enable floating point number support<br>        [ ]   Target CPU has a floating point unit (FPU)<br>
        [*]   Enable full C99 math library support<br>        [ ]   Enable XSI math extensions to the ISO C standard (bessel)<br>        [ ]   Enable C99 Floating-point environment<br><br>This is my /etc/inittab on my rootfs<br>
<br>$ cat /etc/inittab<br>ttySAC1::respawn:/bin/sh<br><br>Also, I created all the necesary nodes on /dev (I don't want to use mdev right now, just to test):<br><br>$ ls -l /dev<br>total 8<br>crw-rw---- 1 root root  10, 134 2010-11-02 10:43 apm_bios<br>
crw-rw--w- 1 root root   5,   1 2010-11-02 10:43 console<br>drwxr-xr-x 3 root root     4096 2010-11-16 16:45 dev<br>crw------- 1 root root  29,   0 2010-11-02 10:43 fb0<br>brw-rw---- 1 root root   3,   0 2010-11-02 10:43 hda<br>
brw-rw---- 1 root root   3,   1 2010-11-02 10:43 hda1<br>brw-rw---- 1 root root   3,  10 2010-11-02 10:43 hda10<br>brw-rw---- 1 root root   3,  11 2010-11-02 10:43 hda11<br>brw-rw---- 1 root root   3,  12 2010-11-02 10:43 hda12<br>
brw-rw---- 1 root root   3,  13 2010-11-02 10:43 hda13<br>brw-rw---- 1 root root   3,  14 2010-11-02 10:43 hda14<br>brw-rw---- 1 root root   3,  15 2010-11-02 10:43 hda15<br>brw-rw---- 1 root root   3,  16 2010-11-02 10:43 hda16<br>
brw-rw---- 1 root root   3,  17 2010-11-02 10:43 hda17<br>brw-rw---- 1 root root   3,  18 2010-11-02 10:43 hda18<br>brw-rw---- 1 root root   3,  19 2010-11-02 10:43 hda19<br>brw-rw---- 1 root root   3,   2 2010-11-02 10:43 hda2<br>
brw-rw---- 1 root root   3,   3 2010-11-02 10:43 hda3<br>brw-rw---- 1 root root   3,   4 2010-11-02 10:43 hda4<br>brw-rw---- 1 root root   3,   5 2010-11-02 10:43 hda5<br>brw-rw---- 1 root root   3,   6 2010-11-02 10:43 hda6<br>
brw-rw---- 1 root root   3,   7 2010-11-02 10:43 hda7<br>brw-rw---- 1 root root   3,   8 2010-11-02 10:43 hda8<br>brw-rw---- 1 root root   3,   9 2010-11-02 10:43 hda9<br>prw------- 1 root root        0 2010-11-02 10:43 initctl<br>
crw-r----- 1 root root   1,   2 2010-11-02 10:43 kmem<br>crw-r----- 1 root root   1,   1 2010-11-02 10:43 mem<br>crw-rw---- 1 root root  90,   0 2010-11-02 10:43 mtd0<br>crw-rw---- 1 root root  90,   2 2010-11-02 10:43 mtd1<br>
crw-rw---- 1 root root  90,   4 2010-11-02 10:43 mtd2<br>crw-rw---- 1 root root  90,   6 2010-11-02 10:43 mtd3<br>crw-rw---- 1 root root  90,   8 2010-11-02 10:43 mtd4<br>crw-rw---- 1 root root  90,  10 2010-11-02 10:43 mtd5<br>
crw-rw---- 1 root root  90,  12 2010-11-02 10:43 mtd6<br>crw-rw---- 1 root root  90,  14 2010-11-02 10:43 mtd7<br>brw-r----- 1 root root  31,   0 2010-11-02 10:43 mtdblock0<br>brw-r----- 1 root root  31,   1 2010-11-02 10:43 mtdblock1<br>
brw-r----- 1 root root  31,   2 2010-11-02 10:43 mtdblock2<br>brw-r----- 1 root root  31,   3 2010-11-02 10:43 mtdblock3<br>brw-r----- 1 root root  31,   4 2010-11-02 10:43 mtdblock4<br>brw-r----- 1 root root  31,   5 2010-11-02 10:43 mtdblock5<br>
brw-r----- 1 root root  31,   6 2010-11-02 10:43 mtdblock6<br>brw-r----- 1 root root  31,   7 2010-11-02 10:43 mtdblock7<br>crw-rw-rw- 1 root root   1,   3 2010-11-02 10:43 null<br>drwxr-xr-x 2 root root     4096 2011-04-05 10:31 pts<br>
brw-r----- 1 root root   1,   0 2010-11-02 10:43 ram0<br>brw-r----- 1 root root   1,   1 2010-11-02 10:43 ram1<br>brw-r----- 1 root root   1,   2 2010-11-02 10:43 ram2<br>brw-r----- 1 root root   1,   3 2010-11-02 10:43 ram3<br>
crw-r--r-- 1 root root   1,   8 2010-11-02 10:43 random<br>crw-rw--w- 1 root root   5,   0 2010-11-02 10:43 tty<br>crw-rw-rw- 1 root root   4,   0 2010-11-02 10:43 tty0<br>crw-rw-rw- 1 root root   4,   1 2010-11-02 10:43 tty1<br>
crw-rw-rw- 1 root root   4,   2 2010-11-02 10:43 tty2<br>crw-rw-rw- 1 root root   4,   3 2010-11-02 10:43 tty3<br>crw-rw-rw- 1 root root   4,   4 2010-11-02 10:43 tty4<br>crw-rw-rw- 1 root root   4,   5 2010-11-02 10:43 tty5<br>
crw-rw-rw- 1 root root   4,   6 2010-11-02 10:43 tty6<br>crw-rw-rw- 1 root root   4,   7 2010-11-02 10:43 tty7<br>crw-rw-rw- 1 root root   4,   8 2010-11-02 10:43 tty8<br>crw-r----- 1 root root   4,  64 2010-11-02 10:43 ttyS0<br>
crw-r----- 1 root root 204,   5 2010-11-02 10:43 ttySA0<br>crw-r--r-- 1 root root 204,  65 2011-04-05 08:44 ttySAC1<br>crw-r--r-- 1 root root   1,   9 2010-11-02 10:43 urandom<br>crw-r--r-- 1 root root   1,   5 2010-11-02 10:43 zero<br>
<br>Take into account that my rootfs is prompting fine (I have a running shell) when I boot it from the kernel 2.6.30.4, but cross-compiled with buildroot (snapshot buildroot-20110407.tar.bz2).<br><br>I will continue checking diffs between setup of patches between buildroot and CLFS to see if that helps...<br>
<br>Hope somebody can help with that. Thanks a lot in advance!! Does your kernel cross-compiled with CLFS work?<br><br>The complete messages when boots my kernel cross-compiled with CLFS:<br><br clear="all">Copy linux kernel from 0x00200000 to 0x30008000, size = 0x00200000 ... Copy Ker.<br>
Uncompressing Linux.............................................................<br>Linux version 2.6.30.4 (clfs@devnull) (gcc version 4.5.2 (GCC) ) #1 Fri Apr 8 11<br>CPU: ARM920T [41129200] revision 0 (ARMv4T), cr=c0007177<br>
CPU: VIVT data cache, VIVT instruction cache<br>Machine: BDC2440<br>ATAG_INITRD is deprecated; please update your bootloader.<br>Memory policy: ECC disabled, Data cache writeback<br>CPU S3C2440A (id 0x32440001)<br>S3C24XX Clocks, (c) 2004 Simtec Electronics<br>
S3C244X: core 400.000 MHz, memory 100.000 MHz, peripheral 50.000 MHz<br>CLOCK: Slow mode (1.500 MHz), fast, MPLL on, UPLL on<br>Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 16256<br>Kernel command line: root=/dev/mtdblock2 rootfstype=yaffs2 console=ttySAC1,11520<br>
NR_IRQS:85<br>irq: clearing pending ext status 00000800<br>irq: clearing subpending status 00000010<br>PID hash table entries: 256 (order: 8, 1024 bytes)<br>Console: colour dummy device 80x30<br>console [ttySAC1] enabled<br>
Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)<br>Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)<br>Memory: 64MB = 64MB total<br>Memory: 60896KB available (3508K code, 354K data, 112K init, 0K highmem)<br>
SLUB: Genslabs=11, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1<br>Calibrating delay loop... 199.47 BogoMIPS (lpj=498688)<br>Mount-cache hash table entries: 512<br>CPU: Testing write buffer coherency: ok<br>net_namespace: 296 bytes<br>
NET: Registered protocol family 16<br>S3C2440: Initialising architecture<br>S3C2440: IRQ Support<br>S3C24XX DMA Driver, (c) 2003-2004,2006 Simtec Electronics<br>DMA channel 0 at c4808000, irq 33<br>DMA channel 1 at c4808040, irq 34<br>
DMA channel 2 at c4808080, irq 35<br>DMA channel 3 at c48080c0, irq 36<br>S3C244X: Clock Support, DVS off<br>bio: create slab <bio-0> at 0<br>SCSI subsystem initialized<br>usbcore: registered new interface driver usbfs<br>
usbcore: registered new interface driver hub<br>usbcore: registered new device driver usb<br>s3c2440-i2c s3c2440-i2c: slave address 0x10<br>s3c2440-i2c s3c2440-i2c: bus frequency set to 9 KHz<br>s3c2440-i2c s3c2440-i2c: i2c-0: S3C I2C adapter<br>
cfg80211: Calling CRDA to update world regulatory domain<br>NET: Registered protocol family 2<br>IP route cache hash table entries: 1024 (order: 0, 4096 bytes)<br>TCP established hash table entries: 2048 (order: 2, 16384 bytes)<br>
TCP bind hash table entries: 2048 (order: 1, 8192 bytes)<br>TCP: Hash tables configured (established 2048 bind 2048)<br>TCP reno registered<br>NET: Registered protocol family 1<br>yaffs Apr  8 2011 16:50:38 Installing. <br>
msgmni has been set to 119<br>alg: No test for stdrng (krng)<br>io scheduler noop registered (default)<br>Console: switching to colour frame buffer device 100x30<br>fb0: s3c2410fb frame buffer device<br>backlight initialized<br>
PWM-Test initialized<br>adc initialized<br>s3c2440-uart.0: ttySAC0 at MMIO 0x50000000 (irq = 70) is a S3C2440<br>s3c2440-uart.1: ttySAC1 at MMIO 0x50004000 (irq = 73) is a S3C2440<br>s3c2440-uart.2: ttySAC2 at MMIO 0x50008000 (irq = 76) is a S3C2440<br>
loop: module loaded<br>at24 0-0050: 256 byte 24c02 EEPROM (writable)<br>Driver 'sd' needs updating - please use bus_type methods<br>PPP generic driver version 2.4.2<br>PPP Deflate Compression module registered<br>
PPP BSD Compression module registered<br>PPP MPPE Compression module registered<br>dm9000 Ethernet Driver, V1.31<br>Now use the default MAC address: 10:23:45:67:89:ab<br>eth0 (dm9000): not using net_device_ops yet<br>eth0: dm9000e at c4814000,c4818004 IRQ 51 MAC: 10:23:45:67:89:ab<br>
S3C24XX NAND Driver, (c) 2004 Simtec Electronics<br>s3c2440-nand s3c2440-nand: Tacls=2, 20ns Twrph0=3 30ns, Twrph1=2 20ns<br>NAND device: Manufacturer ID: 0xec, Chip ID: 0xda (Samsung NAND 256MiB 3,3V 8-b)<br>Scanning device for bad blocks<br>
Bad eraseblock 1218 at 0x000009840000<br>Bad eraseblock 1740 at 0x00000d980000<br>Creating 3 MTD partitions on "NAND 256MiB 3,3V 8-bit":<br>0x000000000000-0x000000040000 : "Board_uboot"<br>0x000000200000-0x000000400000 : "Board_kernel"<br>
0x000000400000-0x000010000000 : "Board_yaffs2"<br>ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver<br>s3c2410-ohci s3c2410-ohci: S3C24XX OHCI<br>s3c2410-ohci s3c2410-ohci: new USB bus registered, assigned bus number 1<br>
s3c2410-ohci s3c2410-ohci: irq 42, io mem 0x49000000<br>usb usb1: New USB device found, idVendor=1d6b, idProduct=0001<br>usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1<br>usb usb1: Product: S3C24XX OHCI<br>
usb usb1: Manufacturer: Linux 2.6.30.4 ohci_hcd<br>usb usb1: SerialNumber: s3c24xx<br>usb usb1: configuration #1 chosen from 1 choice<br>hub 1-0:1.0: USB hub found<br>hub 1-0:1.0: 2 ports detected<br>Initializing USB Mass Storage driver...<br>
usbcore: registered new interface driver usb-storage<br>USB Mass Storage support registered.<br>s3c2410_udc: debugfs dir creation failed -19<br>s3c2440-usbgadget s3c2440-usbgadget: S3C2440: increasing FIFO to 128 bytes<br>
mice: PS/2 mouse device common for all mice<br>TQ2440 TouchScreen successfully loaded<br>input: TQ2440 TouchScreen as /devices/virtual/input/input0<br>S3C24XX RTC, (c) 2004,2006 Simtec Electronics<br>s3c2410-rtc s3c2410-rtc: rtc disabled, re-enabling<br>
s3c2410-rtc s3c2410-rtc: rtc core: registered s3c as rtc0<br>i2c /dev entries driver<br>mapped channel 0 to 0<br>s3c2440-sdi s3c2440-sdi: powered down.<br>s3c2440-sdi s3c2440-sdi: initialisation done.<br>s3c2440-sdi s3c2440-sdi: powered down.<br>
usbcore: registered new interface driver usbhid<br>usbhid: v2.6:USB HID core driver<br>Advanced Linux Sound Architecture Driver Version 1.0.18a.<br>No device for DAI WM8731<br>No device for DAI s3c24xx-i2s<br>WM8731 Audio Codec 0.13<6>asoc: WM8731 <-> s3c24xx-i2s mapping ok<br>
ALSA device list:<br>  #0: WM8731 (WM8731)<br>TCP cubic registered<br>NET: Registered protocol family 17<br>usb 1-1: new full speed USB device using s3c2410-ohci and address 2<br>RPC: Registered udp transport module.<br>RPC: Registered tcp transport module.<br>
lib80211: common routines for IEEE802.11 drivers<br>s3c2410-rtc s3c2410-rtc: setting system clock to 2010-09-17 13:54:13 UTC (12847)<br>yaffs: dev is 32505858 name is "mtdblock2"<br>yaffs: passed flags ""<br>
yaffs: Attempting MTD mount on 31.2, "mtdblock2"<br>block 1187 is bad<br>block 1709 is bad<br>usb 1-1: New USB device found, idVendor=058f, idProduct=6254<br>usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0<br>
usb 1-1: configuration #1 chosen from 1 choice<br>hub 1-1:1.0: USB hub found<br>hub 1-1:1.0: 4 ports detected<br>yaffs_read_super: isCheckpointed 0<br>VFS: Mounted root (yaffs2 filesystem) on device 31:2.<br>Freeing init memory: 112K<br>
Unable to handle kernel paging request at virtual address 00100104<br>pgd = c3a24000<br>[00100104] *pgd=339ca031, *pte=00000000, *ppte=00000000<br>Internal error: Oops: 817 [#1]<br>Modules linked in:<br>CPU: 0    Not tainted  (2.6.30.4 #1)<br>
PC is at get_page_from_freelist+0x1d8/0x41c<br>LR is at get_page_from_freelist+0xf8/0x41c<br>pc : [<c006582c>]    lr : [<c006574c>]    psr: 60000093<br>sp : c381da30  ip : 00100100  fp : c381da8c<br>r10: c03f5340  r9 : c039ce20  r8 : 60000013<br>
r7 : 00000001  r6 : c03b773c  r5 : c03b775c  r4 : 00000000<br>r3 : 00100100  r2 : 00200200  r1 : 00200200  r0 : 00000001<br>Flags: nZCv  IRQs off  FIQs on  Mode SVC_32  ISA ARM  Segment user<br>Control: c000717f  Table: 33a24000  DAC: 00000015<br>
Process init (pid: 1, stack limit = 0xc381c268)<br>Stack: (0xc381da30 to 0xc381e000)<br>da20:                                     00000044 c381a000 00000000 00000000 <br>da40: 00000000 00000000 c03b7cc8 00000000 000284d0 00000000 c03b773c c03b773c <br>
da60: 00000001 c381a000 00000000 000084d0 c381c000 c03b7cc4 00000000 00000000 <br>da80: c381dafc c381da90 c0065b18 c0065664 00000000 00000044 c00316fc 000284d0 <br>daa0: 00000001 c381c000 41dcf640 00000400 008cfd30 00000000 c381a000 00000000 <br>
dac0: 00000010 00000001 00000000 00000001 c381dafc c3a25000 c39cc000 c39cd1b8 <br>dae0: c381c000 c3a25000 c3a24000 00000200 c381db1c c381db00 c00727c0 c0065a80 <br>db00: 4000d000 c381a000 c39cd1b8 c381c000 c381db84 c381db20 c0074d74 c00727a8 <br>
db20: 00000001 00000000 c381db44 c381db38 00000800 c0031c0c c381db74 c381db48 <br>db40: c39cc000 c0031d9c 00000000 60000093 00000000 c39eccc0 00000000 c39cc000 <br>db60: 4000d008 c381dd10 c381a000 c39cd1b8 00000805 c39cc034 c381dc3c c381db88 <br>
db80: c002b734 c0074510 4000d000 00000800 c01aee84 c0137f60 c381dbbc c39ecc00 <br>dba0: 00000316 ffcfe018 c39eccc0 c39ce480 c381dbdc 00000000 c39eccc0 c38d2280 <br>dbc0: c39ce480 c39eccc0 00000000 00000004 c381dc1c c381dbe0 00000000 00000000 <br>
dbe0: 00000000 00000000 c4e00000 c39ecc00 c381dc34 c381dc00 c013869c c01383d0 <br>dc00: 0000002a c39cd1dc c39cd16c c39cd1b8 c39cd1dc 00000805 4000d008 c381dd10 <br>dc20: 00000005 c03966f4 20000013 40000000 c381dc5c c381dc40 c002b8fc c002b5a4 <br>
dc40: 00000005 00000805 4000d008 c381dd10 c381dd0c c381dc60 c00241e4 c002b898 <br>dc60: 4000c000 c39cc000 c381dce4 c381dc78 c0078184 c007713c c39cd018 00000000 <br>dc80: c39ce400 00000004 00000000 c39cd1b8 c39cd000 c039cf44 c3406990 00000812 <br>
dca0: c39ce400 c381c000 c39ce400 c39cd018 c39cd020 c39cd160 c381dce4 00000007 <br>dcc0: c381c000 c39ce400 00002000 c39cc000 00000812 00000002 c381dd2c c381dce8 <br>dce0: c0078660 c0077fe4 08100877 ffffffff c381dd44 00000000 c381df50 c381c000 <br>
dd00: c381dd6c c381dd10 c00249c0 c00241c0 4000d008 00000ff0 00000000 8100dfff <br>dd20: c39ce380 c39c5000 00000000 c381df50 c381c000 c39ce400 40000000 c381dd6c <br>dd40: 00000000 c381dd58 c00b81f8 c0132f10 20000013 ffffffff 00000ff8 c00b81f8 <br>
dd60: c381ddfc c381dd70 c00b90d0 c00b81b4 00000812 00000000 00000003 000c4a80 <br>dd80: 00000001 000c3000 00008000 4000d008 4000d060 000ba584 00008000 c39ce380 <br>dda0: 00000000 000c36e8 00000000 c39cf240 c38d2240 c39ce3b4 00000005 c39c5100 <br>
ddc0: fffffffe 00000000 c381df50 c381c000 c381ddfc c039d744 c039d390 c39c5000 <br>dde0: fffffff8 00000001 c381df50 c381c000 c381de34 c381de00 c00890d8 c00b85d4 <br>de00: 00000080 00000002 c39c5000 c39c5000 c381df50 c381de38 fffffffe 00000000 <br>
de20: c381df50 c381c000 c381dedc c381de38 c00b7ab0 c0089034 6e69622f 7375622f <br>de40: 786f6279 00000000 c381c000 00000000 c39c5080 c381c000 00000000 0000000b <br>de60: c381de8c c381de70 c0075268 c0074f9c 00000003 c381dea4 00000000 00000001 <br>
de80: c381dec4 c381de90 c0089794 c007523c 00000001 00000001 c381dea4 00000000 <br>dea0: c381defc 00000000 beffffd4 c39c5000 c03b7de0 00000000 00000000 c39c5002 <br>dec0: c0089984 c039d724 c039d390 c39c5000 c381df14 c381dee0 c00890d8 c00b786c <br>
dee0: befff000 00000002 c03962b8 00000000 00000000 c39c5000 c381df50 c381c000 <br>df00: c03962b8 c0396230 c381df4c c381df18 c008a220 c0089034 c381df9c 00000000 <br>df20: 00000000 c0396230 c381df50 c0345910 c03962b8 00000000 00000000 00000000 <br>
df40: c381dfb4 c381df50 c0028260 c008a01c 00000000 00000000 00000000 00000000 <br>df60: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 <br>df80: 00000000 00000000 00000000 00000000 00000000 00000000 c03b7d20 c001d36c <br>
dfa0: 00000000 00000000 c381dfc4 c381dfb8 c0024284 c0028230 c381dfdc c381dfc8 <br>dfc0: c0024314 c0024278 c3401080 c03b7d20 c381dff4 c381dfe0 c00089c8 c002429c <br>dfe0: 00000000 00000000 00000000 c381dff8 c0039dc8 c0008918 00000000 00000000 <br>
Backtrace: <br>[<c0065654>] (get_page_from_freelist+0x0/0x41c) from [<c0065b18>] (__alloc_page)<br>[<c0065a70>] (__alloc_pages_internal+0x0/0x424) from [<c00727c0>] (__pte_alloc+)<br>[<c0072798>] (__pte_alloc+0x0/0x178) from [<c0074d74>] (handle_mm_fault+0x874/0)<br>
 r7:c381c000 r6:c39cd1b8 r5:c381a000 r4:4000d000<br>[<c0074500>] (handle_mm_fault+0x0/0xa8c) from [<c002b734>] (do_page_fault+0x1a0)<br>[<c002b594>] (do_page_fault+0x0/0x268) from [<c002b8fc>] (do_translation_fault+)<br>
[<c002b888>] (do_translation_fault+0x0/0x7c) from [<c00241e4>] (do_DataAbort+0x)<br> r6:c381dd10 r5:4000d008 r4:00000805 r3:00000005<br>[<c00241b0>] (do_DataAbort+0x0/0x9c) from [<c00249c0>] (__dabt_svc+0x40/0x60)<br>
Exception stack(0xc381dd10 to 0xc381dd58)<br>dd00:                                     4000d008 00000ff0 00000000 8100dfff <br>dd20: c39ce380 c39c5000 00000000 c381df50 c381c000 c39ce400 40000000 c381dd6c <br>dd40: 00000000 c381dd58 c00b81f8 c0132f10 20000013 ffffffff                   <br>
 r8:c381c000 r7:c381df50 r6:00000000 r5:c381dd44 r4:ffffffff<br>[<c00b81a4>] (padzero+0x0/0x60) from [<c00b90d0>] (load_elf_binary+0xb0c/0x11e8)<br>[<c00b85c4>] (load_elf_binary+0x0/0x11e8) from [<c00890d8>] (search_binary_hand)<br>
[<c0089024>] (search_binary_handler+0x0/0x250) from [<c00b7ab0>] (load_script+0)<br>[<c00b785c>] (load_script+0x0/0x25c) from [<c00890d8>] (search_binary_handler+0)<br> r6:c39c5000 r5:c039d390 r4:c039d724<br>
[<c0089024>] (search_binary_handler+0x0/0x250) from [<c008a220>] (do_execve+0x2)<br>[<c008a00c>] (do_execve+0x0/0x290) from [<c0028260>] (kernel_execve+0x40/0x8c)<br>[<c0028220>] (kernel_execve+0x0/0x8c) from [<c0024284>] (run_init_process+0x1c/)<br>
 r7:00000000 r6:00000000 r5:c001d36c r4:c03b7d20<br>[<c0024268>] (run_init_process+0x0/0x24) from [<c0024314>] (init_post+0x88/0x10)<br>[<c002428c>] (init_post+0x0/0x10c) from [<c00089c8>] (kernel_init+0xc0/0xe8)<br>
 r4:c03b7d20 r3:c3401080<br>[<c0008908>] (kernel_init+0x0/0xe8) from [<c0039dc8>] (do_exit+0x0/0x638)<br> r5:00000000 r4:00000000<br>Code: e59a101c e59a3018 e59fc234 e59f2234 (e5831004) <br>---[ end trace e6b87c8bf1deaaf1 ]---<br>
Kernel panic - not syncing: Attempted to kill init!<br>Backtrace: <br>[<c0028ee0>] (dump_backtrace+0x0/0x10c) from [<c02b88b4>] (dump_stack+0x18/0x1c)<br> r6:c006582c r5:0000000b r4:c03b8360 r3:ffffffff<br>[<c02b889c>] (dump_stack+0x0/0x1c) from [<c02b8904>] (panic+0x4c/0x110)<br>
[<c02b88b8>] (panic+0x0/0x110) from [<c003a3d4>] (do_exit+0x60c/0x638)<br> r3:c039a85c r2:c381d6ac r1:00000002 r0:c0348d24<br> r7:c006582c<br>[<c0039dc8>] (do_exit+0x0/0x638) from [<c00292e4>] (die+0x22c/0x270)<br>
 r7:c006582c<br>[<c00290b8>] (die+0x0/0x270) from [<c002b584>] (__do_kernel_fault+0x6c/0x7c)<br> r7:c39cc000<br>[<c002b518>] (__do_kernel_fault+0x0/0x7c) from [<c002b6d8>] (do_page_fault+0x14)<br> r7:c381a000 r6:c381d9e8 r5:00100104 r4:c39cc000<br>
[<c002b594>] (do_page_fault+0x0/0x268) from [<c00241e4>] (do_DataAbort+0x34/0x9)<br>[<c00241b0>] (do_DataAbort+0x0/0x9c) from [<c00249c0>] (__dabt_svc+0x40/0x60)<br>Exception stack(0xc381d9e8 to 0xc381da30)<br>
d9e0:                   00000001 00200200 00200200 00100100 00000000 c03b775c <br>da00: c03b773c 00000001 60000013 c039ce20 c03f5340 c381da8c 00100100 c381da30 <br>da20: c006574c c006582c 60000093 ffffffff                                     <br>
 r8:60000013 r7:00000001 r6:c03b773c r5:c381da1c r4:ffffffff<br>[<c0065654>] (get_page_from_freelist+0x0/0x41c) from [<c0065b18>] (__alloc_page)<br>[<c0065a70>] (__alloc_pages_internal+0x0/0x424) from [<c00727c0>] (__pte_alloc+)<br>
[<c0072798>] (__pte_alloc+0x0/0x178) from [<c0074d74>] (handle_mm_fault+0x874/0)<br> r7:c381c000 r6:c39cd1b8 r5:c381a000 r4:4000d000<br>[<c0074500>] (handle_mm_fault+0x0/0xa8c) from [<c002b734>] (do_page_fault+0x1a0)<br>
[<c002b594>] (do_page_fault+0x0/0x268) from [<c002b8fc>] (do_translation_fault+)<br>[<c002b888>] (do_translation_fault+0x0/0x7c) from [<c00241e4>] (do_DataAbort+0x)<br> r6:c381dd10 r5:4000d008 r4:00000805 r3:00000005<br>
[<c00241b0>] (do_DataAbort+0x0/0x9c) from [<c00249c0>] (__dabt_svc+0x40/0x60)<br>Exception stack(0xc381dd10 to 0xc381dd58)<br>dd00:                                     4000d008 00000ff0 00000000 8100dfff <br>dd20: c39ce380 c39c5000 00000000 c381df50 c381c000 c39ce400 40000000 c381dd6c <br>
dd40: 00000000 c381dd58 c00b81f8 c0132f10 20000013 ffffffff                   <br> r8:c381c000 r7:c381df50 r6:00000000 r5:c381dd44 r4:ffffffff<br>[<c00b81a4>] (padzero+0x0/0x60) from [<c00b90d0>] (load_elf_binary+0xb0c/0x11e8)<br>
[<c00b85c4>] (load_elf_binary+0x0/0x11e8) from [<c00890d8>] (search_binary_hand)<br>[<c0089024>] (search_binary_handler+0x0/0x250) from [<c00b7ab0>] (load_script+0)<br>[<c00b785c>] (load_script+0x0/0x25c) from [<c00890d8>] (search_binary_handler+0)<br>
 r6:c39c5000 r5:c039d390 r4:c039d724<br>[<c0089024>] (search_binary_handler+0x0/0x250) from [<c008a220>] (do_execve+0x2)<br>[<c008a00c>] (do_execve+0x0/0x290) from [<c0028260>] (kernel_execve+0x40/0x8c)<br>
[<c0028220>] (kernel_execve+0x0/0x8c) from [<c0024284>] (run_init_process+0x1c/)<br> r7:00000000 r6:00000000 r5:c001d36c r4:c03b7d20<br>[<c0024268>] (run_init_process+0x0/0x24) from [<c0024314>] (init_post+0x88/0x10)<br>
[<c002428c>] (init_post+0x0/0x10c) from [<c00089c8>] (kernel_init+0xc0/0xe8)<br> r4:c03b7d20 r3:c3401080<br>[<c0008908>] (kernel_init+0x0/0xe8) from [<c0039dc8>] (do_exit+0x0/0x638)<br> r5:00000000 r4:00000000<br>
<br>