Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
$aur0n
Old
#81  
$aur0n's Avatar
Senior Member - OP
Thanks Meter 495
Posts: 1,453
Join Date: Nov 2010

 
DONATE TO ME
Quote:
Originally Posted by hurrpancakes View Post
/dev/sdb3 is my storage partiton (movies, files, etc), and is currently formatted as ext4. What do I have to do to be able to access it as if it were fat32?
Extract this in /system/bin/ and add those lines at the very end of /init.rc

Code:
# Some final stuff
service mount_sdcard /system/bin/mount_sdcard.sh
   oneshot
This is something I use now, and I'll put with other changes in next release - it's a script that mounts third ext4 partition under /mnt/storage/sdcard AFTER Vold mount's /mnt/storage.
The Following User Says Thank You to $aur0n For This Useful Post: [ Click to Expand ]
 
mchipser
Old
#82  
Junior Member
Thanks Meter 1
Posts: 24
Join Date: Dec 2010
I finally got a MicroSDHC card to test with... I finally got it working.. but there are a few issues that I seem to be having..

1. when booting from sd I still get the SD card broken error.. (not an issue just annoying)
2. I am only getting 1500-1600 scores when using Quadrant.. This is no different then the stock memory.. This may be due to me using a class four card however

I know it is working since terminal is available to get root access typing su..
 
$aur0n
Old
#83  
$aur0n's Avatar
Senior Member - OP
Thanks Meter 495
Posts: 1,453
Join Date: Nov 2010

 
DONATE TO ME
Quote:
Originally Posted by mchipser View Post
1. when booting from sd I still get the SD card broken error.. (not an issue just annoying)
2. I am only getting 1500-1600 scores when using Quadrant.. This is no different then the stock memory.. This may be due to me using a class four card however
1. Do as in howto says - edit vold.fstab
2. Make sure you use overdrive cpu settings (Settings->Device info->Power management) (1Ghz)
 
henrylim
Old
#84  
Senior Member
Thanks Meter 1
Posts: 273
Join Date: Jul 2004
Quote:
Originally Posted by $aur0n View Post
Extract this in /system/bin/ and add those lines at the very end of /init.rc

Code:
# Some final stuff
service mount_sdcard /system/bin/mount_sdcard.sh
   oneshot
This is something I use now, and I'll put with other changes in next release - it's a script that mounts third ext4 partition under /mnt/storage/sdcard AFTER Vold mount's /mnt/storage.

Pardon for the newbie question, I suppose I can modify the script and it will work for fat32 partition?

mount_dev=/dev/block/mmcblk2p3 (assuming that this is fat32 partition instead of ext4)
mount_opt="-t fat32 -o noatime"
= Nexus One = iPhone 4 = Archos 70 =
 
blazingwolf
Old
#85  
blazingwolf's Avatar
Senior Member
Thanks Meter 387
Posts: 2,062
Join Date: Nov 2006

 
DONATE TO ME
Since we have root with this ROM the instructions linked should be able to get adhoc working as well as normal WiFi. It's worth a shot anyway.

http://www.slatedroid.com/index.php?topic=4505.0
HTC Incredible 4G LTE, Notion Ink Adam, Acer IconiaTab A500, Pandigital Novel
 
$aur0n
Old
#86  
$aur0n's Avatar
Senior Member - OP
Thanks Meter 495
Posts: 1,453
Join Date: Nov 2010

 
DONATE TO ME
Quote:
Originally Posted by henrylim View Post
mount_dev=/dev/block/mmcblk2p3 (assuming that this is fat32 partition instead of ext4)
mount_opt="-t fat32 -o noatime"
Not exactly like this - but close. Please - just wait I've already made it auto recognizing partition type - but requires some more tools/libraries installed that I can't share without rest of system (it's pointless) - read changelog in first post.
 
$aur0n
Old
#87  
$aur0n's Avatar
Senior Member - OP
Thanks Meter 495
Posts: 1,453
Join Date: Nov 2010

 
DONATE TO ME
Quote:
Originally Posted by blazingwolf View Post
Since we have root with this ROM the instructions linked should be able to get adhoc working as well as normal WiFi. It's worth a shot anyway.
http://www.slatedroid.com/index.php?topic=4505.0
I'll give a try this AdhocAble.apk
 
kams912
Old
#88  
Junior Member
Thanks Meter 0
Posts: 3
Join Date: Dec 2010
I am not very knowledgeable regarding Linux, but I do have a system installed and have been attempting to partition my micro sd card. I have completed the Flash Kernel and Initramfs without any problems. But every time I boot to the Developer Edition is hangs on the 2nd splash screen. I’m sure I’m doing something wrong on my partitioning. Can someone post an idiot proof step by step guide for partitioning and exactly where to place the rootfs so I can boot to it? Thanks!
 
$aur0n
Old
#89  
$aur0n's Avatar
Senior Member - OP
Thanks Meter 495
Posts: 1,453
Join Date: Nov 2010

 
DONATE TO ME
Quote:
Originally Posted by kams912 View Post
I am not very knowledgeable regarding Linux, but I do have a system installed and have been attempting to partition my micro sd card. I have completed the Flash Kernel and Initramfs without any problems. But every time I boot to the Developer Edition is hangs on the 2nd splash screen. I’m sure I’m doing something wrong on my partitioning. Can someone post an idiot proof step by step guide for partitioning and exactly where to place the rootfs so I can boot to it? Thanks!
Fast (and dry run - so can be with some errors...) - please make sure what device is your sdcard (use 'dmesg') - assuming it's /dev/sdb and sdcard is 2GB or more.
Code:
su
fdisk /dev/sdb
p (shows partition)
d number (delete partition by number - delete all of them)
n (new partition)
p (as primary)
1 (as first partition)
1 (as first block)
+512M (as 0,5 GB size)
n
p
2
just enter
+1G (second partition done)
n
p
3
just enter
just enter
w (as write)
Then format it
Code:
su
mkfs.ext4 -O ^huge_file /dev/sdb1
mkfs.ext4 -O ^huge_file /dev/sdb2
mkfs.ext4 -O ^huge_file /dev/sdb3
mount /dev/sdb1 /mnt/usb (or some other mountpoint if /mnt/usb does not exist)
cd /mnt/usb
tar -zxf /pathtofile/rootfs.tar.gz
sync
umount /mnt/usb
Your done...
The Following 2 Users Say Thank You to $aur0n For This Useful Post: [ Click to Expand ]
 
cnewsgrp
Old
#90  
Senior Member
Thanks Meter 89
Posts: 841
Join Date: Mar 2008
Quote:
Originally Posted by cnewsgrp View Post
I read the whole thread and could not figure out. Can someone please help with following questions? These mainly pertain trying to figure out what we are doing

Lets assume I have a 16gb. So now I have Archos 70 with 256MB ram + 8 GB Internal memory + 16 GB SD card. Lets assume I go through successfully with the process. Here are my questions
  • What happens to the apps that I already had on my archos under /system/app? Do they get moved to new SD card?
  • Does the 8gb internal memory become available to me for my stuff? Music etc?
  • How to I revert to factory settings?
  • Can I install Market, adw.launcher, titanium backup, root explorer and other apps?

Apologize for newbie questions, I read the thread and could not figure out.
Can someone answer please?

 
Post Reply+
Tags
archos, ext4, gen8, root, urukdroid
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

report this ad
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Go to top of page...