New: XDA launches forum for app developers. Discuss coding, tools, marketing, and more.
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
grobi99
Old
#21  
grobi99's Avatar
Member
Thanks Meter 7
Posts: 47
Join Date: Dec 2011
Quote:
Originally Posted by stevendeb25 View Post
I having problems with download. Anyone else managed to download?

Sent from my MB860 using XDA Premium App
i'll send you a pm, when my upload to Google drive is finished

Sent from my MB855 using xda premium
 
sendust7
Old
#22  
Senior Member - OP
Thanks Meter 684
Posts: 323
Join Date: Oct 2011
Location: California

 
DONATE TO ME
Quote:
Originally Posted by sendust7 View Post
I fixed the link and reposted it. Sorry for the inconvenience.

http://www.mediafire.com/download.php?0ik4u51shs5c1sa
Quote:
Originally Posted by stevendeb25 View Post
I having problems with download. Anyone else managed to download?

Sent from my MB860 using XDA Premium App
The link worked on my computer. I'm not sure about downloading direct to phone. Still reviewing stable alternatives...

Motorola Atrix 4g Dual Boot emmc / sdcard ~ SG Note 10.1 JB ~ SGS 4 JB422

Like my work? Click THANKS!
Think you like my work? Read my other threads --- you may change your mind
Not sure you like my work? Stay tuned
Don't like my work? Well... I tried
 
sendust7
Old
#23  
Senior Member - OP
Thanks Meter 684
Posts: 323
Join Date: Oct 2011
Location: California

 
DONATE TO ME
Quote:
Originally Posted by delewer View Post
If i flash without wipe anythink (suppose keep current Faux Kernel), and boot on CM7.... AND flash CM7 RC2... and flash Kernel Faux...

Work ? Don't work ?

When switch CM7 => CM9 and CM9 => CM7 ... keep adress book, and another settings ?

Thx ... Good work !!

(For ".img" do you use "mkyaffs2image" ??)
Quote:
Originally Posted by sendust7 View Post
Presently the /sdcard/Boot/CM directories contain specific boot image fielnames. Tomorrow I will work on making these filenames more generic. But for now you can try out a different boot image file for CM7 by replacing the current one with yours. Make sure to modify the companion "boot-rom.sh" shell script to reflect your boot image filename.
Sorry, I misled you : If you plan to swap the boot image file in /sdcard/Boot/CM7 for another image, you must first: 1) unpack the new image to kernel file and ramdisk directory, 2) modify “init.olympus.rc” inside ramdisk to mount /system, /cache and /data on sdcard instead of on emmc (see code below), and then 3) repack the boot image from kernel and modified ramdisk.

Code:
on fs
# mount mtd partitions
    # Mount /system rw first to give the filesystem a chance to save a checkpoint
    #mount ext4 /dev/block/mmcblk0p12 /system noatime nodiratime wait ro barrier=1
    #mount ext4 /dev/block/mmcblk0p16 /data nosuid nodev noatime nodiratime wait barrier=1 noauto_da_alloc
    #mount ext4 /dev/block/mmcblk0p15 /cache nosuid nodev noatime nodiratime wait barrier=1 noauto_da_alloc
    mount ext4 /dev/block/mmcblk1p2 /system noatime nodiratime wait ro barrier=1
    mount ext4 /dev/block/mmcblk1p4 /data nosuid nodev noatime nodiratime wait barrier=1 noauto_da_alloc
    mount ext4 /dev/block/mmcblk1p3 /cache nosuid nodev noatime nodiratime wait barrier=1 noauto_da_alloc
Everyone: Today I am cleaning up the boot files in my flashable zip while simplifying the Android Wiki Perl scripts that are used to unpack/repack boot image files.

http://android-dls.com/wiki/index.ph...ck_Boot_Images

Hopefully the revised scripts will make it a little easier to modify boot images.

Motorola Atrix 4g Dual Boot emmc / sdcard ~ SG Note 10.1 JB ~ SGS 4 JB422

Like my work? Click THANKS!
Think you like my work? Read my other threads --- you may change your mind
Not sure you like my work? Stay tuned
Don't like my work? Well... I tried
 
Bruce Lee
Old
#24  
Bruce Lee's Avatar
Recognized Contributor
Thanks Meter 299
Posts: 1,861
Join Date: Jan 2011
Location: Ohio
how do you reboot to cm7? got cm9 to boot.

Sent with Tapatalk from my Blackberry Playbook


Phone:
ATT LTE Dual Core Samsung Galaxy SIII Rooted, 10.1 CyanogenMod ROM RC5

Tablet:
32GB Nexus 7 running Stock 4.2.2

Sort of Android
Acer C7 Chromebook

