|
2007-02-06
, 00:50
|
Posts: 7 |
Thanked: 0 times |
Joined on Feb 2007
|
#42
|
|
2007-02-06
, 02:32
|
Posts: 3,401 |
Thanked: 1,255 times |
Joined on Nov 2005
@ London, UK
|
#43
|
|
2007-02-06
, 06:17
|
Posts: 152 |
Thanked: 6 times |
Joined on Dec 2006
|
#44
|
|
2007-02-06
, 07:49
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#45
|
Well you could get by w/o the card reader, you can use your N800 as a reader when your card isn't inuse.
|
2007-02-06
, 08:23
|
Posts: 152 |
Thanked: 6 times |
Joined on Dec 2006
|
#46
|
Are you sure? I guess it makes available only specific partition from the card, not whole card. So you can't partition since you don't see partition table from PC.
This may work (have not tried)
http://sebas-nokia770.blogspot.com/2...ithout-pc.html
|
2007-02-06
, 08:32
|
|
Posts: 87 |
Thanked: 1 time |
Joined on Mar 2006
|
#47
|
Hi can anyone tell me if it is possible to repartition SD/MMC card in the N800 if you do not have linux PC and/or a card reader.
|
2007-02-06
, 11:48
|
|
Posts: 91 |
Thanked: 2 times |
Joined on Jan 2007
@ Spain
|
#48
|
Hi can anyone tell me if it is possible to repartition SD/MMC card in the N800 if you do not have linux PC and/or a card reader. I have tried following
http://maemo.org/maemowiki/ExtendedR...ht=%28fdisk%29
and although cfdisk is not in the same place it does not work. As I have stated before I am new to Linux and am learning slowly. I have searched here and the web but cannot find a useable solution so far. Thanks in advance for any pointers.
Regards
Arch
|
2007-02-07
, 05:13
|
|
Posts: 91 |
Thanked: 2 times |
Joined on Jan 2007
@ Spain
|
#49
|
Hi can anyone tell me if it is possible to repartition SD/MMC card in the N800 if you do not have linux PC and/or a card reader. I have tried following
http://maemo.org/maemowiki/ExtendedR...ht=%28fdisk%29
and although cfdisk is not in the same place it does not work. As I have stated before I am new to Linux and am learning slowly. I have searched here and the web but cannot find a useable solution so far. Thanks in advance for any pointers.
|
2007-02-07
, 08:16
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#50
|
boot process is
1. some early boot loader directly on omap chip with nand flash chip driver
2. one or more bootloaders in /dev/mtd0 which initialize higher level hardware (video chip at least) and provides flashing support over USB and in normal situation just loads linux kernel from mtd2
3. linux kernel (with jffs2 driver) with root device set to mtd3 (=initfs)
4. /linuxrc in (uclibc based) initfs which starts dsme, bme (battery management) and loads firmware to wlan and bt chips and finally reads root device from config partition, mounts it, then changes root to it via pivot_root (i.e. exchages / and /mnt/initfs mount points) and runs /sbin/init
5. /sbin/init runs normal /etc/rc* scripts
what is possible is to hack kernel in mtd2 to
1. boot something else then initfs in mtd3 (i.e. directly some mmc partition) - looks like the easy one
and/or
2. allow to load and jump to different kernel (from mmc) - this is the harder one but already implemented in LAB (Linux As Bootloader) in handhelds.org CVS