maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Alternatives (https://talk.maemo.org/forumdisplay.php?f=36)
-   -   [Android] NITDroid V2 Help/Tutorial Topic - Updated (https://talk.maemo.org/showthread.php?t=56524)

law138 2010-06-30 15:40

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
1 Attachment(s)
Im a newb what im i doing wrong ?

IzzehO 2010-06-30 15:47

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
Oh come on.... look and think! You copied a shortened link! At least go to the effort of typing out the full url before posting problems.

Descalzo 2010-06-30 20:21

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
After using the installer.sh file, (just to test it out, and to try the new rootfs), I get this:
Choose bootup option:
2)MMC
9)Start a shell

I read up on this and it looks like people get this for poorly seated sd cards or bad .item files in bootmenu.d but I've checked them.

ToJa92 2010-06-30 21:23

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
Quote:

Originally Posted by Descalzo (Post 736066)
After using the installer.sh file, (just to test it out, and to try the new rootfs), I get this:
Choose bootup option:
2)MMC
9)Start a shell

I read up on this and it looks like people get this for poorly seated sd cards or bad .item files in bootmenu.d but I've checked them.

Does it look like the MMC is mounted? After you see the menu try removing the battery cover, then put it back and see if you see any output regarding the memory card.

Descalzo 2010-06-30 21:39

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
Quote:

Originally Posted by ToJa92 (Post 736150)
Does it look like the MMC is mounted? After you see the menu try removing the battery cover, then put it back and see if you see any output regarding the memory card.

Yep. I take it off and t saus cover is open, card is now inaccessible

I put it on and it says cover is closed, blah blah blah, it recognizes the size and it says on the last line
mmcblk0: p1 p2

I am puzzled, because I think that's what it's supposed to say.

I was thinking about doing it over from the start like I did with eclair and the second froyo build, but I think this might be useful in case this is a real problem with the script.

ToJa92 2010-06-30 21:45

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
Weird... It works for some and it doesn't work for others.
Can you do
Code:

sfdisk -l
on your N900 in Maemo and give me the output?

ZogG 2010-06-30 21:53

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
i have problems with my sd card, when i create fat and than ext3 partions than i can't mount second one (tried on ubuntu/gentoo/maemo, the problem is in sd card). so i made 1.8 gib ext3 partion as first one and 6.2 gib fat32 partion second one, changed
ITEM_NAME="Android (external SD, partition 2)"
ITEM_ID="android2"
ITEM_DEVICE="${EXT_CARD}p2"
to
ITEM_NAME="Android (external SD, partition 1)"
ITEM_ID="android2"
ITEM_DEVICE="${EXT_CARD}p1"
but it doesn't boot. have some gotboot error where i have to choose betwen MMC and shell ? any ideas?

Descalzo 2010-06-30 21:56

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
Quote:

Originally Posted by ToJa92 (Post 736188)
Weird... It works for some and it doesn't work for others.
Can you do
Code:

sfdisk -l
on your N900 in Maemo and give me the output?

Here goes:

Code:

Disk /dev/mmcblk0: 977024 cylinders, 4 heads, 16 sectors/track
Units = cylinders of 32768 bytes, blocks of 1024 bytes, counting from 0

  Device Boot Start    End  #cyls    #blocks  Id  System
/dev/mmcblk0p1          1  884864  884864  28315648    c  W95 FAT32 (LBA)
/dev/mmcblk0p2    884865  950400  65536    2097152  83  Linux
/dev/mmcblk0p3    950401  974976  24576    786432  82  Linux swap / Solaris
/dev/mmcblk0p4          0      -      0          0    0  Empty

Disk /dev/mmcblk1: 121008 cylinders, 4 heads, 16 sectors/track
Units = cylinders of 32768 bytes, blocks of 1024 bytes, counting from 0

  Device Boot Start    End  #cyls    #blocks  Id  System
/dev/mmcblk1p1          0+  3199    3200-    102399+  c  W95 FAT32 (LBA)
/dev/mmcblk1p2      3200  121007  117808    3769856  83  Linux
/dev/mmcblk1p3          0      -      0          0    0  Empty
/dev/mmcblk1p4          0      -      0          0    0  Empty


ToJa92 2010-06-30 22:01

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
Quote:

Originally Posted by Descalzo (Post 736209)
Here goes:

Code:

Disk /dev/mmcblk0: 977024 cylinders, 4 heads, 16 sectors/track
Units = cylinders of 32768 bytes, blocks of 1024 bytes, counting from 0

  Device Boot Start    End  #cyls    #blocks  Id  System
/dev/mmcblk0p1          1  884864  884864  28315648    c  W95 FAT32 (LBA)
/dev/mmcblk0p2    884865  950400  65536    2097152  83  Linux
/dev/mmcblk0p3    950401  974976  24576    786432  82  Linux swap / Solaris
/dev/mmcblk0p4          0      -      0          0    0  Empty

Disk /dev/mmcblk1: 121008 cylinders, 4 heads, 16 sectors/track
Units = cylinders of 32768 bytes, blocks of 1024 bytes, counting from 0

  Device Boot Start    End  #cyls    #blocks  Id  System
/dev/mmcblk1p1          0+  3199    3200-    102399+  c  W95 FAT32 (LBA)
/dev/mmcblk1p2      3200  121007  117808    3769856  83  Linux
/dev/mmcblk1p3          0      -      0          0    0  Empty
/dev/mmcblk1p4          0      -      0          0    0  Empty


Can you do as root:
Code:

mkdir /and
Code:

mount /dev/mmcblk1p2 /and
Code:

cd /and
Code:

ls -a
And see if you see alot directories.

ZogG 2010-06-30 22:23

Re: [Android] NITDroid V2 Help/Tutorial Topic
 
ToJa92, is it possible to have first partion for android and second for fat32?


All times are GMT. The time now is 07:21.

vBulletin® Version 3.8.8