|
2012-05-05
, 22:08
|
Posts: 5 |
Thanked: 0 times |
Joined on Apr 2012
|
#252
|
|
2012-05-05
, 22:44
|
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...
|
2012-05-06
, 19:55
|
Posts: 237 |
Thanked: 274 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: | ||
|
2012-05-06
, 22:57
|
Posts: 5 |
Thanked: 0 times |
Joined on Apr 2012
|
#255
|
|
2012-05-07
, 21:35
|
|
Posts: 234 |
Thanked: 175 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: | ||
|
2012-05-07
, 21:54
|
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: | ||
|
2012-05-08
, 07:20
|
Posts: 101 |
Thanked: 47 times |
Joined on Aug 2010
@ somerset
|
#258
|
|
2012-05-09
, 17:48
|
|
Posts: 1,359 |
Thanked: 1,292 times |
Joined on Oct 2011
@ Tartus.Syria
|
#259
|
|
2012-05-10
, 07:33
|
Posts: 2,154 |
Thanked: 8,464 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: | ||
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; 2012-05-05 at 20:31.