Re: [yocto] uimage instead of zImage

2013-10-27 Thread Wolfgang Denk
Dear Edward, In message canwz6nzqq8a1rnql3ety2tj-cktonoobqtievxu6+tohve5...@mail.gmail.com you wrote: A uImage file is a kernel with a modified header for u-boot. A tool called No header gets modified. Instead, a new header gets prepended. mkimage is used to convert a zImage (regular

Re: [yocto] uimage instead of zImage

2013-10-24 Thread Edward Vidal
Hello, My 2nd partition on the mmc is linux ext3. This is what I have been using to transfer the rootfs to my mmc tar jxvf beagleboard/core-image-minimal-beagleboard-20131024171447.rootfs.tar.bz2 Did something change since the 21 st of last month. Testing dora which was not part of dylan? No

Re: [yocto] uimage instead of zImage

2013-10-23 Thread Rudolf Streif
Hi Edward, This is what I have in the uEnv.txt file bootcmd= bootfile=zImage ethact= loadaddr= nandboot= nandroot= nandrootfstype= nandargs= loaduimage= loaduimagefat= nandboot= mpurate=auto bootcmd=mmc rescan ; fatload mmc 0:1 0x8030 zImage; bootz 0x8030 Why are you

Re: [yocto] uimage instead of zImage

2013-10-20 Thread Edward Vidal
Hello, I see some values when I do printenv These are the files on my dos partition MLO u-boot.img uEnv.txtzImage zImage-omap3-beagle-xm.dtb This is what I have in the uEnv.txt file bootcmd= bootfile=zImage ethact= loadaddr= nandboot= nandroot= nandrootfstype= nandargs= loaduimage=

[yocto] uimage instead of zImage

2013-10-19 Thread Edward Vidal
Hello all, I made some changes to my uEnv.txt mpurate=auto bootcmd=mmc rescan 0; fatload mmc 0:1 0x8030 uImage; bootm 0x8030 dvimode=hd720 omapfb.vram=0:8M,1:4M,2:4M vram=16M optargs=consoleblank=0 console=ttyO2 console=tty0,115200n8 chgs uImage to zImage in the bootcmd line above.

Re: [yocto] uimage instead of zImage

2013-10-19 Thread Rudolf Streif
Edward, Your zImage is booting fine. The kernel starts and then tries to mount the root file system. But it cannot find it. It's looking for a UBIFS but cannot find it: . VFS: Cannot open root device ubi0:rootfs or unknown-block(0,0): error -19 Please append a correct root= boot option; here

[yocto] uImage instead of zImage

2013-10-18 Thread Edward Vidal
hello all, I am trying to get a uImage instead of zImage My beagleboard before created a uImage now with dora I get a zImage. in the mega-manual I see the following . KERNEL_IMAGETYPE The type of kernel to build for a device, usually set by the machine configuration files and defaults to zImage.