You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(14) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(2) |
Feb
(1) |
Mar
(5) |
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ben...@id...> - 2004-05-25 08:34:08
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: <fr...@an...> - 2004-04-26 21:12:07
|
As you've probably noticed, we nearly have an operating system. We currently need a user system, time functions, process managment. After that we can add driver support and so. As I figured out we needed time support for xope I thought it would be normal to implent ANSI Libc support. I've wrote a couple of time functions, but there is no timer-yet. I've read we could use the PIT (Programmable Interrupt Timer) timer for this, so I'll need to study on this. I suppose we need interrerupts enabled and so. Daniel, how's the IDT code going ? So today I've been busy with adding ANSI Libc support in our libc. http://www.csse.uwa.edu.au/programming/ansic-library.html#stderr I have some functions of it now in xope, but _NOT_ all functions are implented yet. I've also cleaned up the source and so. Functions I wrote / changed today: strncpy (I've hacked original movedata) pow (I've hacked original power function of xope) sprintf time asctime (non-ansi) K_video_printf And maybe some others. The code is currently downloadable from http://frank.nedbsd.nl/xope-0.0.1.tar.gz I haven't put it on cvs yet, sorry. -- Frank Anemaet |
From: Miguel B. <mi...@li...> - 2004-03-24 14:34:37
|
Greetings, On Wed, 2004-03-24 at 00:11, fr...@an... wrote: > Miguel Bolanos writes: > > > Greetings, > > > > So i wanted to follow what you guys are doing and maybe in the future try > > to contribute a bit. > Cool! > You're welcome in the xope community :) > Thank you so much. I hope that i can make some contributions to this project in a near future > Btw, we discuss a lot on irc: irc.freenode.net #xope > We use the mailinglist mostly for major changes, like when the memory > managment system was finished. > Yups i sort of realized that yesterday when we were talking about the coding style yesterday. :) btw /me = MadTux ;-) best regards Mike > > -- Frank Anemaet > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > Xope-list mailing list > Xop...@li... > https://lists.sourceforge.net/lists/listinfo/xope-list > |
From: <fr...@an...> - 2004-03-24 06:11:13
|
Miguel Bolanos writes: > Greetings, > > So i wanted to follow what you guys are doing and maybe in the future try > to contribute a bit. Cool! You're welcome in the xope community :) Btw, we discuss a lot on irc: irc.freenode.net #xope We use the mailinglist mostly for major changes, like when the memory managment system was finished. -- Frank Anemaet |
From: Miguel B. <mi...@li...> - 2004-03-23 21:07:01
|
Greetings, So i wanted to follow what you guys are doing and maybe in the future try to contribute a bit. Keep doing the great work -- ----------------------miguel bolanos, systems administrator, linux labs ... ........ ..... .... 230 peachtree st nw ste 2701 the original linux labs atlanta.ga.us 30303 -since 1995 http://www.linuxlabs.com office 404.577.7747 fax 404.577.7743 ----------------------------------------------------------------------- |
From: <fr...@an...> - 2004-03-06 16:37:35
|
As you've probably noticed the xope site (http://xope.sf.net) has a new layout. -- Frank Anemaet |
From: <fr...@an...> - 2004-03-03 21:47:37
|
I'm back from my holiday in czech, and didn't do much on xope in czech ofcourse. I've added 2 screenshots of the current xope to the screenshot section: http://xope.sourceforge.net/screenshots/ Daniel has the interrupt managmant working and is almost done with the process managment (afaik). It's not visible in the screenshots. After this we can start making kernel device drivers, implent filesystem support and run programs. We're getting near to what we want! :-) -- Frank Anemaet |
From: <fr...@an...> - 2004-02-19 21:44:55
|
I got the source clean-ed up a bit, added a cursor. Decided to do it using software since the hardware cursor is slower. (it needs to communicate with a few registers, works nice though) I kept a bit to the indian hill coding style with my own changes here and there. (see video.c) I shall stay with this, if this is ok with you? The source is on cvs I suppose xope needs process managment now, for the ata driver. I read some stuff about the schedular and so, but I'm a bit short on time so I haven't studied a lot on the process managment yet. (nor the interrupt part) I stopped at the forks explanation (I could only think about food) Daniel you can start the filesystem or code process managment if you want, just send it to fr...@an... when done, I'll put it on cvs. Btw, send the interrupt part, so I can implent it in xope. NOTE: after friday I'll be on holiday in tjesk for about 1 week so I can't be online nor reply mail. (unless I find some way to use internet) -- Frank Anemaet |
From: <fr...@an...> - 2004-01-23 10:32:32
|
It seems like I've currently fixed paging (AGAIN), seems like it initialized now. The rest of the memory manager is not a problem I think. I think it will all be finished in January after all! The code : void VM_Pages() { unsigned int * mem; mem = (unsigned int *) 0x300000; /* Page Directory Entry */ mem[0] = (0x300000 + 0x1000) | 3; mem = (unsigned int *) 0x301000 ; /* Page Table Entry */ mem[0] = (0x302000) | 3; asm("movl $0x300000,%eax"); /* Put the Page-Directory Base address in eax */ asm("movl %eax,%cr3"); /* Set the pointer to the 1st Page-Directory Base in CR3 (Controll Register 3 / PDBR) */ asm("movl $0,%eax"); asm("addl $2147483648,%eax"); asm("movl %eax,%cr0"); /* Set bit 31 of CR0 (Controll Register 0, paging bit) */ asm("pushl $pagingdone"); asm("pagingdone:"); vsprintf("Virtual Memory %i Pages (%i Free bytes, %i Free Pages)\n", pages,(freepages*4096),freepages ); } Daniel, I didn't spoke to you for a while... wher've you been? How's the process managment thing going? -- Frank Anemaet |
From: <fr...@an...> - 2004-01-03 22:19:46
|
Hiya friends and family, It seems like I have the paging init working. You can get it from cvs. It wasn't hard at all, but it was hard to figure out that grub had already initialized paging and had to remove some stupid mistakes. We could add it to the config file? #define GRUB Thatway, it won't lose speed on other bootloaders. Best, Frank Anemaet |
From: <fr...@an...> - 2003-12-14 18:44:20
|
Hiya All! Last month I didn't do much on the os.. re-installed my os 3 times, had a harddisk crash etc. Anyhow, in this weekend I fixed the ATA driver. It detects the number of ATAs and reads a sector of one. The file harddisk.zip contains a screenshot. The code still needs some clean up and coding but it works. -- Frank Anemaet |
From: Frank A. <fr...@an...> - 2003-11-30 17:02:35
|
Hiya, I got all working again. I had a harddisk crash, I guess that's why the ATA driver didn't work. So I'm coding on the project again. Btw, I've just written a handbook. http://xope.sourceforge.net/readme Let me know what you think of it. -- Frank Anemaet |
From: Frank A. <fr...@an...> - 2003-11-15 21:07:32
|
Hi, Today I fucked up my linux partition by using vmware. It worked - I could boot linux and windows. I couldn't boot xope for some wickid reason. Anyhow, linux partition was fucked up so I installed netbsd. I've backuped the source ofcourse. About the memory managment: It does not work yet - when I set the paging bit in cr0 it crashes Anyhow, I don't have linux right now - so no LILO. I'll use GRUB for the coming time... I'll use a standard filesystem supported by GRUB for now. I think I'll use FFS and build xope support for that. I'll keep the bootblock code ofcourse, for when nook creates the official xope filesystem. (more filesystems supported shouldn't be a problem imo) -- Frank Anemaet |
From: Frank A. <fr...@an...> - 2003-11-09 21:12:25
|
Ok, this is a bit off topic but: should we support the ANSI LIBC in release 0.0.1? -- Frank Anemaet |
From: Frank A. <fr...@an...> - 2003-11-09 09:04:21
|
I will have to write a memory system before I can finnish the ATA driver/module. It will be done. -- Frank Anemaet |
From: Frank A. <fr...@an...> - 2003-11-05 21:21:08
|
Frank Anemaet writes: > http://www.netalive.org/codersguild/posts/1694.shtml > > -- Frank Anemaet Ok, just noticed that 0xEC idents the drive and all.. But it puts all the stuff in 1 sector. That's ok but 512Bytes per sector does not fit in 1 byte. (see os development resource center -> harddisks) I guess I'll have to do some resource on this.. but I suppose that most oses don't do 0xEC... They just use standard size or so? -- Frank Anemaet |
From: Frank A. <fr...@an...> - 2003-11-05 19:28:55
|
I have been busy with the ATA disk driver today. Currently have problems with the IDENTIFY drive function. I'll check if I can find something to use as example. -- Frank Anemaet |
From: Frank A. <fr...@an...> - 2003-11-04 10:42:32
|
Hiya all, What do you think of a meeting on irc between all the members of the mailing list? irc.freenode.net #xope Specify preferable time -- Frank Anemaet |
From: Frank A. <fr...@an...> - 2003-11-03 16:34:05
|
Hiya all! I have added some stuff to the design. (filesystem,group security etc) See: http://frank.nedbsd.nl/README Best, Frank |
From: Frank A. <fr...@an...> - 2003-11-02 09:32:15
|
nookie, test |
From: nayxx <na...@vo...> - 2003-11-01 17:39:02
|
------------------------------------------ Faites un voeu et puis Voila ! www.voila.fr |
From: Frank A. <fr...@an...> - 2003-11-01 15:20:37
|
Frank Anemaet writes:dada> test2da> da> da> -------------------------------------------------------da> This SF.net email is sponsored by: SF.net Giveback Program.da> Does SourceForge.net help you be more productive? Does itda> help you create better code? SHARE THE LOVE, and help us helpda> YOU! Click Here: http://sourceforge.net/donate/da> _______________________________________________da> Xope-list mailing listda> Xop...@li...da> https://lists.sourceforge.net/lists/listinfo/xope-list |
From: Frank A. <fr...@an...> - 2003-11-01 15:16:31
|
Frank Anemaet writes:dada> test2da> da> da> -------------------------------------------------------da> This SF.net email is sponsored by: SF.net Giveback Program.da> Does SourceForge.net help you be more productive? Does itda> help you create better code? SHARE THE LOVE, and help us helpda> YOU! Click Here: http://sourceforge.net/donate/da> _______________________________________________da> Xope-list mailing listda> Xop...@li...da> https://lists.sourceforge.net/lists/listinfo/xope-list |
From: Frank A. <fr...@an...> - 2003-11-01 15:06:06
|
test2 |
From: Frank A. <fr...@an...> - 2003-11-01 13:58:50
|
test |