I have SCPH-90004 Slim ps2. I had succesfully setup FreeMCBoot and over ESR I can play backup games or I can run any ELF I want.
These questions are MegaMan and the other users in this forum:
1) I have a common problem with the homebrew codes as well as the KernelLoader (I have tried with 1.9, 1.8, 1.7 and 1.6 and the special psTwo version you put on this forum before). The below does not work on my PS2. As I said for every homebrew code I have the same problem:
Code: Select all
if (*((char *) 0x1FC80000 - 0xAE) != 'E') {
mode = MODE_NTSC;
refreshesPerSecond = 60;
} else {
mode = MODE_PAL;
refreshesPerSecond = 50;
}
It always opens with NTSC.
Q: Is there a way that I can get rid of this problem without recompiling
-----------------------------------------------------------------------
2) I have used one of my 60 GB harddisk as set as below with my Ubuntu desktop computer:
SDA1 : 2 GB FAT16 -> Setup files (kloader.elf, initrd.gz, vmlinux etc.)
SDA2 : 50 GB EXT2 -> Linux (I untar the Linux distribution here*)
SDA3 : REST is SWAP
* Also edit the /etc/fstab as the sda2 is ext and sda3 is the swap
Q= Is this setup reasonalbe?
-----------------------------------------------------------------------
3) From now on there are two ideas
3a) I have boot it with special slim version of KLOADER.ELF + VMLINUX and tried to boot directly from newroot=/dev/sda2 ro
3b) I have tried to boot the same way but this time I used initrd.usb.gz and ramdisk.
3a failled very bad. I think that is normal but 3b is failing too. First of all I do not see the USB partitions. I have tried to mount with
mkdir MYPart1
mount -r -t vfat /dev/sda1 /MyPart1 or the other way
mount -r -t vfat /dev/scsi/...bus0/luc0/part1
in both I failed. The error is "block is not such thing" (Sorry I remembered as like this).
Q=Is this just a problem about new slim PS2 USB as it has been disguessed before or am I doing something terriblly wrong?
-----------------------------------------------------------------------
4) I decided to do my own initrd.gz. So I downloaded psboot-1 from ps2dev:
First of all modprobe in this distribution looks like compiled with 2.4.17 but the kernel inside is 2.2.2x so everytime I try to use modprobe I get a msg that /lib/modules/2.4.17_mvl.../some library is missing.
Q=Why o I get such error? If it is just a mixed and if it is not my fault, can any body post a working initrd src code for latest kernel?
more to come but maybe if I can figure out these I will eliminate the rest of the problems...
-----------------------------------------------------------------------
5) And a last tiny question. In the KLOADER.ELF which is for psTwo Slim, why do I always see the interrupt msgs. I click on the keyboard and it says IRQ 24 : recieved. And it does for everything. So it is very difficult to understand what you are writing.
Q= Where/How can I turn it off?