Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
apapousek
Old
#1  
apapousek's Avatar
Senior Member - OP
Thanks Meter 180
Posts: 276
Join Date: Jul 2011

 
DONATE TO ME
Default CWM for Galaxy Player 5.0 US (YP-G70XAA)

Hello all,

I'm working on porting CWM to our beloved Galaxy Player 5.0 US edition. I'm loosely following the guide here. I cannot promise that I'll be able to port it successfully, but I can promise that I'll brick my device at least once.

tl;dr : This post says some guy is working on CWM. Woot!

-apapousek
 
azoller1
Old
#2  
azoller1's Avatar
Senior Member
Thanks Meter 996
Posts: 1,479
Join Date: Aug 2011
Location: Lenexa
Your sending it to the people are you? And good luck, I only wish I knew how to do this
DONT FORGET TO PRESS THE THANKS BUTTON!!

Device: LG Spectrum 16GB 4G
Rom: Running My Own Icy Fusion ROM
Kernel: Running Ortriggers Kernel

Device: Nexus 7 16GB
Rom: Running My Own Xylon Fusion ROM
Kernel: Running Imoseyon LeanKernel

MY DEV
GOO.IM FILES/FOLDERS
DEV-HOST FILES/FOLDERS

G+ COMMUNITY GOOGLE+ TWITTER FOLLOW
 
cramjammer
Old
#3  
Member
Thanks Meter 2
Posts: 67
Join Date: Oct 2010
Location: Indiana

 
DONATE TO ME
Apapouseck-

Are you a dev? PM me and give me your email address please. I have a question.

Sent from my Galaxy Nexus using xda premium
 
apapousek
Old
#4  
apapousek's Avatar
Senior Member - OP
Thanks Meter 180
Posts: 276
Join Date: Jul 2011

 
DONATE TO ME
Quote:
Originally Posted by azoller1 View Post
Your sending it to the people are you? And good luck, I only wish I knew how to do this
Of course I'm distributing it. Once I get a working copy, it's being thrown on github, or my own server, and given freely, open source, blah blah blah. No proprietary crap, except maybe enough drivers to get it up and running. But sources for those, too.
Quote:
Originally Posted by cramjammer View Post
Apapouseck-

Are you a dev? PM me and give me your email address please. I have a question.

Sent from my Galaxy Nexus using xda premium
Well, technically not a dev. I just like taking software, messing around with it, seeing what it can do. My email address is anthony@papousek.org
 
JeffR714
Old
#5  
JeffR714's Avatar
Senior Member
Thanks Meter 5
Posts: 203
Join Date: Mar 2010
Location: Philadelphia Pa
Can't wait

Sent from my YP-G70 using Xparent Blue Tapatalk
Samsung Galaxy Note (Verizon Wireless)
Samsung Chromebook
 
Entropy512
Old
#6  
Elite Recognized Developer
Thanks Meter 20794
Posts: 11,493
Join Date: Aug 2007
Location: Owego, NY

 
DONATE TO ME
That post, as it says, doesn't cover Samsung devices. It turns out that a while back, Koush made a commit to mkvendor.sh that allows it to operate without an example boot.img.

However, the problem is that there's a remaining bug in mkvendor.sh that TMPDIR is not set in the code path that is triggered when you don't specify boot.img

Right now I'm at a state where CWM starts and runs, but somehow it is treating the tilt sensor as volup/voldn input - so the thing scrolls eternally.
*so much sig updating needed*

My Github profile - Some Android stuff, some AVR stuff

An excellent post on "noobs vs. developers"

A few opinions on kernel development "good practices"

Note: I have chosen not to use XDA's "friends" feature - I will reject all incoming "friend" requests.

Code:
<MikeyMike01> Smali is a spawn of hell
<shoman94> ^^^ +!
Code:
<Entropy512> gotta be careful not to step on each other's work.  :)
<Bumble-Bee> thats true
<jerdog> compeete for donations
 
