|
2010-06-12
, 05:41
|
Posts: 10 |
Thanked: 5 times |
Joined on Jun 2010
|
#932
|
|
2010-06-12
, 05:49
|
|
Posts: 1,187 |
Thanked: 816 times |
Joined on Apr 2010
@ Australia
|
#933
|
|
2010-06-12
, 06:18
|
Posts: 10 |
Thanked: 5 times |
Joined on Jun 2010
|
#934
|
|
2010-06-12
, 06:54
|
|
Posts: 1,187 |
Thanked: 816 times |
Joined on Apr 2010
@ Australia
|
#935
|
"root" cd .. cd .. cd etc/bootmenu.d nano android.etc.item
The Following User Says Thank You to kingoddball For This Useful Post: | ||
|
2010-06-12
, 07:03
|
Posts: 208 |
Thanked: 17 times |
Joined on Jan 2010
@ Belgium
|
#936
|
|
2010-06-12
, 07:59
|
Posts: 10 |
Thanked: 5 times |
Joined on Jun 2010
|
#937
|
In the Application Manager:
1. Navigate to the application menu (tap the title bar)
2. Select ‘Application catalogs’
3. Select ‘New’
4. Enter a catalog name of ‘Maemo extras-devel’
5. Enter a web address of http://repository.maemo.org/extras-devel
6. Enter a distribution of ‘fremantle’
7. Enter components of ‘free non-free’
8. Select ‘Save’
sudo apt-get install nano
"root" cd .. cd .. cd etc/bootmenu.d nano android.etc.item
ITEM_NAME="Android (external SD, partition 2)" ITEM_ID="android3" ITEM_DEVICE="${EXT_CARD}p2" ITEM_MODULES="mbcache jbd ext3 fat vfat" ITEM_FSTYPE="ext3" ITEM_FSOPTIONS="noatime"
fdisk /dev/sdb <press return> o <press return> n <press return> p <press return> 1 <press return> <press return> +xM <press return> (x is the size of the partition in MB, a formality and not used by android so make it small asy 100) t <press return> c <press return> n <press return> p <press return> 2 <press return> <press enter> <press enter> w <press return> sudo mkdosfs /dev/sd*1 sudo mke2fs -j /dev/sd*2 -m0
mount /dev/sd*2 /mnt <press return> cd /mnt <press return> sudo tar xjvvpf *type NITDroid .tbz2 location here* <press return>
cd <press return> umount /mnt <press return>
dpkg -i *type loaction of .deb package here* <press return>
flasher-3.5 --enable-rd-mode --set-rd-flags=no-lifeguard-reset,no-ext-wd -f -k *type loaction if zImage kernel downloaded here* -R <press return>
The Following 4 Users Say Thank You to El_Poochino For This Useful Post: | ||
|
2010-06-12
, 08:36
|
Posts: 208 |
Thanked: 17 times |
Joined on Jan 2010
@ Belgium
|
#938
|
Worked like a charm, thanks. Must of been looking at ubuntu (fark knows what I mounted).
To try and give back now. Check for errors and if it's OK copy-paste it to nitdroid.com if it's required. Just mashed up all the guides in this thread. So none of this is mine.
Dual boot Maemo and Android.
You Need:
N900
microSD card (min 1GB)
Nokia microUSB to USB cable
PC with linux distro or liveCD
NITDroid rootfs and kernel (post 1)
Flasher http://wiki.maemo.org/Documentation/...mo_Flasher-3.5
Step one. Set up dual boot. On the N900 (by kingoddball)
1) Add extras devel repositry to your app manager. From maemo wiki.
http://wiki.maemo.org/Extras-devel
2)Find and install bootmenu-n900
http://maemo.org/packages/view/bootmenu-n900/
3)Install nano. Open terminal and type.
and type y when prompted.Code:sudo apt-get install nano
4) Setup boot config. In terminal type.
Using nano create the following.Code:"root" cd .. cd .. cd etc/bootmenu.d nano android.etc.item
Confirm it wrote the file (ctrl+o in nano) by typing ls.Code:ITEM_NAME="Android (external SD, partition 2)" ITEM_ID="android3" ITEM_DEVICE="${EXT_CARD}p2" ITEM_MODULES="mbcache jbd ext3 fat vfat" ITEM_FSTYPE="ext3" ITEM_FSOPTIONS="noatime"
Step 2. Setup SD card (by DJsteve) On PC
1) ID microSD card. In terminal use "dmesg". Look at the end of the long message. If using SD reader should show up by itself or if using N900 you should see a note of the N900 and it's main memory and your card. Will be in the form of sd* where * is a letter
2) Format microSD card. Type the following into terminal.
Again where * is the letter from 1). This can be done in gparted if you wish.Code:fdisk /dev/sdb <press return> o <press return> n <press return> p <press return> 1 <press return> <press return> +xM <press return> (x is the size of the partition in MB, a formality and not used by android so make it small asy 100) t <press return> c <press return> n <press return> p <press return> 2 <press return> <press enter> <press enter> w <press return> sudo mkdosfs /dev/sd*1 sudo mke2fs -j /dev/sd*2 -m0
3) Unpack Android. In terminal.
To find the location of tbz2 file, find it, right click -> properties and it's location will be in one of the tabs. ie if on usb it will be /media/disk/NITDroid.tbz2Code:mount /dev/sd*2 /mnt <press return> cd /mnt <press return> sudo tar xjvvpf *type NITDroid .tbz2 location here* <press return>
Once done, unmount.
Step 3. Flash Kernel. (By DJSteve). On PC.Code:cd <press return> umount /mnt <press return>
1) Insert microSD card into N900 if you need to.
2)Install flasher (if required). Download flasher .deb package. In terminal type.
3)Turn off the N900 if it is on then hold the 'u' key as you insert the usb cable (or reinsert). Nokia logo and USB logo should appear. Leave the keyboard open.Code:dpkg -i *type loaction of .deb package here* <press return>
4) On the PC in terminal type.
Same as with step two for the location of the kernel. Look at the N900. If everything is working then should see the boot menu, select Android and sit back and wait. Initial boot can take a long time.Code:flasher-3.5 --enable-rd-mode --set-rd-flags=no-lifeguard-reset,no-ext-wd -f -k *type loaction if zImage kernel downloaded here* -R <press return>
|
2010-06-12
, 08:43
|
Posts: 10 |
Thanked: 5 times |
Joined on Jun 2010
|
#939
|
The Following User Says Thank You to El_Poochino For This Useful Post: | ||
|
2010-06-12
, 08:47
|
Posts: 326 |
Thanked: 335 times |
Joined on Feb 2010
|
#940
|
Tags |
android, cool stuff, froyo on n900, nitdroid |
|
I have managed to get it to boot.. Would only boot with kernel 0.0.1.
Oddly enough using 0.0.1, it would only boot android after I REflash the kernel over again.
But it's now dual booting with 0.0.3.
Just need to find a way to turn R&D mode OFF and ON in Maemo!
YOU GUY'S A FREAKING AWESOME!!
Do we have an instruction for Android? Like what keys do what?
I had nothing on my desktop for ages.. I pressed a few keys and all these progs popped up.
Last edited by kingoddball; 2010-06-12 at 04:01.