Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [Bug 9091] New: U-Boot fails to boot with large ramdisk
@ 2016-07-08 18:14 bugzilla at busybox.net
  2016-07-08 18:33 ` [Buildroot] [Bug 9091] " bugzilla at busybox.net
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: bugzilla at busybox.net @ 2016-07-08 18:14 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=9091

            Bug ID: 9091
           Summary: U-Boot fails to boot with large ramdisk
           Product: buildroot
           Version: unspecified
          Hardware: All
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P5
         Component: Other
          Assignee: unassigned at buildroot.uclibc.org
          Reporter: michaellmonaghan at gmail.com
                CC: buildroot at uclibc.org
  Target Milestone: ---

U-Boot fails to load a large ramdisk into memory properly (tested to occur with
a 20MB image on the zynq microzed). I have found a solution to the problem but
I'm unsure how to fix the problem in buildroot.


The U-Boot environment variable 'sdboot' is set to 

echo Booting from SD...; run envload; run fpgaboot; fatload mmc 0 0x1000000
${kernel_image} && fatload mmc 0 0x2000000 ${ramdisk_image} && fatload mmc 0
0x3000000 ${devicetree_image} && bootm 0x1000000 0x2000000 0x3000000

I believe the device tree is being written on top of the ramdisk. The system
boots when 'sdboot' is set to 

echo Booting from SD...; run envload; run fpgaboot; fatload mmc 0 0x1000000
${kernel_image} && fatload mmc 0 0x3000000 ${ramdisk_image} && fatload mmc 0
0x2000000 ${devicetree_image} && bootm 0x1000000 0x3000000 0x2000000

Here is a log of the default boot behavior.

######## begin boot log ########
U-Boot 2015.07 (Jul 07 2016 - 05:52:07 -0400)

Model: Zynq MicroZED Board
I2C: ready
DRAM: ECC disabled 1 GiB
MMC: zynq_sdhci: 0
Using default environment

In: serial
Out: serial
Err: serial
Model: Zynq MicroZED Board
Net: Gem.e000b000
Error: Gem.e000b000 address not set.

Hit any key to stop autoboot: 0
Booting from SD...
Device: zynq_sdhci
Manufacturer ID: 2
OEM: 544d
Name: SA04G
Tran Speed: 50000000
Rd Block Len: 512
SD version 3.0
High Capacity: Yes
Capacity: 3.6 GiB
Bus Width: 4-bit
Erase Group Size: 512 Bytes
reading uEnv.txt
** Unable to read file uEnv.txt **
reading system.bit
** Unable to read file system.bit **
FPGA image system.bit was not found, skipping...
reading uImage
3450752 bytes read in 309 ms (10.6 MiB/s)
reading rootfs.cpio.uboot
23719921 bytes read in 2027 ms (11.2 MiB/s)
reading zynq-zed.dtb
9141 bytes read in 19 ms (469.7 KiB/s)
## Booting kernel from Legacy Image at 01000000 ...
Image Name: Linux-3.18.0-xilinx
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 3450688 Bytes = 3.3 MiB
Load Address: 00008000
Entry Point: 00008000
Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at 02000000 ...
Image Name:
Image Type: ARM Linux RAMDisk Image (uncompressed)
Data Size: 23719857 Bytes = 22.6 MiB
Load Address: 00000000
Entry Point: 00000000
Verifying Checksum ... Bad Data CRC
Ramdisk image is corrupt or invalid
zynq-uboot>
######## end boot log ########

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [Bug 9091] U-Boot fails to boot with large ramdisk
  2016-07-08 18:14 [Buildroot] [Bug 9091] New: U-Boot fails to boot with large ramdisk bugzilla at busybox.net
@ 2016-07-08 18:33 ` bugzilla at busybox.net
  2016-07-08 18:33 ` bugzilla at busybox.net
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: bugzilla at busybox.net @ 2016-07-08 18:33 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=9091

--- Comment #1 from Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---
Created attachment 6551
  --> https://bugs.busybox.net/attachment.cgi?id=6551&action=edit
Proposed patch to address the issue

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [Bug 9091] U-Boot fails to boot with large ramdisk
  2016-07-08 18:14 [Buildroot] [Bug 9091] New: U-Boot fails to boot with large ramdisk bugzilla at busybox.net
  2016-07-08 18:33 ` [Buildroot] [Bug 9091] " bugzilla at busybox.net
@ 2016-07-08 18:33 ` bugzilla at busybox.net
  2016-07-08 19:55 ` bugzilla at busybox.net
  2016-07-24 20:44 ` bugzilla at busybox.net
  3 siblings, 0 replies; 5+ messages in thread
From: bugzilla at busybox.net @ 2016-07-08 18:33 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=9091

--- Comment #2 from Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---
Thanks for your bug report. I've attached a patch that should fix the issue.
Since I don't have the HW to test, can you test the patch and report back if it
works for you? Thanks!

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [Bug 9091] U-Boot fails to boot with large ramdisk
  2016-07-08 18:14 [Buildroot] [Bug 9091] New: U-Boot fails to boot with large ramdisk bugzilla at busybox.net
  2016-07-08 18:33 ` [Buildroot] [Bug 9091] " bugzilla at busybox.net
  2016-07-08 18:33 ` bugzilla at busybox.net
@ 2016-07-08 19:55 ` bugzilla at busybox.net
  2016-07-24 20:44 ` bugzilla at busybox.net
  3 siblings, 0 replies; 5+ messages in thread
From: bugzilla at busybox.net @ 2016-07-08 19:55 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=9091

--- Comment #3 from Michael Monaghan <michaellmonaghan@gmail.com> ---
The patch worked

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [Bug 9091] U-Boot fails to boot with large ramdisk
  2016-07-08 18:14 [Buildroot] [Bug 9091] New: U-Boot fails to boot with large ramdisk bugzilla at busybox.net
                   ` (2 preceding siblings ...)
  2016-07-08 19:55 ` bugzilla at busybox.net
@ 2016-07-24 20:44 ` bugzilla at busybox.net
  3 siblings, 0 replies; 5+ messages in thread
From: bugzilla at busybox.net @ 2016-07-24 20:44 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=9091

Thomas Petazzoni <thomas.petazzoni@free-electrons.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---
Fixed by commit 4846700a1b51e7f2c48639dafdb5143ad8e9de41.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-07-24 20:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-08 18:14 [Buildroot] [Bug 9091] New: U-Boot fails to boot with large ramdisk bugzilla at busybox.net
2016-07-08 18:33 ` [Buildroot] [Bug 9091] " bugzilla at busybox.net
2016-07-08 18:33 ` bugzilla at busybox.net
2016-07-08 19:55 ` bugzilla at busybox.net
2016-07-24 20:44 ` bugzilla at busybox.net

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox