|
|
05-05-2012
, 06:08 PM
|
|
Posts: 5 |
Thanked: 0 times |
Joined on Apr 2012
|
#252
|
|
|
05-05-2012
, 06:44 PM
|
|
Posts: 34 |
Thanked: 44 times |
Joined on Sep 2010
@ Israel
|
#253
|
I'd like some help here. I've managed to flash the power kernel with the u-boot, and successfully load it. I've then proceeded to burn a Meego image into the SD card. When I select "external SD card" from the boot menu, it recognizes the meego kernel, and begins boot, but then a white strip is painted across the screen and 10-15s afterwards the phone reboots. The same behavior happens when I try to boot Nemo from the external card.
I don't know what I'm doing wrong... I must have forgotten something, but I don't know what it is...
|
|
05-06-2012
, 03:55 PM
|
|
Posts: 237 |
Thanked: 270 times |
Joined on Jul 2010
|
#254
|
I'd like some help here. I've managed to flash the power kernel with the u-boot, and successfully load it. I've then proceeded to burn a Meego image into the SD card. When I select "external SD card" from the boot menu, it recognizes the meego kernel, and begins boot, but then a white strip is painted across the screen and 10-15s afterwards the phone reboots. The same behavior happens when I try to boot Nemo from the external card.
I don't know what I'm doing wrong... I must have forgotten something, but I don't know what it is...
Thanks for the reply. I've tried creating an .item file at /etc/multiboot.d/ pointing to the uImage at the external SD card. The u-boot updater simply ignores it. Could you please post your .item file here?
| The Following 5 Users Say Thank You to ivyking For This Useful Post: | ||
|
|
05-06-2012
, 06:57 PM
|
|
Posts: 5 |
Thanked: 0 times |
Joined on Apr 2012
|
#255
|
|
|
05-07-2012
, 05:35 PM
|
|
|
Posts: 232 |
Thanked: 167 times |
Joined on Jun 2010
@ Genova (Italy)
|
#256
|
if test -f "$BOOTMENU_CMD.default"; then cat "$BOOTMENU_CMD.default" "$BOOTMENU_CMD" > "$BOOTMENU_CMD.new" mv "$BOOTMENU_CMD.new" "$BOOTMENU_CMD" fi
mv "$BOOTMENU_CMD.new" "$BOOTMENU_CMD"

| The Following 7 Users Say Thank You to MaddogG For This Useful Post: | ||
|
|
05-07-2012
, 05:54 PM
|
|
Posts: 34 |
Thanked: 44 times |
Joined on Sep 2010
@ Israel
|
#257
|
Thanks for the reply. I've tried creating an .item file at /etc/multiboot.d/ pointing to the uImage at the external SD card. The u-boot updater simply ignores it. Could you please post your .item file here?
ITEM_NAME="Nemo"
ITEM_KERNEL="uImage"
ITEM_DEVICE="${EXT_CARD}p3"
ITEM_FSTYPE="vfat"
ITEM_CMDLINE="root=/dev/mmcblk0p1 rootwait ro console=ttyO2,115200n8 console=tty0 omapfb.vram=0:2M,1:2M,2:2M mtdoops.mtddev=2 quiet"
ITEM_USEATAG=1
| The Following 5 Users Say Thank You to drucula For This Useful Post: | ||
|
|
05-08-2012
, 03:20 AM
|
|
Posts: 101 |
Thanked: 46 times |
Joined on Aug 2010
@ somerset
|
#258
|
|
|
05-09-2012
, 01:48 PM
|
|
|
Posts: 1,357 |
Thanked: 1,264 times |
Joined on Oct 2011
@ Tartus.Syria
|
#259
|
|
|
05-10-2012
, 03:33 AM
|
|
Posts: 1,590 |
Thanked: 6,081 times |
Joined on May 2010
|
#260
|
@Pali
I could not create "bootmenu.scr" file, so I investigated a bit and I think I found a little bug in u-boot-update-bootmenu script.
In fact, if file "BOOTMENU_CMD.default" is never created, the script will surely fail at lines 269, and file "bootmenu.scr" will never be generated.
I think this happens if you don't set any default entry (you don't create the symlink "bootmenu.item" in /etc/default/).
Maybe you should check if this file exist before line 269:
I included commandCode:if test -f "$BOOTMENU_CMD.default"; then cat "$BOOTMENU_CMD.default" "$BOOTMENU_CMD" > "$BOOTMENU_CMD.new" mv "$BOOTMENU_CMD.new" "$BOOTMENU_CMD" fi
in the "if" statement because, at line 255, you delete the file "BOOTMENU_CMD.new", so if file "BOOTMENU_CMD.default" doesn't exist, file "BOOTMENU_CMD.new" is not created and this command fails, too.Code:mv "$BOOTMENU_CMD.new" "$BOOTMENU_CMD"
I hope I explained myself...
What do you think?
| The Following User Says Thank You to pali For This Useful Post: | ||
![]() |
| Tags |
| bootmenu, u-boot |
| Thread Tools | Search this Thread |
|
Pali is there anything else I can try to get power-kernel booting?Omap1 and Omap1-fb are booting just fine so why kernel-power50 does not I don't get it? On page 1 flocke had the same problem, but somehow it was working later.
Edit: Somehow kernel-power50 is finally booting. But I'm not sure what exactly fixed it. I re-ran FSCK on MyDocs, renamed REUSEATAGS to USEATAGS and ran u-boot-update-bootmenu again.
Regards,
J4ZZ
N900 ~ $ make me a sandwich
-bash: no, make it yourself
N900 ~ $ sudo make me a sandwich
-bash: ok then...
Last edited by J4ZZ; 05-05-2012 at 04:31 PM.