The Following 2 Users Say Thank You to ildar For This Useful Post: | ||
![]() |
2012-02-01
, 14:12
|
Posts: 323 |
Thanked: 180 times |
Joined on Oct 2009
@ Gent, Belgium
|
#72
|
The Following User Says Thank You to Netweaver For This Useful Post: | ||
![]() |
2012-02-01
, 14:32
|
Posts: 3,617 |
Thanked: 2,412 times |
Joined on Nov 2009
@ Cambridge, UK
|
#73
|
![]() |
2012-02-01
, 15:16
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#74
|
The Following 3 Users Say Thank You to pali For This Useful Post: | ||
![]() |
2012-02-01
, 16:58
|
Posts: 3,617 |
Thanked: 2,412 times |
Joined on Nov 2009
@ Cambridge, UK
|
#75
|
Here are all supported variables for bootmenu entry:
ITEM_NAME=""
ITEM_DEVICE=""
ITEM_FSTYPE=""
ITEM_KERNEL=""
ITEM_INITRD=""
ITEM_SCRIPT=""
ITEM_CMDLINE=""
ITEM_USEATAG=""
Try to play with it, maybe you can get nemo booting. Now I do not have time to playing with it.
I tried this (stored kernel uImage-nemo in MyDocs) but not worked:
ITEM_NAME="Nemo"
ITEM_KERNEL="uImage-nemo"
ITEM_DEVICE="${INT_CARD}p1"
ITEM_FSTYPE="fat"
The Following User Says Thank You to Rob1n For This Useful Post: | ||
![]() |
2012-02-01
, 17:06
|
Posts: 309 |
Thanked: 456 times |
Joined on Jan 2010
|
#76
|
I think you need to add:
ITEM_CMDLINE="root=${EXT_CARD}p6"
or wherever the Nemo partition is.
![]() |
2012-02-01
, 17:26
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#77
|
I think you need to add:
ITEM_CMDLINE="root=${EXT_CARD}p6"
or wherever the Nemo partition is.
![]() |
2012-02-01
, 17:27
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#78
|
How did you build the Nemo uImage to add to the boot entry?
Is it the same procedure used for a merged image (uboot + p49) and setting that one instead?
I would guess this will allow more than one O/S can be loaded from several partitions on the sdcard?
![]() |
2012-02-01
, 18:11
|
Posts: 4 |
Thanked: 2 times |
Joined on Feb 2012
|
#79
|
The Following User Says Thank You to plipp For This Useful Post: | ||
![]() |
2012-02-01
, 18:49
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#80
|
The nemo mobile project releases ready made raw images that you write to an sd card. I should be configured as follows:
partition 1: root filesystem
partition 2: swap
partition 3: /boot
So something like this:
ITEM_NAME="Nemo"
ITEM_KERNEL="uImage"
ITEM_DEVICE="${EXT_CARD}p3"
ITEM_FSTPE="fat"
ITEM_CMDLINE="root=/dev/mmcblk1p1"
Should work, right? But nope, it loads the right kernel (as does run sdboot in the console), but then it just shuts down.
Any suggestions?
![]() |
Tags |
bootmenu, u-boot |
Thread Tools | |
|
- 1. Have the healthy FAT at /home/user/MyDocs
- 2. U-boot shows default menu
- 3. U-boot console:
Code:
It shows the contents of /home/user/MyDocs/Text/0scraps/20111026223145
So U-boot indeed handles (v)FAT incorrectly.My guess it is due to misaligned partition OR parted resize. I mean I used parted to resize /dev/mmcblk0p1 so that I could put another system on eMMC.
Any ideas howto fix?