Past Devices:
ATT Motorola Dual Core Atrix 4G
ATT Sony Ericsson Xperia X10
Unlocked HTC G1
Blackberry Playbook

My PS3 Controller to SGSIII Guide:
http://forum.xda-developers.com/show....php?t=1780932

Google+ page for chatty XDA members!
https://plus.google.com/u/0/b/102405...48467738/posts

The SGSIII Group: http://forum.xda-developers.com/group.php?groupid=733
 
sendust7
Old
(Last edited by sendust7; 15th May 2012 at 04:10 AM.) Reason: Add sdcard partition map.
#25  
Senior Member - OP
Thanks Meter 684
Posts: 323
Join Date: Oct 2011
Location: California

 
DONATE TO ME
Quote:
Originally Posted by Voelker45 View Post
how do you reboot to cm7? got cm9 to boot.

Sent with Tapatalk from my Blackberry Playbook
Make sure CM7 is installed by checking the /system, /cache and /data partitions on /sdcard.

Then see my thread here... http://forum.xda-developers.com/show....php?t=1645344

The flashable zip should have already populated /sdcard/Boot with the required boot files. Then it's just a matter of configuring Script Manager.

In recovery mode, with phone connected to computer, enter the following mount and df commands to view the sdcard partition map. I used GParted on Ubuntu to create the ext4 partitions.

Code:
root@ubuntu:~# adb shell
~ # mount /dev/block/mmcblk1p2 /system
~ # mount /dev/block/mmcblk1p3 /cache
~ # mount /dev/block/mmcblk1p4 /data
~ # df /dev/block/mmcblk1
Filesystem           1K-blocks      Used Available Use% Mounted on
df: /dev/block/mmcblk1: can't find mount point

~ # df /dev/block/mmcblk1p2
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/block/mmcblk1p2    332600    142556    190044  43% /system

~ # df /dev/block/mmcblk1p3
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/block/mmcblk0p15
                        665200     57456    573952   9% /cache

~ # df /dev/block/mmcblk1p4
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/block/mmcblk1p4   2130688    158724   1863728   8% /data
~ #
Let me know if you have any questions.

Motorola Atrix 4g Dual Boot emmc / sdcard ~ SG Note 10.1 JB ~ SGS 4 JB422

Like my work? Click THANKS!
Think you like my work? Read my other threads --- you may change your mind
Not sure you like my work? Stay tuned
Don't like my work? Well... I tried
 
Bruce Lee
Old
#26  
Bruce Lee's Avatar
Recognized Contributor
Thanks Meter 299
Posts: 1,861
Join Date: Jan 2011
Location: Ohio
Quote:
Originally Posted by sendust7 View Post
Make sure CM7 is installed by checking the /system, /cache and /data partitions on /sdcard.

Then see my thread here... http://forum.xda-developers.com/show....php?t=1645344

The flashable zip should have already populated /sdcard/Boot with the required boot files. Then it's just a matter of configuring Script Manager.

In recovery mode, with phone connected to computer, enter the following mount and df commands to view the sdcard partition map. I used GParted on Ubuntu to create the ext4 partitions.

Code:
root@ubuntu:~# adb shell
~ # mount /dev/block/mmcblk1p2 /system
~ # mount /dev/block/mmcblk1p3 /cache
~ # mount /dev/block/mmcblk1p4 /data
~ # df /dev/block/mmcblk1
Filesystem           1K-blocks      Used Available Use% Mounted on
df: /dev/block/mmcblk1: can't find mount point

~ # df /dev/block/mmcblk1p2
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/block/mmcblk1p2    332600    142556    190044  43% /system

~ # df /dev/block/mmcblk1p3
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/block/mmcblk0p15
                        665200     57456    573952   9% /cache

~ # df /dev/block/mmcblk1p4
Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/block/mmcblk1p4   2130688    158724   1863728   8% /data
~ #
Let me know if you have any questions.
Tried the script manager configurations you wanted and no successful dual boot. An am using an old apk. though. What could of went wrong, if I did the right configurations.

Sent from my Atrix with XDA Premium


Phone:
ATT LTE Dual Core Samsung Galaxy SIII Rooted, 10.1 CyanogenMod ROM RC5

Tablet:
32GB Nexus 7 running Stock 4.2.2

Sort of Android
Acer C7 Chromebook

Past Devices:
ATT Motorola Dual Core Atrix 4G
ATT Sony Ericsson Xperia X10
Unlocked HTC G1
Blackberry Playbook

My PS3 Controller to SGSIII Guide:
http://forum.xda-developers.com/show....php?t=1780932

Google+ page for chatty XDA members!
https://plus.google.com/u/0/b/102405...48467738/posts

The SGSIII Group: http://forum.xda-developers.com/group.php?groupid=733
 
