The Following User Says Thank You to Enrico Menotti For This Useful Post: | ||
![]() |
2017-03-05
, 15:46
|
Posts: 110 |
Thanked: 363 times |
Joined on May 2014
|
#22
|
The Following User Says Thank You to pythoneye2 For This Useful Post: | ||
![]() |
2017-03-05
, 16:17
|
Posts: 9 |
Thanked: 18 times |
Joined on Mar 2017
|
#23
|
The Following 2 Users Say Thank You to Enrico Menotti For This Useful Post: | ||
![]() |
2017-03-05
, 16:59
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#24
|
setenv mmckernfile uImage; setenv mmcinitrdfile uInitrd; setenv bootargs rootdelay root=/dev/ram0; run initrdload; run kernload; run kerninitrdboot;
$ mkimage -A arm -O linux -T kernel -C none -a 80008000 -e 80008000 -n "name_of_kernel" -d /path/to/kernel uImage
$ mkimage -A arm -O linux -T ramdisk -C none -a 0 -e 0 -n "name_of_initrd" -d /path/to/initrd uInitrd
The Following 3 Users Say Thank You to pali For This Useful Post: | ||
![]() |
2017-03-05
, 17:33
|
Posts: 9 |
Thanked: 18 times |
Joined on Mar 2017
|
#25
|
The Following User Says Thank You to Enrico Menotti For This Useful Post: | ||
![]() |
2017-03-05
, 22:28
|
Posts: 9 |
Thanked: 18 times |
Joined on Mar 2017
|
#26
|
diskutil list
The Following User Says Thank You to Enrico Menotti For This Useful Post: | ||
I post here since I am having boot issues too. I reflashed the N900, installed u-boot and was trying to get NITDroid work, but messed up something and now I can only access u-boot terminal. I cannot reflash the phone since when connected to a computer it is not recognised.
I am trying to create a bootable SD card and boot from there, but I don't know how to unpack the RX-51_2009SE_20.2010.36-2_PR_COMBINED_MR0_ARM.bin file to get the kernel.
Another option would be to directly flash from the SD card.
Any help?
UPDATE: I have been able to unpack the .bin file by issuing
flasher-3.5 -F ....bin -u
So now I have the kernel. I have extracted the zImage and converted it to uImage by mkimage (utility part of the u-boot suite). I have written a short script for starting the kernel and made it into image. Copied all to sd card (single partition). Boots, but hangs and reboots.
At this point I need some advice on how to pass correct parameters to the kernel in order to gain access to the file system.
Last edited by Enrico Menotti; 2017-03-05 at 01:38. Reason: Update