Post Reply 
Installing 3.71 SDK into Cygwin
-A few questions...
Author Message
Mr. Shizzy
ɯɹ˙ sɥızzʎ

Posts: 2,973.4020
Threads: 415
Joined: 21st Feb 2007
Reputation: -2.36574
E-Pigs: 160.1496
Offline
Post: #1
Question Installing 3.71 SDK into Cygwin
Exactly how do I install it?  
(Simple instructions please, I'm a C newb.  ;P)
I already Have Cygwin, SDK, and libs all set up...   ;)

Also, is Cygwin still capable of compiling 1.50 kernel homebrew, after installing the 3.71 SDK ??


Thanks in advance for replies.

~  Shizzy

PSP 2001 [TA-088v2]: 6.39 ME-9.7
[Image: 4kly6c1.gif]
Sig by Mr_Nick666
12/01/2008 11:52 PM
Find all posts by this user Quote this message in a reply
ZiNgA BuRgA
Smart Alternative

Posts: 17,022.2988
Threads: 1,174
Joined: 19th Jan 2007
Reputation: -1.71391
E-Pigs: 446.1274
Offline
Post: #2
RE: Installing 3.71 SDK into Cygwin
Mr. Shizzy Wrote:Exactly how do I install it?
Mr. Shizzy Wrote:I already Have Cygwin, SDK, and libs all set up...   ;)
Erm, shouldn't it be installed already if you have it set up?
Mr. Shizzy Wrote:Also, is Cygwin still capable of compiling 1.50 kernel homebrew, after installing the 3.71 SDK ??
I would imagine so.
Still, 3.xx kernel is better...
13/01/2008 12:04 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Mr. Shizzy
ɯɹ˙ sɥızzʎ

Posts: 2,973.4020
Threads: 415
Joined: 21st Feb 2007
Reputation: -2.36574
E-Pigs: 160.1496
Offline
Post: #3
RE: Installing 3.71 SDK into Cygwin
^^^  No, there where new files that came in a "SDK" folder with 3.71 M33.

I'm pretty sure these need to be installed into the old SDK in order to make 3.XX homebrew...  

Only problem is, that there are several folders in my Cygwin folder that are named as the ones DAX provided...  Don't want to install them to wrong directory...

Maybe I'm wrong ???

PSP 2001 [TA-088v2]: 6.39 ME-9.7
[Image: 4kly6c1.gif]
Sig by Mr_Nick666
13/01/2008 12:48 AM
Find all posts by this user Quote this message in a reply
Chroma
Chromatic Nutjob

Posts: 2,626.3796
Threads: 435
Joined: 1st Mar 2007
Reputation: -5.01013
E-Pigs: 40.2135
Offline
Post: #4
RE: Installing 3.71 SDK into Cygwin
Off-topic a bit, but if you need some graphics stuff done for any future homebrew you make, feel free to ask me. I'm bored :D

PSN ID: Chroma3000
My Steam Page
ADD ME
superdouche Wrote:
TheGuy Wrote:
superdouche Wrote:You need at least an 8 inch penis, that's what I heard.
Man, if I had 8 inches, I would find a better use for it :P
Like what, pushing elevator buttons?
(This post was last modified: 13/01/2008 01:01 AM by Chroma.)
13/01/2008 01:00 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Pirata Nervo
NervOS Developer

Posts: 699.4765
Threads: 39
Joined: 20th Jun 2007
Reputation: -0.79225
E-Pigs: 19.2466
Offline
Post: #5
RE: Installing 3.71 SDK into Cygwin
There is no 3.71 SDK.
Simple explanation:
Module Info:
Quote:PSP_MODULE_INFO("App Name", PSP_MODULE_USER, 1, 1);
PSP_MAIN_THREAD_ATTR:
Quote:PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_USER);
PSP's Heap size allowed for your application:
Quote:PSP_HEAP_SIZE_KB(20480);
Add there to your makefile:
Quote:BUILD_PRX=1
PSP_FW_VERSION=371
You cannot make any kernel calls! If you want to use kernel functions, you must create a separated prx in kernel mode and run the function from there.

(This post was last modified: 13/01/2008 03:39 AM by Pirata Nervo.)
13/01/2008 03:23 AM
Visit this user's website Find all posts by this user Quote this message in a reply
matchung
Turok Makto

Posts: 1,744.2413
Threads: 180
Joined: 5th Mar 2007
Reputation: -1.62846
E-Pigs: 162.3154
Offline
Post: #6
RE: Installing 3.71 SDK into Cygwin
extract the M33 SDK into your pre-install SDK, that's all.

all u have to do is modify your makefile/source to meet the user mode requirement..

http://exophase.com/files/psp/release.rar

Quote:SDK for 3.71 M33

Some changes have been added in this sdk: sctrlHENSetOnApplyPspRelSectionEven has been replaced
by sctrlHENSetStartModuleHandler.

Sony has changed a lot of kernel nids: ctrl, power, syscon, sysreg, clockgen, umd modules, etc
If your prx doesn't load, dump your nids using prxtool, and compare them to the ones of 3.71.

Sony has also deleted the power speed functions from kernel usage. You can use the new function
sctrlHENSetSpeed to fix this issue.

Included is a sample that uses the 32 MB of extra ram of the psp slim.
(This post was last modified: 13/01/2008 03:52 AM by matchung.)
13/01/2008 03:52 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Pirata Nervo
NervOS Developer

Posts: 699.4765
Threads: 39
Joined: 20th Jun 2007
Reputation: -0.79225
E-Pigs: 19.2466
Offline
Post: #7
RE: Installing 3.71 SDK into Cygwin
but it is not a complete sdk..it is just the changed files I guess.

13/01/2008 06:47 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Mr. Shizzy
ɯɹ˙ sɥızzʎ

Posts: 2,973.4020
Threads: 415
Joined: 21st Feb 2007
Reputation: -2.36574
E-Pigs: 160.1496
Offline
Post: #8
RE: Installing 3.71 SDK into Cygwin
cool thanks guys.

so just to re iterate:  

All I need to do is drop the "include" and "lib" folders (that came in the "Sdk" folder with 3.71 M33)  directly into my Cygwin folder, and then follow the steps Pirata Nervo has outlined above?

Thanks for the replies.   :)

PSP 2001 [TA-088v2]: 6.39 ME-9.7
[Image: 4kly6c1.gif]
Sig by Mr_Nick666
(This post was last modified: 13/01/2008 08:42 AM by Mr. Shizzy.)
13/01/2008 08:41 AM
Find all posts by this user Quote this message in a reply
Pirata Nervo
NervOS Developer

Posts: 699.4765
Threads: 39
Joined: 20th Jun 2007
Reputation: -0.79225
E-Pigs: 19.2466
Offline
Post: #9
RE: Installing 3.71 SDK into Cygwin
you can do the steps that I posted without 3.71 sdk too, the 3.71 sdk is just a couple of new functions.

13/01/2008 03:35 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

 Quick Theme: