Loading an ELF file above 0x80000000

Discuss the development of software, tools, libraries and anything else that helps make ps2dev happen.

Moderators: cheriff, Herben

Post Reply
citronalco
Posts: 15
Joined: Sat Apr 19, 2008 7:47 pm

Post by citronalco »

@Mega Man:
I don't have the toolchain set up yet. Could you please post both pukko versions?

About the network driver patches: Of course I could try a few patched kernels. But sorry, my knowledge about the ps2 is somehow limited. So do you recommend any special howto/instruction for setting up the build environment? Any additional patches? What .config should I use?
belek666
Posts: 19
Joined: Mon Apr 14, 2008 12:54 am

Post by belek666 »

Mega Man wrote:
belek666 wrote:I have a problem with kernelloader. I try instal Linux on my fat ps2 using pendrive but kernelloader don't recognaise mass and freeze. Can someone change usb driver in kernelloader on latest? My pendrive is working in ulaunchelf 4.12.
I am not sure which is the best version to include. Could you do some research? I will include it in my next release.
Try with this irx driver:
http://rapidshare.com/files/113172375/irx.rar
This is best driver for keyboard:
http://rapidshare.com/files/113265827/USBKEYBD.IRX
mazxim
Posts: 23
Joined: Thu Jan 24, 2008 12:29 am
Contact:

Post by mazxim »

Mega Man wrote:Testversion of kernelloader only for slim PSTwo:
http://rapidshare.com/files/112377238/kloader.elf.html

Testversion of Linux kernel only for slim PSTwo.
http://rapidshare.com/files/112377834/vmlinux.gz.html
Using this combination of files the keyboard work on my 'scph-77004' PSTwo. Iuh uhh!!
Mega Man wrote:I don't include devfs, so you need to generate devices manually by:

cd /dev
mknod sda b 8 0
mknod sda1 b 8 1
ok but when I try to mount a pendrive it complain that "modprobe can't open dependencies file /lib/modules/2.4.17_nvl21/modules.dep (no such file or directory)"

actually on /lib/modules (ramdisk side) there is different called directory, 2.2.21-pre1-xr7. Should be some mismatch between your new provided kernel and the website-provided initrd.

Just a note, carry on the good way (Mega) Man!
Mega Man
Posts: 260
Joined: Sat Jun 18, 2005 3:14 am
Contact:

Post by Mega Man »

citronalco wrote: I don't have the toolchain set up yet. Could you please post both pukko versions?
http://rapidshare.com/files/113298651/p ... 0.elf.html

http://rapidshare.com/files/113298883/p ... 1.elf.html

