![]() |
2011-10-01
, 12:52
|
Posts: 22 |
Thanked: 0 times |
Joined on Oct 2011
|
#3222
|
![]() |
2011-10-01
, 13:22
|
|
Posts: 1,918 |
Thanked: 3,118 times |
Joined on Oct 2010
@ My pants
|
#3223
|
![]() |
2011-10-01
, 17:21
|
Posts: 22 |
Thanked: 0 times |
Joined on Oct 2011
|
#3224
|
![]() |
2011-10-02
, 08:02
|
Posts: 8 |
Thanked: 2 times |
Joined on Jun 2009
|
#3225
|
![]() |
2011-10-03
, 12:21
|
Posts: 202 |
Thanked: 72 times |
Joined on Apr 2011
@ France 55
|
#3226
|
NITDroid can detect SD Card, just modify the "vold.fstab" file inside "/and/etc/" after installation.
The original line is like this (it will mount first partition of eMMC (MyDocs) as the SD Card).
This line is under "# eMMC" line. You need to add "#" before the "dev_mount" command (to make it as a comment line).Code:dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.1/mmc_host/mmc1
At the end of the file you should create new command (it will mount the first partition of the 'real' SD Card).Code:#dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.1/mmc_host/mmc1
Note:Code:dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.0/mmc_host/mmc0
dev_mount : is the mount command
sdcard : is the label
/mnt/sdcard : is the mount point
1 : is the partition of the SD Card
/devices/platform/mmci-omap-hs.0/mmc_host/mmc0 : is the 'real' SD Card device
/devices/platform/mmci-omap-hs.1/mmc_host/mmc1 : is the first partition of the eMMC (MyDocs) (this is the original "vold.fstab" file)
![]() |
2011-10-04
, 01:56
|
Posts: 115 |
Thanked: 98 times |
Joined on Aug 2011
|
#3227
|
I installed nitdoid without any problem on my 4G card(class2).
A monkey could do that !
Thanks a lot.
I'd like to do that ( i don't want to see my "MyDocs" 's files)
I tried to do that, but i can't cd to /and/etc/ , did i have to be root or something like that ? How can i do that ?
Is there a way to use nitroid without using the maemo MyDocs ? Only with the memory card ?
And , i don't receive sms/mms, i don't know why. Maybe it's a problem from my telecom.
Thanks.
Edit: i tried to "mount /dev/mmcblk1p2 /and -o noatime" , but :failed:N o such file or directory.
![]() |
2011-10-04
, 02:01
|
Posts: 432 |
Thanked: 544 times |
Joined on Feb 2011
|
#3228
|
For kernel-power multiboot:
http://www.mediafire.com/?t3mdemq1hj7v5ur
Unrar this archive to ./MyDocs, then:
Kudos Mido.FayadCode:root mount /home /and dpkg -i /home/user/MyDocs/multiboot-0.2.11-kernel-power-46-Android-Kernel/*
![]() |
2011-10-04
, 11:11
|
Posts: 115 |
Thanked: 98 times |
Joined on Aug 2011
|
#3229
|
![]() |
2011-10-04
, 11:49
|
Posts: 115 |
Thanked: 98 times |
Joined on Aug 2011
|
#3230
|
root leafpad /and/etc/vold.fstab
## Vold 2.0 fstab ## - San Mehat (san@android.com) ## ####################### ## Regular device mount ## ## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...> ## label - Label for the volume ## mount_point - Where the volume will be mounted ## part - Partition # (1 based), or 'auto' for first usable partition. ## <sysfs_path> - List of sysfs paths to source devices ###################### ## Example of a standard sdcard mount for the emulator / Dream # Mounts the first usable partition of the specified device #dev_mount sdcard /mnt/sdcard auto /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1 ## Example of a dual card setup # dev_mount left_sdcard /sdcard1 auto /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1 # dev_mount right_sdcard /sdcard2 auto /devices/platform/goldfish_mmc.1 /devices/platform/msm_sdcc.3/mmc_host/mmc1 ## Example of specifying a specific partition for mounts # dev_mount sdcard /sdcard 2 /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1 # # Nokia N900 specific # # eMMC #dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.1/mmc_host/mmc1 # microSD #dev_mount sdcard_ext /mnt/extsd 1 /devices/platform/mmci-omap-hs.0/mmc_host/mmc0 # This is my custom command dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.0/mmc_host/mmc0
root cd /home/user/MyDocs/ wget http://http.us.debian.org/debian/pool/main/u/util-linux/util-linux_2.13.1.1-1_armel.deb mkdir -p /home/user/util-linux /home/user/bin cp /home/user/MyDocs/util-linux_2.13.1.1-1_armel.deb /home/user/util-linux cd /home/user/util-linux dpkg-deb -x util-linux_2.13.1.1-1_armel.deb root cp root/sbin/fdisk /home/user/bin/ cd .. rm -rf util-linux
root umount /media/mmc1 fdisk /dev/mmcblk1
d 1
n p 1 First cylinder: 2 Last cylinder: +<size in MB>M
n p 2 First cylinder: [Enter] Last cylinder: [Enter]
t 1 0c t 2 0c
w reboot
root mkfs.vfat -F 32 /dev/mmcblk1p1 mkfs.vfat -F 32 /dev/mmcblk1p2 reboot
root leafpad /and/etc/vold.fstab
## Vold 2.0 fstab ## - San Mehat (san@android.com) ## ####################### ## Regular device mount ## ## Format: dev_mount <label> <mount_point> <part> <sysfs_path1...> ## label - Label for the volume ## mount_point - Where the volume will be mounted ## part - Partition # (1 based), or 'auto' for first usable partition. ## <sysfs_path> - List of sysfs paths to source devices ###################### ## Example of a standard sdcard mount for the emulator / Dream # Mounts the first usable partition of the specified device #dev_mount sdcard /mnt/sdcard auto /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1 ## Example of a dual card setup # dev_mount left_sdcard /sdcard1 auto /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1 # dev_mount right_sdcard /sdcard2 auto /devices/platform/goldfish_mmc.1 /devices/platform/msm_sdcc.3/mmc_host/mmc1 ## Example of specifying a specific partition for mounts # dev_mount sdcard /sdcard 2 /devices/platform/goldfish_mmc.0 /devices/platform/msm_sdcc.2/mmc_host/mmc1 # # Nokia N900 specific # # eMMC #dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.1/mmc_host/mmc1 # microSD #dev_mount sdcard_ext /mnt/extsd 1 /devices/platform/mmci-omap-hs.0/mmc_host/mmc0 # This is my custom command dev_mount sdcard /mnt/sdcard 2 /devices/platform/mmci-omap-hs.0/mmc_host/mmc0
mkdir /media/mmc2 mount /dev/mmcblk1p2 /media/mmc2
dev_mount <label> <mount point> <partition> <device>
dev_mount sdcard /mnt/sdcard 1 /devices/platform/mmci-omap-hs.1/mmc_host/mmc1
dev_mount sdcard_ext /mnt/extsd 4 /devices/platform/mmci-omap-hs.0/mmc_host/mmc0
The Following 4 Users Say Thank You to AWasisto For This Useful Post: | ||
![]() |
Tags |
community win, mor*nicindians, nitdroid |
|
but i just simply dont get it, why it is so hard for others to install nitrdroid. i still remember my first nitdroid..i managed to install it without any experience on xterm whatsoever.
ammyt has already giving the tutorial on how to install it and now with auto-installer everything is just a click away. if people still cant install it.....u dont deserve to use n900.
*can wait for 2.3.5