rumirand
Old
#7  
Senior Member
Thanks Meter 50
Posts: 165
Join Date: Oct 2011
Location: Santiago

 
DONATE TO ME
Quote:
Originally Posted by Entropy512 View Post
That post, as it says, doesn't cover Samsung devices. It turns out that a while back, Koush made a commit to mkvendor.sh that allows it to operate without an example boot.img.

However, the problem is that there's a remaining bug in mkvendor.sh that TMPDIR is not set in the code path that is triggered when you don't specify boot.img

Right now I'm at a state where CWM starts and runs, but somehow it is treating the tilt sensor as volup/voldn input - so the thing scrolls eternally.
Maybe you need the s3c-keypad file to correct this or changing somewhere in the source /dev/input/eventX to another one.
 
Entropy512
Old
#8  
Elite Recognized Developer
Thanks Meter 20794
Posts: 11,493
Join Date: Aug 2007
Location: Owego, NY

 
DONATE TO ME
Looks like I need to figure out how to filter out /dev/input/event1, and only pay attention to event4 and event5 (or just event4)
*so much sig updating needed*

My Github profile - Some Android stuff, some AVR stuff

An excellent post on "noobs vs. developers"

A few opinions on kernel development "good practices"

Note: I have chosen not to use XDA's "friends" feature - I will reject all incoming "friend" requests.

Code:
<MikeyMike01> Smali is a spawn of hell
<shoman94> ^^^ +!
Code:
<Entropy512> gotta be careful not to step on each other's work.  :)
<Bumble-Bee> thats true
<jerdog> compeete for donations
 
Entropy512
Old
#9  
Elite Recognized Developer
Thanks Meter 20794
Posts: 11,493
Join Date: Aug 2007
Location: Owego, NY

 
DONATE TO ME
I've got something that seems to be working... Needs a lot more testing. Recovery is important, and if it's broken, can really **** up someone's device.

Also, the way I got it working seems to be a massive hackjob, I need to chat with Koush if there's a better way to do things. Either that or a LOT of CWM porters have done source code modifications without publishing them (Which, while not ideal is allowed for CWM since it is Apache-licensed not GPL.)
*so much sig updating needed*

My Github profile - Some Android stuff, some AVR stuff

An excellent post on "noobs vs. developers"

A few opinions on kernel development "good practices"

Note: I have chosen not to use XDA's "friends" feature - I will reject all incoming "friend" requests.

Code:
<MikeyMike01> Smali is a spawn of hell
<shoman94> ^^^ +!
Code:
<Entropy512> gotta be careful not to step on each other's work.  :)
<Bumble-Bee> thats true
<jerdog> compeete for donations
 
rumirand
Old
#10  
Senior Member
Thanks Meter 50
Posts: 165
Join Date: Oct 2011
Location: Santiago

 
DONATE TO ME
Quote:
Originally Posted by Entropy512 View Post
I've got something that seems to be working... Needs a lot more testing. Recovery is important, and if it's broken, can really **** up someone's device.

Also, the way I got it working seems to be a massive hackjob, I need to chat with Koush if there's a better way to do things. Either that or a LOT of CWM porters have done source code modifications without publishing them (Which, while not ideal is allowed for CWM since it is Apache-licensed not GPL.)
I'm glad you got a clockworkmod which seems to work. Let us know what koush says and if it'll be official support to CWM on our devices.
Check out my custom kernel for YP-G70

 
Post Reply+
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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...

XDA PORTAL POSTS

Flash Custom ROM and Recovery to Samsung Galaxy S 4

After reading about Dan Rosenberg’s bootloader exploit for the Samsung Galaxy S 4,I … more

Windows-Based Multi-Tool for the Sony Xperia U

If you are a flashaholic and an owner of the Sony Xperia U, you may be interested in the … more

XDA University: Crafting Recovery-Flashable Packages

Those of us who use Linux on a day to day basis don’t think twice about sinking … more