You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(10) |
Nov
(11) |
Dec
(5) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(5) |
Feb
(3) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(18) |
2004 |
Jan
(1) |
Feb
(4) |
Mar
(4) |
Apr
(1) |
May
(2) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
(2) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(1) |
2008 |
Jan
(3) |
Feb
|
Mar
(1) |
Apr
(13) |
May
(11) |
Jun
(10) |
Jul
(30) |
Aug
(17) |
Sep
(16) |
Oct
(16) |
Nov
(54) |
Dec
(43) |
2009 |
Jan
(39) |
Feb
(13) |
Mar
(28) |
Apr
(51) |
May
(137) |
Jun
(90) |
Jul
(69) |
Aug
(20) |
Sep
(19) |
Oct
(33) |
Nov
(14) |
Dec
(15) |
2010 |
Jan
(8) |
Feb
(6) |
Mar
(46) |
Apr
(57) |
May
(85) |
Jun
(74) |
Jul
(47) |
Aug
(34) |
Sep
(18) |
Oct
(1) |
Nov
(1) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(3) |
Jun
(12) |
Jul
(3) |
Aug
(6) |
Sep
(12) |
Oct
(11) |
Nov
(10) |
Dec
(14) |
2015 |
Jan
(11) |
Feb
(1) |
Mar
(8) |
Apr
(10) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2016 |
Jan
(9) |
Feb
(4) |
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <g_c...@ya...> - 2002-10-17 14:21:13
|
To solve the memory bug, we just have to change RAM detection in boot/setup.S I think we have to use BIOS int 15h (I don't remember function's number) and if the result is bigger than 16Mb, then we use the actual memory detection. I think it will be ok. I'll do that tonight (if I have enough time) :-) Happy hacking GaLi ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com |
From: Norikesh <nor...@ya...> - 2002-10-16 13:28:17
|
Hi: The mm bug is simple, it does not detect the system memory correctly, the computer has 0x800000 (8388608), but it detects 0x850000 (8716288). If I adjust the "total_memory" value manually, delphineOS works correctly. Well, I think we need an alternative routine to detect the RAM for older PC's. --- MODIFIED CODE --- ... ... if (nb_pages mod 1024 <> 0) then cmpt := cmpt + 1; printk('nb_pages: %h\n', [nb_pages]); printk('cr3_k: %h\n', [cr3_k]); for i:=0 to (cmpt - 1) do begin tmp := get_free_page; printk('pass#%d: %h\n', [i, tmp]); asm ... ... --- MODIFIED CODE --- --- RESULT WHIT BAD TOTAL_MEMORY VALUE (0x00850000) --- Loading DelphineOS ... OK ACPU: CPUID instruction not supported !!! nb_pages: 0x00000850 cr3_k: 0x0084f000 pass#0: 0x0084e000 pass#1: 0x0084d000 pass#2: 0x0084c000 adr: 0x00c00001 <-- here, reboot :-( --- RESULT WHIT BAD TOTAL_MEMORY VALUE (0x00850000) --- --- RESULT WHIT CORRECT TOTAL_MEMORY VALUE (0x00800000) --- Loading DelphineOS ... OK ACPU: CPUID instruction not supported !!! nb_pages: 0x00000800 cr3_k: 0x007ff000 pass#0: 0x007fe000 pass#1: 0x007fd000 adr: 0x00800001 Memory: 7520k/8192k available (38k kernel code, 148k data, 672k reserved) PCI: not on this machine !!! com1 at 0x03f8 com2 at 0x02f8 lpt1 at 0x0378 FDC: Nec765a compatible controller fd0: 1,44Mb hda: H3171-A2, 163Mb w/96k cache, CHS=904/10/34 Partition check: hda1 --- RESULT WHIT CORRECT TOTAL_MEMORY VALUE (0x00800000) --- What do you think? See you soon. _______________________________________________________________ Yahoo! Messenger Nueva versión: Webcam, voz, y mucho más ¡Gratis! Descárgalo ya desde http://messenger.yahoo.es |
From: Norikesh <nor...@ya...> - 2002-10-14 15:30:00
|
Hi: Here is the boot screen: --- SCRREEN --- Loading DelphineOS ... OK CPU: CPUID instruction not supported !!! Memory map: end_kernel : 0x00040000 i386_endbase : 0x000a0000 total_memory : 0x00850000 start mem_map : 0x00101000 mem_map has 2128 entries mem_map is 17024 bytes long start_mem : 0x00106000 Mb free pages : 1960 Reserved pages : 168 dma_pages : 1960 start_mem : 0x00108000 debut_pile_dma : 0x00107120 fin_pile_dma : 0x00105280 debut_pile : 0x00107120 fin_pile : 0x00107120 adr: 0x00c00001 --- SCRREEN --- The computer is one: 486DX 33Mhz (8Mb RAM) : processor : 0 vendor_id : unknown cpu family : 4 model : 0 model name : unknown stepping : unknown cpu MHz : fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : -1 wp : yes flags : bogomips : 16.53 Due to the "printk('adr: %h\n', [adr]);" is ejecuted, but the procedure does not completed, so I locate the failure in the part of the habilitation pages, but I think it's ok, so I will debug the previous part (pages fillin). See you all. _______________________________________________________________ Yahoo! Messenger Nueva versión: Webcam, voz, y mucho más ¡Gratis! Descárgalo ya desde http://messenger.yahoo.es |
From: <g_c...@ya...> - 2002-10-14 07:48:00
|
There is now a new member in the DelphineOS project : Norikesh. (welcome) I send this message because I don't know if all the list subsrcibers are noticed when a new member arrives. Norikesh has found a bug in memory management (apparently). To norikesh and to all others who find bugs : please register your bug in the 'bugs' section of the sourceforge website with a lot of details (if possible) and send a message to the DelphineOS dvlpt list so that every member can know there is a new bug. thanks. Happy hacking GaLi ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com |
From: <g_c...@ya...> - 2002-10-07 08:52:39
|
Hello all, If you find some bugs (is there any ??? :-) ) please use the 'bugs' section on the sourceforget website and write a message to the mailing list so that everyone can know there is the bug to correct. I have solve a problem in ide.pp Now, there is no problem with extended partitions detection (no more 'Bad sector signature' or whatever) Dmitriy, can you test the new partitions detection ??? You told me you had a problem. Happy hacking GaLi ===== -= La religion est le soupir de la créature opprimée, l'âme d'un monde sans coeur, comme elle est l'esprit des conditions sociales d'où l'esprit est exclu. Elle est l'opium du peuple [ Karl Marx et Friedrich Engels ] =- ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com |
From: <g_c...@ya...> - 2002-09-20 19:14:47
|
Hello all !!!! I think it was a great thing to create a mailing so that we can work better for DelphineOS :-) I've modified boot.S and setup.S and they now work very well (even on a friend's machine on which they didn't work from the beginning) Check the CVS server !!!! Happy hacking ... GaLi PS (to french people): désolé pour vous (edo et bubule) mais il faut se mettre à l'anglais si vous voulez que Dmitriy puisse capter quelque chose) ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com |
From: <bub...@fr...> - 2002-09-20 17:09:15
|
Yo, c cool ça la ! Eh, mè gété po o courant k'y avè 1 russe ! bienvenue Dmitriy. Bubule[ké_tt_foo] |