http://rapidshare.com/files/113300127/p ... r.exe.html
citronalco wrote: So do you recommend any special howto/instruction for setting up the build environment?
How to setup Linux is described here (First part + chapter Linux + don't add printk patch, but my last posted patch):

http://sourceforge.net/project/shownote ... _id=223793
mazxim wrote: ok but when I try to mount a pendrive it complain that "modprobe can't open dependencies file /lib/modules/2.4.17_nvl21/modules.dep (no such file or directory)"
I have only taken the initrd stuff from the official PS2 Linux website. The driver for MSDOS (VFAT) is included in the kernel, so it should work. I believe Linux can't find the correct charset and it will use a default instead. To save space I didn't include all charsets.


Could someone test the following Kernel with my last official release 1.8 (at sourceforge) on a slim PSTwo?

http://rapidshare.com/files/113303344/v ... ix.gz.html

Here is the patch which I used for the kernel above. I saw that sometimes an interrupt occurs when there is no action registered. This leads to a kernel panic. It is possible that this will already fix the problems on the slim PSTwo.

Code: Select all

--- linux-2.4.17_ps2.orig/arch/mips/kernel/irq.c	2002-03-04 11:31:35.000000000 +0100
+++ linux-2.4.17_ps2/arch/mips/kernel/irq.c	2008-05-07 23:17:03.000000000 +0200
@@ -121,11 +121,11 @@ int handle_IRQ_event(unsigned int irq, s
 	if (!(action->flags & SA_INTERRUPT))
 		__sti();
 
-	do {
+	while (action) {
 		status |= action->flags;
 		action->handler(irq, action->dev_id, regs);
 		action = action->next;
-	} while (action);
+	}
 	if (status & SA_SAMPLE_RANDOM)
 		add_interrupt_randomness(irq);
 	__cli();
--- linux-2.4.17_ps2.orig/arch/mips/Makefile	2002-11-20 13:14:52.000000000 +0100
+++ linux-2.4.17_ps2/arch/mips/Makefile	2008-05-07 23:36:27.000000000 +0200
@@ -114,9 +114,11 @@ endif
 # arch/mips/ramdisk
 #
 ifdef CONFIG_BLK_DEV_INITRD 
+ifdef CONFIG_EMBEDDED_RAMDISK
 CORE_FILES      += arch/mips/ramdisk/ramdisk.o
 SUBDIRS		+= arch/mips/ramdisk
 endif
+endif
 
 
 GCCFLAGS	+= -pipe
mazxim
Posts: 23
Joined: Thu Jan 24, 2008 12:29 am
Contact:

Post by mazxim »

Mega Man wrote:Could someone test the following Kernel with my last official release 1.8 (at sourceforge) on a slim PSTwo?

http://rapidshare.com/files/113303344/v ... ix.gz.html
..is not work. Here I have a PSTwo model *scph-77004* and a ps/2>usb adaptor for the keyboard.

Bye!
citronalco
Posts: 15
Joined: Sat Apr 19, 2008 7:47 pm

Post by citronalco »

Here are the V15 roms, the kernel loader config I use and dmesg, interrupts,... from the running linux:

http://rapidshare.com/files/113500740/p ... r.bz2.html

kernel loader 1.8 and the new kernel work like a charm, mounting pendrive works too. But again the ervomdrvloader.irx error at kernel loader startup and also had to disable ADDRV to avoid kernel loader to hang.

If I find some time the next few days I'll try to get some of the network interface patches you mentioned.

EDIT: The roms are V16 roms, not V15!!! Just found out I own a V16, shame on me.
Last edited by citronalco on Fri May 09, 2008 11:58 pm, edited 1 time in total.
mazxim
Posts: 23
Joined: Thu Jan 24, 2008 12:29 am
Contact:

Post by mazxim »

citronalco wrote:kernel loader 1.8 and the new kernel work like a charm, mounting pendrive works too. But again the ervomdrvloader.irx error at kernel loader startup and also had to disable ADDRV to avoid kernel loader to hang.
Excuse me..I'm a bit confused, can you explain how did it work properly? Here on my V16-PSTwo keyboard can work only with 1.8 test version - plus, if I try to mount a pendrive after the mknod trick it say that can't find modules.dep file on /lib/modules/2.4.17 etc... which combination of initrd and kernel did you refer?

Bye
citronalco
Posts: 15
Joined: Sat Apr 19, 2008 7:47 pm

Post by citronalco »

I use a native USB keyboard.
I get the same error message when mounting a pendrive, but this doesn't matter, it gets mounted.

The kernel I use is this: http://rapidshare.com/files/113303344/v ... ix.gz.html
I took the latest available initrd and kernel loader from Mega Man's kernel loader SourceForge site.

But now I'm a little bit unsure if my PS2 is a V15 or V16. I'm gonna have a look when I'm back at home.

EDIT: OK, found out I own a V16, not a V15.
Last edited by citronalco on Fri May 09, 2008 11:59 pm, edited 1 time in total.
belek666
Posts: 19
Joined: Mon Apr 14, 2008 12:54 am

Post by belek666 »

I have problem with loading usb mass storage in blackrhino. I trying mount USB memory stick but it can't. How mount USB?
deba5er
Posts: 166
Joined: Mon Feb 04, 2008 2:01 pm

Post by deba5er »

mounting usb should be something like this:

modprobe usb-storage
mount /dev/sda1 /mnt/sda1 -t vfat

I'm doing this without my PS2 handy, so may not need the modprobe...
belek666
Posts: 19
Joined: Mon Apr 14, 2008 12:54 am

Post by belek666 »

Mounting USB storage for me is not posible. My blackrhino don't have usb-storage modules. I trying instal this modules via ps2 memory card. I put my MC in first port and mounted in linux using:

Code: Select all

mount -t ps2mcfs /dev/ps2mc00 /mnt/mc00
but card not working. I can't go on it and instal modules. I don't know what i do wrong with this.

EDIT:
I have also problem with network. How set it?
deba5er
Posts: 166
Joined: Mon Feb 04, 2008 2:01 pm

Post by deba5er »

if you already have your /etc/fstab entry setup (standard blackrhino), and you have created a mount point (/mnt/mc00), you enter (as root or sudo) "mount /mnt/mc00". What is not mentioned is that the BWLINUX (all capital letters) directory on your memory card is fixed as the root directory of /mnt/mc00. So everything you transfer between the memory card and PS2-Linux must be in the BWLINUX directory on your memory card. If anyone else knows a way to see the entire memory card, I'm interested in learning it.

You need to enter your network address, netmask, broadcast, gateway info in /etc/network/interfaces to configure your network (at minimum).
belek666
Posts: 19
Joined: Mon Apr 14, 2008 12:54 am

Post by belek666 »

deba5er wrote:You need to enter your network address, netmask, broadcast, gateway info in /etc/network/interfaces to configure your network (at minimum).
I have router and from where I should take this information?
I need also modules for usb-storage for blackrhino version modules 2.2.1.
deba5er
Posts: 166
Joined: Mon Feb 04, 2008 2:01 pm

Post by deba5er »

I don't know if the usb-storage module is avail on the older 2.2.1 blackrhino. Try the newer version. usb-storage.o is in /lib/modules/usb on this version:
http://playstation2-linux.com/project/s ... roup_id=12

2.2.21-pre1-xr7 2002-Jul-05 Examine archive contents kernel-binaries-2.2.21-pre1-xr7.tar.gz (1.9 MB)

The kernel is in the archive in the root directory.
belek666
Posts: 19
Joined: Mon Apr 14, 2008 12:54 am

Post by belek666 »

I have a question about desktop environment for ps2 linux. Which are avilable for ps2 and where I can download it.
darknight
Posts: 2
Joined: Tue May 13, 2008 2:48 am

Post by darknight »

Hello everyone, new here.

I want to install linux and stumbled upon Mega Man's cool Linux elf thing.(http://mitglied.lycos.de/ps2dev/tutoria ... linux.html) Now i got a Phat old PS2, one of the launch ones and stuff but when Im about to boot linux from kernelloader i get to the screen where im supposed to start typing "fdisk" to make the required partitions but my USB keyboard doesnt function. It works in the kernelloader menu but after that it doesnt work. Is this going to get fixed any time soon? I see ppls sharing updated USB.IRX files but i dont know if i can enable it through the modules section of kernelloader.

Also im pretty sure HDL cant co-exist with Linux unless you make "APA" partitions correct? Meaning that you need to send your PS2 linux partition to your PC and do other steps for it to wotk with HDL? Some guy at Console exploits(http://www.console-exploits.com/forums/ ... ight=linux) said that he got Linux and HDL working without any other extra steps. You guys think thats possible? Thanx and sorry for long post.

[Mods:please remove links to other sites if they arent allowed.]
deba5er
Posts: 166
Joined: Mon Feb 04, 2008 2:01 pm

Post by deba5er »

To work with APA, I merely ran HDLoader 0.8b from ULaunchelf 4.12 on a hard drive with no existing partitions causing it to format the drive for APA. Other tools exist to do this, but this is what I used.

I created a BWLINUX directory on my MC0, downloaded the ps2fdisk utility from http://playstation2-linux.com/project/s ... ase_id=440

I used cygwin to "gzip -d ps2fdisk*.gz", but this can be done with another unzip utility that handles .gz files. I placed the ps2fdisk_0.9-3 utility into the BWLINUX directory on my MC0 memory card.

I ran kloader.elf from ULaunchelf 4.12, using default kernel parameters as the configuration, and using the kernel and initfs image from Megaman's site http://mitglied.lycos.de/ps2dev/linux.html from my usb drive.

Upon booting I mounted the memory card with "mount /mc0"

I ran /mc0/ps2fdisk_0.9-3

The instructions after this point are the same as those on Megaman's site.

Let me know if this works or not.
ragnarok2040
Posts: 202
Joined: Wed Aug 09, 2006 1:00 am

Post by ragnarok2040 »

If you want to mount a usb stick with the devfs kernel, mkdir a /mnt/usb directory and mount -t vfat /dev/scsi/.../part1 /mnt/usb. I think it's /dev/scsi/host0/bus0/target0/lun0/disc/part1 but you can just keep pushing tab to fill out the path. That's where my usb stick ended up in the device fs anyway.
cosmito
Posts: 307
Joined: Sun Mar 04, 2007 4:26 am
Location: Portugal
Contact:

Post by cosmito »

deba5er wrote:To work with APA, I merely ran HDLoader 0.8b from ULaunchelf 4.12 on a hard drive with no existing partitions causing it to format the drive for APA. Other tools exist to do this, but this is what I used.
In fact, uLaunchelf can also create partitions.
Mega Man
Posts: 260
Joined: Sat Jun 18, 2005 3:14 am
Contact:

Post by Mega Man »

darknight wrote: I want to install linux and stumbled upon Mega Man's cool Linux elf thing.(http://mitglied.lycos.de/ps2dev/tutoria ... linux.html) Now i got a Phat old PS2, one of the launch ones and stuff but when Im about to boot linux from kernelloader i get to the screen where im supposed to start typing "fdisk" to make the required partitions but my USB keyboard doesnt function. It works in the kernelloader menu but after that it doesnt work. Is this going to get fixed any time soon? I see ppls sharing updated USB.IRX files but i dont know if i can enable it through the modules section of kernelloader.
USB.IRX is only used in kernelloader before Linux is started (when you see the clouds in the background). Linux has its own USB driver. It is possible that one of the solutions for slim PSTwo is working (see test results by citronalco).
darknight wrote: Also im pretty sure HDL cant co-exist with Linux unless you make "APA" partitions correct? Meaning that you need to send your PS2 linux partition to your PC and do other steps for it to wotk with HDL? Some guy at Console exploits(http://www.console-exploits.com/forums/ ... ight=linux) said that he got Linux and HDL working without any other extra steps. You guys think thats possible? Thanx and sorry for long post.
I think you can install it as described there, but you need to select the vmlinux and initrd manually. Kernelloader doesn't read the RTE configuration from mc0:/BWLINUX/p2lboot.cnf.
nPort is not required, because you can copy the files on the USB memory stick.
citronalco
Posts: 15
Joined: Sat Apr 19, 2008 7:47 pm

Post by citronalco »

@mazxim & mega man:
Mega Man's Linux 2.4.17 (http://rapidshare.com/files/113303344/v ... ix.gz.html) together with the latest available initrd and kernel loader (from sf.net) work only most of the time. On about every 5th boot or so I get a kernel panic: Sometimes it gets to the bash prompt, stays there a few seconds, then panics. Bash doesn't accept any keyboard inputs before the panic. More often it just panics while loading the initrd.
But if it survives the first few seconds, it seems to be stable.

@mega man:
Tried to find some patch for the nic issue on my V15, but didn't have any luck.
The only patches I found were fixing some other issues (and were for linux 2.2, but that's not the problem). Compiling my own kernel did work (thank you for the great instruction), but your patches posted here didn't apply cleanly. I'd just like to know what other patches you use. As a starting point a working .config would also be nice.

Sorry, I wasn't that successful this time.
darknight
Posts: 2
Joined: Tue May 13, 2008 2:48 am

Post by darknight »

deba5er wrote:To work with APA, I merely ran HDLoader 0.8b from ULaunchelf 4.12 on a hard drive with no existing partitions causing it to format the drive for APA. Other tools exist to do this, but this is what I used.

I created a BWLINUX directory on my MC0, downloaded the ps2fdisk utility from http://playstation2-linux.com/project/s ... ase_id=440

I used cygwin to "gzip -d ps2fdisk*.gz", but this can be done with another unzip utility that handles .gz files. I placed the ps2fdisk_0.9-3 utility into the BWLINUX directory on my MC0 memory card.

I ran kloader.elf from ULaunchelf 4.12, using default kernel parameters as the configuration, and using the kernel and initfs image from Megaman's site http://mitglied.lycos.de/ps2dev/linux.html from my usb drive.

Upon booting I mounted the memory card with "mount /mc0"

I ran /mc0/ps2fdisk_0.9-3

The instructions after this point are the same as those on Megaman's site.

Let me know if this works or not.
Well i cant do anything with Kernelloader until it reads my USB KB.

Also I tried installing Linux with this "installer disk" : PS2 LINUX RTE CD 1.0 (Install BlackRhino) by CERF4

I did the partitions and did all the steps. After doing BOOT/BlackRhino and the screen comes up where you have to input user name, after that[ Blackrhino #: ] i try to start the GUI or whatever its called with "startx -- -screen 0 ntsc" and nothing happens!!! it says something like not a command. So i got stuck there.

I heard that you can still have APA partitions when you install with the retail linux disks (or this tut using swap method: http://forums.afterdawn.com/thread_view ... 81#3141025) but im unsure since when you install linux with the S0Ny disks, they reformat your HDD when you begin so that no good i think. Any ideas guys?
Mega Man
Posts: 260
Joined: Sat Jun 18, 2005 3:14 am
Contact:

Post by Mega Man »

darknight wrote: Well i cant do anything with Kernelloader until it reads my USB KB.
This is the old kloader 1.8 version, including updated modules:

http://rapidshare.com/files/115436157/kloader.elf.html

I put usbd.irx and usb_mass.irx into it, but keyboard driver was not working, so I used my old one. Seems that keyboard is not working in Linux when using this combination.

Note: You can also burn the files on video DVD, because kernelloader can read it.
darknight wrote: Also I tried installing Linux with this "installer disk" : PS2 LINUX RTE CD 1.0 (Install BlackRhino) by CERF4

I did the partitions and did all the steps. After doing BOOT/BlackRhino and the screen comes up where you have to input user name, after that[ Blackrhino #: ] i try to start the GUI or whatever its called with "startx -- -screen 0 ntsc" and nothing happens!!! it says something like not a command. So i got stuck there.
I think you need to install the remaining stuff over internet.

apt-get install xcalc
...
darknight wrote: I heard that you can still have APA partitions when you install with the retail linux disks (or this tut using swap method: http://forums.afterdawn.com/thread_view ... 81#3141025) but im unsure since when you install linux with the S0Ny disks, they reformat your HDD when you begin so that no good i think. Any ideas guys?
You need a Linux kernel supporting APA partitions and a tool for setting up APA partitions (not necessary running on Linux).
citronalco wrote: Compiling my own kernel did work (thank you for the great instruction), but your patches posted here didn't apply cleanly. I'd just like to know what other patches you use. As a starting point a working .config would also be nice.
"Copy and paste" is not correctly working with my patches, so I checked it into CVS:

http://kernelloader.cvs.sourceforge.net ... nelloader/

I used the following configuration:

Code: Select all

#
# Automatically generated by make menuconfig: don't edit
#
CONFIG_MIPS=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y

#
# Machine selection
#
# CONFIG_ACER_PICA_61 is not set
# CONFIG_ALGOR_P4032 is not set
# CONFIG_BAGET_MIPS is not set
# CONFIG_COBALT_MICRO_SERVER is not set
# CONFIG_DECSTATION is not set
# CONFIG_DDB5074 is not set
# CONFIG_NEC_EAGLE is not set
# CONFIG_MIPS_EV96100 is not set
# CONFIG_MIPS_EV64120 is not set
# CONFIG_MIPS_ATLAS is not set
# CONFIG_MIPS_MALTA is not set
# CONFIG_NINO is not set
# CONFIG_MIPS_LXPB20K is not set
# CONFIG_SIBYTE_SB1250 is not set
CONFIG_PS2=y
CONFIG_PS2_COMPAT_KERNEL22=y
# CONFIG_T10000 is not set
CONFIG_PS2_LOCK=y
# CONFIG_PS2_DEBUGLOG is not set
# CONFIG_PS2_COMPAT_OLDBOOTINFO is not set
CONFIG_PS2_SBIOS_VER_CHECK=y
CONFIG_PS2_SERIAL_CONSOLE=y
CONFIG_PS2_PS2DEV=y
CONFIG_PS2_PAD=y
CONFIG_PS2_CDVD=y
CONFIG_PS2_SD=y
# CONFIG_PS2_SD_ALTPCM is not set
CONFIG_PS2_MC=y
CONFIG_PS2_MCFS=y
CONFIG_PS2_RM=y
CONFIG_PS2_SYSCONF=y
CONFIG_PS2_SYSPROC=y
CONFIG_PS2_ETHER=y
CONFIG_PS2_ETHER_SMAP=y
CONFIG_PS2_PAD_JS=m
CONFIG_SNSC_CONST_LPJ=y
# CONFIG_CASIO_BE300 is not set
# CONFIG_VADEM_CLIO_1000 is not set
# CONFIG_NEC_MOBILEPRO_780 is not set
# CONFIG_IDT_79S334 is not set
# CONFIG_IDT_79EB355 is not set
# CONFIG_MIPS_MAGNUM_4000 is not set
# CONFIG_MOMENCO_OCELOT is not set
# CONFIG_DDB5476 is not set
# CONFIG_DDB5477 is not set
# CONFIG_NEC_OSPREY is not set
# CONFIG_OLIVETTI_M700 is not set
# CONFIG_SGI_IP22 is not set
# CONFIG_SNI_RM200_PCI is not set
# CONFIG_MIPS_ITE8172 is not set
# CONFIG_MIPS_IVR is not set
# CONFIG_MIPS_SNSC_MPU210 is not set
# CONFIG_MIPS_PB1000 is not set
# CONFIG_MIPS_PB1500 is not set
# CONFIG_SNSC_MPU200 is not set
# CONFIG_TOSHIBA_JMR3927 is not set
# CONFIG_HP_LASERJET is not set
CONFIG_RWSEM_GENERIC_SPINLOCK=y
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
CONFIG_GENERIC_ISA_DMA=y
# CONFIG_MCA is not set
# CONFIG_SBUS is not set
CONFIG_NEW_IRQ=y
CONFIG_NEW_TIME_C=y
CONFIG_NONCOHERENT_IO=y
CONFIG_DUMMY_KEYB=y
CONFIG_DUMMY_KEYB_TRANS_SCANCODES=y
# CONFIG_ISA is not set
# CONFIG_EISA is not set
# CONFIG_PCI is not set
# CONFIG_I8259 is not set

#
# Loadable module support
#
CONFIG_MODULES=y
# CONFIG_MODVERSIONS is not set
CONFIG_KMOD=y

#
# CPU selection
#
# CONFIG_CPU_R3000 is not set
# CONFIG_CPU_LX45XXX is not set
# CONFIG_CPU_TX39XX is not set
# CONFIG_CPU_R6000 is not set
# CONFIG_CPU_VR41XX is not set
# CONFIG_CPU_R4300 is not set
# CONFIG_CPU_R4X00 is not set
# CONFIG_CPU_TX49XX is not set
# CONFIG_CPU_R5000 is not set
# CONFIG_CPU_R5432 is not set
# CONFIG_CPU_R5500 is not set
CONFIG_CPU_R5900=y
# CONFIG_CPU_RM7000 is not set
# CONFIG_CPU_NEVADA is not set
# CONFIG_CPU_R10000 is not set
# CONFIG_CPU_SB1 is not set
# CONFIG_CPU_MIPS32 is not set
# CONFIG_CPU_MIPS64 is not set
# CONFIG_CPU_RC32300 is not set
# CONFIG_MATH_EMULATION is not set
CONFIG_CPU_ADVANCED=y
# CONFIG_CPU_HAS_LLSC is not set
# CONFIG_CPU_HAS_LLDSCD is not set
CONFIG_CPU_HAS_WB=y
CONFIG_CPU_R5900_CONTEXT=y
# CONFIG_EMBEDDED_OOM_KILLER is not set
# CONFIG_RTSCHED is not set

#
# General setup
#
CONFIG_CPU_LITTLE_ENDIAN=y
CONFIG_KCORE_ELF=y
CONFIG_ELF_KERNEL=y
# CONFIG_BINFMT_AOUT is not set
CONFIG_BINFMT_ELF=y
# CONFIG_MULTITHREADED_CORES is not set
# CONFIG_BINFMT_MISC is not set
CONFIG_NET=y
# CONFIG_HOTPLUG is not set
# CONFIG_PCMCIA is not set
# CONFIG_HOTPLUG_PCI is not set
CONFIG_SYSVIPC=y
# CONFIG_BSD_PROCESS_ACCT is not set
# CONFIG_SYSCTL is not set
# CONFIG_ILATENCY is not set
CONFIG_PREEMPT=y
# CONFIG_PREEMPT_TIMES is not set
CONFIG_LOCK_BREAK=y

#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set

#
# Parallel port support
#
# CONFIG_PARPORT is not set

#
# Block devices
#
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_DEV_XD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_NBD is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y
# CONFIG_EMBEDDED_RAMDISK is not set

#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set
# CONFIG_BLK_DEV_MD is not set
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID5 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_BLK_DEV_LVM is not set

#
# Cryptographic options
#
# CONFIG_CRYPTO is not set
# CONFIG_CRYPTOLOOP is not set
# CONFIG_CIPHERS is not set
# CONFIG_DIGESTS is not set

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
CONFIG_NETLINK_DEV=y
# CONFIG_NETFILTER is not set
# CONFIG_FILTER is not set
# CONFIG_NET_NEIGH_DEBUG is not set
# CONFIG_NET_MODERATE_REUSE is not set
CONFIG_UNIX=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_ARPD is not set
# CONFIG_INET_ECN is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_IPV6 is not set
# CONFIG_KHTTPD is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_DECNET is not set
# CONFIG_BRIDGE is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_LLC is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set
# CONFIG_PHONE_IXJ is not set
# CONFIG_PHONE_IXJ_PCMCIA is not set

#
# ATA/IDE/MFM/RLL support
#
CONFIG_IDE=y

#
# IDE, ATA and ATAPI Block devices
#
CONFIG_BLK_DEV_IDE=y
# CONFIG_BLK_DEV_HD_IDE is not set
# CONFIG_BLK_DEV_HD is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
# CONFIG_BLK_DEV_IDEDISK_VENDOR is not set
# CONFIG_BLK_DEV_IDEDISK_FUJITSU is not set
# CONFIG_BLK_DEV_IDEDISK_IBM is not set
# CONFIG_BLK_DEV_IDEDISK_MAXTOR is not set
# CONFIG_BLK_DEV_IDEDISK_QUANTUM is not set
# CONFIG_BLK_DEV_IDEDISK_SEAGATE is not set
# CONFIG_BLK_DEV_IDEDISK_WD is not set
# CONFIG_BLK_DEV_COMMERIAL is not set
# CONFIG_BLK_DEV_TIVO is not set
# CONFIG_BLK_DEV_IDECS is not set
# CONFIG_BLK_DEV_IDECD is not set
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
# CONFIG_BLK_DEV_CMD640 is not set
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
# CONFIG_BLK_DEV_ISAPNP is not set
CONFIG_BLK_DEV_PS2_IDE=y
# CONFIG_BLK_DEV_PS2_IDEDMA is not set
# CONFIG_BLK_DEV_IDEDMA is not set
# CONFIG_IDE_CHIPSETS is not set
# CONFIG_IDEDMA_AUTO is not set
CONFIG_DMA_NONPCI=y
CONFIG_BLK_DEV_IDE_MODES=y
# CONFIG_BLK_DEV_ATARAID is not set
# CONFIG_BLK_DEV_ATARAID_PDC is not set
# CONFIG_BLK_DEV_ATARAID_HPT is not set

#
# SCSI support
#
CONFIG_SCSI=y
CONFIG_BLK_DEV_SD=y
CONFIG_SD_EXTRA_DEVS=40
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
# CONFIG_BLK_DEV_SR is not set
CONFIG_CHR_DEV_SG=y
# CONFIG_SCSI_DEBUG_QUEUES is not set
# CONFIG_SCSI_MULTI_LUN is not set
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set

#
# SCSI low-level drivers
#
# CONFIG_SCSI_7000FASST is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AHA152X is not set
# CONFIG_SCSI_AHA1542 is not set
# CONFIG_SCSI_AHA1740 is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_IN2000 is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_MEGARAID is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_DTC3280 is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_DMA is not set
# CONFIG_SCSI_EATA_PIO is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_GENERIC_NCR5380 is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_NCR53C406A is not set
# CONFIG_SCSI_NCR53C7xx is not set
# CONFIG_SCSI_PAS16 is not set
# CONFIG_SCSI_PCI2000 is not set
# CONFIG_SCSI_PCI2220I is not set
# CONFIG_SCSI_PSI240I is not set
# CONFIG_SCSI_QLOGIC_FAS is not set
# CONFIG_SCSI_SIM710 is not set
# CONFIG_SCSI_SYM53C416 is not set
# CONFIG_SCSI_T128 is not set
# CONFIG_SCSI_U14_34F is not set
# CONFIG_SCSI_DEBUG is not set

#
# I2O device support
#
# CONFIG_I2O is not set
# CONFIG_I2O_BLOCK is not set
# CONFIG_I2O_LAN is not set
# CONFIG_I2O_SCSI is not set
# CONFIG_I2O_PROC is not set

#
# Network device support
#
CONFIG_NETDEVICES=y

#
# ARCnet devices
#
# CONFIG_ARCNET is not set
CONFIG_DUMMY=y
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
# CONFIG_ETHERTAP is not set

#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
# CONFIG_SUNLANCE is not set
# CONFIG_SUNBMAC is not set
# CONFIG_SUNQE is not set
# CONFIG_SUNLANCE is not set
# CONFIG_SUNGEM is not set
# CONFIG_NET_VENDOR_3COM is not set
# CONFIG_LANCE is not set
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_VENDOR_RACAL is not set
# CONFIG_NET_ISA is not set
# CONFIG_NET_PCI is not set
# CONFIG_NET_POCKET is not set
# CONFIG_HHNET is not set

#
# Ethernet (1000 Mbit)
#
# CONFIG_ACENIC is not set
# CONFIG_DL2K is not set
# CONFIG_MYRI_SBUS is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
# CONFIG_SK98LIN is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
CONFIG_PPP=m
# CONFIG_PPP_MULTILINK is not set
# CONFIG_PPP_FILTER is not set
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_BSDCOMP=m
# CONFIG_PPPOE is not set
# CONFIG_SLIP is not set

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Token Ring devices
#
# CONFIG_TR is not set
# CONFIG_NET_FC is not set
# CONFIG_RCPCI is not set
# CONFIG_SHAPER is not set

#
# Wan interfaces
#
# CONFIG_WAN is not set

#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set

#
# IrDA (infrared) support
#
# CONFIG_IRDA is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Old CD-ROM drivers (not SCSI, not IDE)
#
# CONFIG_CD_NO_IDESCSI is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
# CONFIG_SERIAL is not set
# CONFIG_SERIAL_EXTENDED is not set
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_SNSC_KPAD is not set

#
# Serial drivers
#
# CONFIG_SERIAL_8250 is not set
# CONFIG_SERIAL_8250_CONSOLE is not set
# CONFIG_SERIAL_8250_EXTENDED is not set
# CONFIG_SERIAL_8250_MANY_PORTS is not set
# CONFIG_SERIAL_8250_SHARE_IRQ is not set
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
# CONFIG_SERIAL_8250_MULTIPORT is not set
# CONFIG_SERIAL_8250_HUB6 is not set
# CONFIG_UNIX98_PTYS is not set

#
# I2C support
#
# CONFIG_I2C is not set

#
# Mice
#
# CONFIG_BUSMOUSE is not set
CONFIG_MOUSE=y
CONFIG_PSMOUSE=y
# CONFIG_82C710_MOUSE is not set
# CONFIG_PC110_PAD is not set

#
# Joysticks
#
# CONFIG_INPUT_GAMEPORT is not set
# CONFIG_INPUT_NS558 is not set
# CONFIG_INPUT_LIGHTNING is not set
# CONFIG_INPUT_PCIGAME is not set
# CONFIG_INPUT_CS461X is not set
# CONFIG_INPUT_EMU10K1 is not set
# CONFIG_INPUT_SERIO is not set
# CONFIG_INPUT_SERPORT is not set
# CONFIG_INPUT_ANALOG is not set
# CONFIG_INPUT_A3D is not set
# CONFIG_INPUT_ADI is not set
# CONFIG_INPUT_COBRA is not set
# CONFIG_INPUT_GF2K is not set
# CONFIG_INPUT_GRIP is not set
# CONFIG_INPUT_INTERACT is not set
# CONFIG_INPUT_TMDC is not set
# CONFIG_INPUT_SIDEWINDER is not set
# CONFIG_INPUT_IFORCE_USB is not set
# CONFIG_INPUT_IFORCE_232 is not set
# CONFIG_INPUT_WARRIOR is not set
# CONFIG_INPUT_MAGELLAN is not set
# CONFIG_INPUT_SPACEORB is not set
# CONFIG_INPUT_SPACEBALL is not set
# CONFIG_INPUT_STINGER is not set
# CONFIG_INPUT_DB9 is not set
# CONFIG_INPUT_GAMECON is not set
# CONFIG_INPUT_TURBOGRAFX is not set

#
# AKMem(Another Kernel Memory)
#
CONFIG_AKMEM=y
# CONFIG_AKMEM_OWNMAJOR is not set
# CONFIG_QIC02_TAPE is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_INTEL_RNG is not set
# CONFIG_NVRAM is not set
# CONFIG_RTC is not set
CONFIG_MIPS_RTC=y
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
# CONFIG_AGP is not set
# CONFIG_DRM is not set
CONFIG_MIPS_TAS_DEV=y

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set

#
# File systems
#
# CONFIG_QUOTA is not set
# CONFIG_FS_POSIX_ACL is not set
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
CONFIG_REISERFS_IMMUTABLE_HACK=y
# CONFIG_REISERFS_IMMUTABLE_HACK_DEBUG is not set
# CONFIG_ADFS_FS is not set
# CONFIG_ADFS_FS_RW is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_BFS_FS is not set
CONFIG_EXT3_FS=y
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
# CONFIG_UMSDOS_FS is not set
CONFIG_VFAT_FS=y
# CONFIG_EFS_FS is not set
# CONFIG_JFFS_FS is not set
# CONFIG_JFFS2_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_TMPFS is not set
# CONFIG_RAMFS is not set
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
# CONFIG_ZISOFS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_NTFS_FS is not set
# CONFIG_NTFS_RW is not set
# CONFIG_HPFS_FS is not set
CONFIG_PROC_FS=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVFS_MOUNT is not set
# CONFIG_DEVFS_DEBUG is not set
# CONFIG_DEVPTS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX4FS_RW is not set
# CONFIG_ROMFS_FS is not set
CONFIG_EXT2_FS=y
# CONFIG_SYSV_FS is not set
CONFIG_UDF_FS=y
# CONFIG_UDF_RW is not set
# CONFIG_UFS_FS is not set
# CONFIG_UFS_FS_WRITE is not set
# CONFIG_XFS_FS is not set
# CONFIG_XFS_RT is not set
# CONFIG_XFS_QUOTA is not set

#
# Network File Systems
#
# CONFIG_CODA_FS is not set
# CONFIG_INTERMEZZO_FS is not set
CONFIG_NFS_FS=y
CONFIG_NFS_V3=y
# CONFIG_ROOT_NFS is not set
# CONFIG_NFSD is not set
# CONFIG_NFSD_V3 is not set
CONFIG_SUNRPC=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_SMB_FS=y
CONFIG_SMB_NLS_DEFAULT=y
CONFIG_SMB_NLS_REMOTE="cp437"
# CONFIG_NCP_FS is not set
# CONFIG_NCPFS_PACKET_SIGNING is not set
# CONFIG_NCPFS_IOCTL_LOCKING is not set
# CONFIG_NCPFS_STRONG is not set
# CONFIG_NCPFS_NFS_NS is not set
# CONFIG_NCPFS_OS2_NS is not set
# CONFIG_NCPFS_SMALLDOS is not set
# CONFIG_NCPFS_NLS is not set
# CONFIG_NCPFS_EXTRAS is not set
# CONFIG_ZISOFS_FS is not set
# CONFIG_ZLIB_FS_INFLATE is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
CONFIG_PS2_PARTITION=y
# CONFIG_MAC_PARTITION is not set
CONFIG_MSDOS_PARTITION=y
# CONFIG_BSD_DISKLABEL is not set
# CONFIG_MINIX_SUBPARTITION is not set
# CONFIG_SOLARIS_X86_PARTITION is not set
# CONFIG_UNIXWARE_DISKLABEL is not set
# CONFIG_LDM_PARTITION is not set
# CONFIG_SGI_PARTITION is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
CONFIG_SMB_NLS=y
CONFIG_NLS=y

#
# Native Language Support
#
CONFIG_NLS_DEFAULT="iso8859-15"
CONFIG_NLS_CODEPAGE_437=m
CONFIG_NLS_CODEPAGE_737=m
CONFIG_NLS_CODEPAGE_775=m
CONFIG_NLS_CODEPAGE_850=m
CONFIG_NLS_CODEPAGE_852=m
CONFIG_NLS_CODEPAGE_855=m
CONFIG_NLS_CODEPAGE_857=m
CONFIG_NLS_CODEPAGE_860=m
CONFIG_NLS_CODEPAGE_861=m
CONFIG_NLS_CODEPAGE_862=m
CONFIG_NLS_CODEPAGE_863=m
CONFIG_NLS_CODEPAGE_864=m
CONFIG_NLS_CODEPAGE_865=m
CONFIG_NLS_CODEPAGE_866=m
CONFIG_NLS_CODEPAGE_869=m
CONFIG_NLS_CODEPAGE_936=m
CONFIG_NLS_CODEPAGE_950=m
CONFIG_NLS_CODEPAGE_932=m
CONFIG_NLS_CODEPAGE_949=m
CONFIG_NLS_CODEPAGE_874=m
CONFIG_NLS_ISO8859_8=m
CONFIG_NLS_CODEPAGE_1251=m
CONFIG_NLS_ISO8859_1=y
CONFIG_NLS_ISO8859_2=m
CONFIG_NLS_ISO8859_3=m
CONFIG_NLS_ISO8859_4=m
CONFIG_NLS_ISO8859_5=m
CONFIG_NLS_ISO8859_6=m
CONFIG_NLS_ISO8859_7=m
CONFIG_NLS_ISO8859_9=m
CONFIG_NLS_ISO8859_13=m
CONFIG_NLS_ISO8859_14=m
CONFIG_NLS_ISO8859_15=y
CONFIG_NLS_KOI8_R=m
CONFIG_NLS_KOI8_U=m
CONFIG_NLS_UTF8=y

#
# Console drivers
#
# CONFIG_VGA_CONSOLE is not set
# CONFIG_MDA_CONSOLE is not set

#
# Frame-buffer support
#
# CONFIG_FB is not set
CONFIG_PS2_CONSOLE=y
# CONFIG_PS2_CONSOLE_SCROLLBACK is not set
# CONFIG_PS2_CONSOLE_LARGEBUF is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Sound
#
CONFIG_SOUND=y
# CONFIG_SOUND_BT878 is not set
# CONFIG_SOUND_CMPCI is not set
# CONFIG_SOUND_EMU10K1 is not set
# CONFIG_MIDI_EMU10K1 is not set
# CONFIG_SOUND_FUSION is not set
# CONFIG_SOUND_CS4281 is not set
# CONFIG_SOUND_ES1370 is not set
# CONFIG_SOUND_ES1371 is not set
# CONFIG_SOUND_ESSSOLO1 is not set
# CONFIG_SOUND_MAESTRO is not set
# CONFIG_SOUND_MAESTRO3 is not set
# CONFIG_SOUND_ICH is not set
# CONFIG_SOUND_RME96XX is not set
# CONFIG_SOUND_SONICVIBES is not set
# CONFIG_SOUND_TRIDENT is not set
# CONFIG_SOUND_MSNDCLAS is not set
# CONFIG_SOUND_MSNDPIN is not set
# CONFIG_SOUND_VIA82CXXX is not set
# CONFIG_MIDI_VIA82CXXX is not set
CONFIG_SOUND_OSS=y
# CONFIG_SOUND_TRACEINIT is not set
# CONFIG_SOUND_DMAP is not set
# CONFIG_SOUND_AD1816 is not set
# CONFIG_SOUND_SGALAXY is not set
# CONFIG_SOUND_ADLIB is not set
# CONFIG_SOUND_ACI_MIXER is not set
# CONFIG_SOUND_CS4232 is not set
# CONFIG_SOUND_SSCAPE is not set
# CONFIG_SOUND_GUS is not set
# CONFIG_SOUND_VMIDI is not set
# CONFIG_SOUND_TRIX is not set
# CONFIG_SOUND_MSS is not set
# CONFIG_SOUND_MPU401 is not set
# CONFIG_SOUND_NM256 is not set
# CONFIG_SOUND_MAD16 is not set
# CONFIG_SOUND_PAS is not set
# CONFIG_PAS_JOYSTICK is not set
# CONFIG_SOUND_PSS is not set
# CONFIG_SOUND_SB is not set
# CONFIG_SOUND_AWE32_SYNTH is not set
# CONFIG_SOUND_WAVEFRONT is not set
# CONFIG_SOUND_MAUI is not set
# CONFIG_SOUND_YM3812 is not set
# CONFIG_SOUND_OPL3SA1 is not set
# CONFIG_SOUND_OPL3SA2 is not set
# CONFIG_SOUND_YMFPCI is not set
# CONFIG_SOUND_YMFPCI_LEGACY is not set
# CONFIG_SOUND_UART6850 is not set
# CONFIG_SOUND_AEDSP16 is not set
# CONFIG_SOUND_TVMIXER is not set

#
# Input core support
#
CONFIG_INPUT=y
CONFIG_INPUT_KEYBDEV=y
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=y

#
# USB support
#
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_LONG_TIMEOUT is not set
# CONFIG_USB_UHCI is not set
# CONFIG_USB_UHCI_CONTROLFIRST is not set
# CONFIG_USB_UHCI_ALT is not set
CONFIG_USB_OHCI=y
# CONFIG_USB_NON_PCI_OHCI is not set
CONFIG_USB_OHCI_PS2=y
CONFIG_USB_AUDIO=y
# CONFIG_USB_BLUETOOTH is not set
CONFIG_USB_STORAGE=y
# CONFIG_USB_STORAGE_REUSE_HOST is not set
# CONFIG_USB_STORAGE_FIXWRITEPROTECT is not set
# CONFIG_USB_STORAGE_CB_WINLIKE is not set
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_DPCM is not set
# CONFIG_USB_STORAGE_HP8200e is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set
CONFIG_USB_HID=y
CONFIG_USB_HIDDEV=y
# CONFIG_USB_WACOM is not set
# CONFIG_USB_DC2XX is not set
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_SCANNER is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USB_HPUSBSCSI is not set
CONFIG_USB_PEGASUS=y
CONFIG_USB_KAWETH=y
CONFIG_USB_CATC=y
CONFIG_USB_CDCETHER=y
CONFIG_USB_USBNET=y
# CONFIG_USB_USS720 is not set

#
# USB Serial Converter support
#
CONFIG_USB_SERIAL=y
# CONFIG_USB_SERIAL_DEBUG is not set
CONFIG_USB_SERIAL_GENERIC=y
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
# CONFIG_USB_SERIAL_EMPEG is not set
CONFIG_USB_SERIAL_FTDI_SIO=y
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28 is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28X is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28XA is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA28XB is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA19 is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA18X is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA19W is not set
# CONFIG_USB_SERIAL_KEYSPAN_USA49W is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
# CONFIG_USB_SERIAL_OMNINET is not set
# CONFIG_USB_RIO500 is not set
CONFIG_USB_PD=m

#
# Kernel hacking
#
CONFIG_CROSSCOMPILE=y
# CONFIG_REMOTE_DEBUG is not set
# CONFIG_GDB_CONSOLE is not set
# CONFIG_DEBUG is not set
# CONFIG_MAGIC_SYSRQ is not set
# CONFIG_DEBUG_BUGVERBOSE is not set
# CONFIG_MIPS_UNCACHED is not set
CONFIG_MIPS_STACKTRACE=y
CONFIG_ZLIB=m

#
# Security options
#
# CONFIG_SECURITY is not set
deba5er
Posts: 166
Joined: Mon Feb 04, 2008 2:01 pm

Post by deba5er »

The Logitech EX110 Cordless Keyboard and Mouse works for me in both kloader and PS2-Linux/BlackRhino. It's $25 right now from tigerdirect.
rafael2k
Posts: 18
Joined: Sun Jan 14, 2007 2:41 am

binaries for the loader and kernel for ps2 slim

Post by rafael2k »

Hi all,
We are ready to test linux on a ps2 slim again ;)

we would like to know where we can download the latest kernel loader and kernel that works for ps2 slim.

how about the linux distribution, what do you use? blackrhino?

how about the old site:
http://mitglied.lycos.de/ps2dev/linux.html
?

Thanks a lot!
Mega Man
Posts: 260
Joined: Sat Jun 18, 2005 3:14 am
Contact:

Re: binaries for the loader and kernel for ps2 slim

Post by Mega Man »

rafael2k wrote:we would like to know where we can download the latest kernel loader and kernel that works for ps2 slim.
It is still the same since my last post.

Testversion of kernelloader only for slim PSTwo:
http://rapidshare.com/files/112377238/kloader.elf.html

Testversion of Linux kernel only for slim PSTwo.
http://rapidshare.com/files/112377834/vmlinux.gz.html
rafael2k wrote: how about the linux distribution, what do you use? blackrhino?
Nobody seems to come so far on a slim PSTwo, although it is possible, because USB is working now. Blackrhino is the easiest one to install.
rafael2k wrote: how about the old site:
http://mitglied.lycos.de/ps2dev/linux.html
?
This is still the official homepage. The offical stable downloadable files and CVS are hosted on sourceforge.
rafael2k
Posts: 18
Joined: Sun Jan 14, 2007 2:41 am

Not working on PS2 Slim

Post by rafael2k »

Hi Megaman and you all!

Well, We tried the combination you say, but the kernelloader now freezes after the kernelloader loads the kernel and initrd with the sentence: "Loading the modules"

The kernelloader already worked before, but usb never worked.

The PS2 here: SCPH-75010
Riff M-33
Posts: 2
Joined: Thu Jun 12, 2008 2:21 am

Post by Riff M-33 »

@ Mega Man!

I tried to install BlackRhino with your method, but I had used a SCPH-39004 and it doesnt run. Is there any way to install it otherwise? Ive Backups from the original Sony Linux 1.0, but I guess Iĺl need the PS2 Linux RTE CD 1.0 by CERF4? Can anyone send me an image? ...or another idea?

Peter
Questions are a burden to others, answers a prison for oneself
Mega Man
Posts: 260
Joined: Sat Jun 18, 2005 3:14 am
Contact:

Post by Mega Man »

rafael2k wrote:Well, We tried the combination you say, but the kernelloader now freezes after the kernelloader loads the kernel and initrd with the sentence: "Loading the modules"
citronalco has already reported how to avoid this problem:
citronalco wrote: kernel loader 1.8 and the new kernel work like a charm, mounting pendrive works too. But again the ervomdrvloader.irx error at kernel loader startup and also had to disable ADDRV to avoid kernel loader to hang.
@Riff M-33
I've also a SCPH-39004 and kernelloader was working on it. Can you explain what is not running?
Riff M-33 wrote:Is there any way to install it otherwise?
Kernelloader is currently the only way, when you don't can (or want to) buy Sony's Linux kit. It is legal to copy the second DVD, because everything is GPL.

Note: When you compile kernelloader while DVD 1 is inserted, the modules and the SBIOS from Sony are included. The result is that sound is working and CDVD is not working (the SBIOS calls need to be disabled to boot without hang).
deba5er
Posts: 166
Joined: Mon Feb 04, 2008 2:01 pm

sound modules

Post by deba5er »

Would the sound modules be hard to replace with free kernelloader modules? Is the coding difficulty high or nigh on impossible? ;-)
Post Reply