sendust7
Old
#27  
Senior Member - OP
Thanks Meter 684
Posts: 323
Join Date: Oct 2011
Location: California

 
DONATE TO ME
Quote:
Originally Posted by Voelker45 View Post
Tried the script manager configurations you wanted and no successful dual boot. An am using an old apk. though. What could of went wrong, if I did the right configurations.

Sent from my Atrix with XDA Premium
OK, I'll PM you tomorrow morning.

Motorola Atrix 4g Dual Boot emmc / sdcard ~ SG Note 10.1 JB ~ SGS 4 JB422

Like my work? Click THANKS!
Think you like my work? Read my other threads --- you may change your mind
Not sure you like my work? Stay tuned
Don't like my work? Well... I tried
The Following User Says Thank You to sendust7 For This Useful Post: [ Click to Expand ]
 
stokehall
Old
#28  
Member
Thanks Meter 1
Posts: 30
Join Date: Sep 2010
Im a little unsure what I should do with the zip. Is the only thing required of me to format and partition the sdcard, and then flash the zip. Or have I missed something?

Sent from my MB860 using XDA
 
stokehall
Old
#29  
Member
Thanks Meter 1
Posts: 30
Join Date: Sep 2010
Quote:
Originally Posted by sendust7 View Post
In recovery mode, with phone connected to computer, enter the following mount and df commands to view the sdcard partition map. I used GParted on Ubuntu to create the ext4 partitions.

Code:
root@ubuntu:~# adb shell
~ # mount /dev/block/mmcblk1p2 /system
~ # mount /dev/block/mmcblk1p3 /cache
~ # mount /dev/block/mmcblk1p4 /data
~ # df /dev/block/mmcblk1
Filesystem 1K-blocks Used Available Use% Mounted on
df: /dev/block/mmcblk1: can't find mount point

~ # df /dev/block/mmcblk1p2
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/block/mmcblk1p2 332600 142556 190044 43% /system

~ # df /dev/block/mmcblk1p3
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/block/mmcblk0p15
665200 57456 573952 9% /cache

~ # df /dev/block/mmcblk1p4
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/block/mmcblk1p4 2130688 158724 1863728 8% /data
~ #
Let me know if you have any questions.
Tried the script manager configurations you wanted and no successful dual boot. An am using an old apk. though. What could of went wrong, if I did the right configurations.
This was my result I don't think it looks right

C:\android-sdk-windows\platform-tools>adb shell
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
~ # mount /dev/block/mmcblk1p2 /system
mount /dev/block/mmcblk1p2 /system
~ # mount /dev/block/mmcblk1p3 /cache
mount /dev/block/mmcblk1p3 /cache
~ # mount /dev/block/mmcblk1p4 /data
mount /dev/block/mmcblk1p4 /data
~ # df /dev/block/mmcblk1p2
df /dev/block/mmcblk1p2
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/block/mmcblk1p2 703628 149012 554616 21% /system
~ # df /dev/block/mmcblk1p3
df /dev/block/mmcblk1p3
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/block/mmcblk0p15
2559229 8194 2414483 0% /cache
~ # df /dev/block/mmcblk1p4
df /dev/block/mmcblk1p4
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/block/mmcblk1p4 3888136 220 3887916 0% /data

when I use the scripts I get a syntax error: 'elif' unexpected
I dont think CM7 has installed and I've tried reinstalling
 
sendust7
Old
#30  
Senior Member - OP
Thanks Meter 684
Posts: 323
Join Date: Oct 2011
Location: California

 
DONATE TO ME
Try flashing a valid CM7.2.0 RC1 "boot.img" from computer to phone: With phone USB-connected to a computer with a fastboot tool (e.g. under Android SDK Platform Tools) enter:

fastboot devices (make sure phone is recognized)
fastboot flash boot /path/to/boot.img
fastboot reboot

Helpful link: http://www.freeyourandroid.com/guide/fastboot-guide

If CM7 does not boot, most likely one or more of your sdcard ext4 partitions does not exist or is corrupted.

Recommended partition sizes (consistent with emmc partitions):

/dev/block/mmcblk1p2 (330MB) --- /system
/dev/block/mmcblk1p3 (660MB) --- /cache
/dev/block/mmcblk1p4 (2GB) --- /data

Today I will clarify the instructions in my thread and post a valid CM7 boot.img.

Hope this helps...

Motorola Atrix 4g Dual Boot emmc / sdcard ~ SG Note 10.1 JB ~ SGS 4 JB422

Like my work? Click THANKS!
Think you like my work? Read my other threads --- you may change your mind
Not sure you like my work? Stay tuned
Don't like my work? Well... I tried

The Following 2 Users Say Thank You to sendust7 For This Useful Post: [ Click to Expand ]