From: Jean-Daniel P. <jd...@di...> - 2004-12-19 17:19:06
|
as kernel 2.4.29 provides several interesting harware improvement, not = to say also some igmp security flawness corrections, I put a cosmetic bruby patch targeted to 2.4.29-pre2 on my site : http://disjunkt.com.local/dualhead/ the patch itself : http://disjunkt.com.local/dualhead/bruby-2.4.29-pre2-20041217.bz2 -- Jean-Daniel Pauget T=E9l: +33 (0) 676 952 746 2, rue Andr=E9 PELCA 50580 Denneville-Plage France |
From: Aivils <ai...@un...> - 2004-12-21 13:09:07
|
On Sunday 19 December 2004 19:18, Jean-Daniel Pauget wrote: > > as kernel 2.4.29 provides several interesting harware improvement, not to > say also some igmp security flawness corrections, I put a cosmetic > bruby patch targeted to 2.4.29-pre2 on my site : > > http://disjunkt.com.local/dualhead/ > > the patch itself : > http://disjunkt.com.local/dualhead/bruby-2.4.29-pre2-20041217.bz2 Thank You. I'm still under Your 2.4.27. Mine dislikes 2.6.XX because of poor task scheduler. Aivils |
From: Hugo V. <hvw...@ya...> - 2004-12-21 17:47:17
|
--- Aivils <ai...@un...> wrote: > On Sunday 19 December 2004 19:18, Jean-Daniel Pauget > wrote: > > > > as kernel 2.4.29 provides several interesting > harware improvement, not to > > say also some igmp security flawness > corrections, I put a cosmetic > > bruby patch targeted to 2.4.29-pre2 on my site > : > > > > http://disjunkt.com.local/dualhead/ > > > > the patch itself : > > > http://disjunkt.com.local/dualhead/bruby-2.4.29-pre2-20041217.bz2 > > Thank You. I'm still under Your 2.4.27. > Mine dislikes 2.6.XX because of poor task scheduler. > Absolutely right. Forget gaming: I don't even run 2 users right. Perhaps a stronger CPU? I got only 850MHz. H. > Aivils > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT > Products from real users. > Discover which products truly live up to the hype. > Start reading now. > http://productguide.itmanagersjournal.com/ > _______________________________________________ > Linuxconsole-dev mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/linuxconsole-dev > __________________________________ Do you Yahoo!? Yahoo! Mail - now with 250MB free storage. Learn more. http://info.mail.yahoo.com/mail_250 |
From: Hugo V. <hvw...@ya...> - 2004-12-21 14:16:15
|
--- Jean-Daniel Pauget <jd...@di...> wrote: > > as kernel 2.4.29 provides several interesting > harware improvement, not to > say also some igmp security flawness > corrections, I put a cosmetic > bruby patch targeted to 2.4.29-pre2 on my site : > > http://disjunkt.com.local/dualhead/ You meant: http://disjunkt.com/dualhead/ > > the patch itself : > > http://disjunkt.com.local/dualhead/bruby-2.4.29-pre2-20041217.bz2 and: http://disjunkt.com/dualhead/bruby-2.4.29-pre2-20041217.bz2 H. > > -- > Jean-Daniel Pauget > > Tél: +33 (0) 676 952 746 > 2, rue André PELCA > 50580 Denneville-Plage > France > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT > Products from real users. > Discover which products truly live up to the hype. > Start reading now. > http://productguide.itmanagersjournal.com/ > _______________________________________________ > Linuxconsole-dev mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/linuxconsole-dev > __________________________________ Do you Yahoo!? All your favorites on one personal page Try My Yahoo! http://my.yahoo.com |
From: Hugo V. <hvw...@ya...> - 2004-12-25 14:56:12
|
Jean-Daniel: If you change these lines in your patch: 3295 (devcvte.c:1107) 10530 (vt_ioctl.c:697) 10547 (vt_ioctl.c:714) and make ->keyboard ->beeper instead Then you have the pcspeaker back, as per recent posting by Aivils. WFM except that you have to tell gdm not to beep and you have to insert a "beeper turner offer" into the sequence of init that reboots the system, because gdm beeps anyway and he uses gdk_beep() that apparently has problems turning the beep off. Something like this will do: #include <sys/ioctl.h> #include <linux/kd.h> #include <fcntl.h> int main( int argc, char **argv ) { int fd = open("/dev/tty1", O_WRONLY|O_NONBLOCK); ioctl(fd, KDMKTONE, 0); } Hugo --- Jean-Daniel Pauget <jd...@di...> wrote: > > as kernel 2.4.29 provides several interesting > harware improvement, not to > say also some igmp security flawness > corrections, I put a cosmetic > bruby patch targeted to 2.4.29-pre2 on my site : > > http://disjunkt.com.local/dualhead/ > > the patch itself : > > http://disjunkt.com.local/dualhead/bruby-2.4.29-pre2-20041217.bz2 > > -- > Jean-Daniel Pauget > > Tél: +33 (0) 676 952 746 > 2, rue André PELCA > 50580 Denneville-Plage > France > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT > Products from real users. > Discover which products truly live up to the hype. > Start reading now. > http://productguide.itmanagersjournal.com/ > _______________________________________________ > Linuxconsole-dev mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/linuxconsole-dev > __________________________________ Do you Yahoo!? Yahoo! Mail - Easier than ever with enhanced search. Learn more. http://info.mail.yahoo.com/mail_250 |
From: Jean-Daniel P. <jd...@di...> - 2005-01-04 14:49:32
|
new bruby patch for 2.4.29-pre3 (this last kernel corrects some security drills) and also speaker-correction as suggested on this list. available here : =09http://disjunkt.com/dualhead/ the pacth itself : =09http://disjunkt.com/dualhead/bruby-2.4.29-pre3-20050104.bz2 On Sat, 25 Dec 2004, Hugo Vanwoerkom wrote: > Jean-Daniel: > > If you change these lines in your patch: > 3295 (devcvte.c:1107) > 10530 (vt_ioctl.c:697) > 10547 (vt_ioctl.c:714) > and make ->keyboard ->beeper instead > > Then you have the pcspeaker back, as per recent > posting by Aivils. right, I also corrected the timer creation accordingly and your following troubles should disappear : > WFM except that you have to tell gdm not to beep and > you have to insert a "beeper turner offer" into the > sequence of init that reboots the system, because gdm > beeps anyway and he uses gdk_beep() that apparently > has problems turning the beep off. Something like this > [.../...] -- Jean-Daniel Pauget T=E9l: +33 (0) 676 952 746 2, rue Andr=E9 PELCA 50580 Denneville-Plage France |
From: Hugo V. <hvw...@ya...> - 2005-01-05 18:41:35
|
--- Jean-Daniel Pauget <jd...@di...> wrote: > > new bruby patch for 2.4.29-pre3 (this last > kernel corrects some > security drills) and also speaker-correction as > suggested on this list. > > available here : > http://disjunkt.com/dualhead/ > > the pacth itself : > > http://disjunkt.com/dualhead/bruby-2.4.29-pre3-20050104.bz2 > > > right, I also corrected the timer creation > accordingly and your > following troubles should disappear : Terrific! Works! But... No pitch! e.g following code: try it! #include <sys/ioctl.h> /* for ioctl() */ #include <linux/kd.h> /* for KDMTONE */ #include <sys/types.h> /* for open() */ #include <sys/stat.h> /* for open() */ #include <fcntl.h> /* for open() */ #include <sys/ioctl.h> /* for ioctl() */ #include <stdio.h> /* for perror() */ #include <stdlib.h> /* for exit() */ #include <unistd.h> /* for close() */ int main( int argc, char **argv ) { int fd = open("/dev/tty1", O_WRONLY|O_NONBLOCK); // ioctl(fd, KDMKTONE, 0); unsigned short msec = 100; /* This is for now ignored */ unsigned short freq = 450; /* The frequency of the tone */ for(int i=0; i<100; i++){ freq += 5; /* Play sound */ int rc = ioctl(fd, KDMKTONE, (msec << 16) | (1193180 / freq)); if(rc<0){ perror("Error playing sound"); close(fd); exit(-1); } // printf("%d ",i); usleep((unsigned long) msec + 1000); // ioctl(fd, KDMKTONE, 0); // this here after KDMKTONE makes a tick! } // printf("\n"); close(fd); return 0; } What do we have to do to get the pitch variation to work? Hugo. __________________________________ Do you Yahoo!? Yahoo! Mail - now with 250MB free storage. Learn more. http://info.mail.yahoo.com/mail_250 |
From: Jean-Daniel P. <jd...@di...> - 2005-01-06 10:08:21
|
On Wed, 5 Jan 2005, Hugo Vanwoerkom wrote: > Terrific! Works! But... No pitch! e.g following code: > try it! you're right > What do we have to do to get the pitch variation to > work? we need more debug ! :) the problem with bruby is : it allows the machine to be used by two people, so I cannot reboot mine every ten minute just for testing the new kernel, because of the other user of the machine ! I cannot plan to dig for pitch correction before several days, sorry... -- Jean-Daniel Pauget T=E9l: +33 (0) 676 952 746 2, rue Andr=E9 PELCA 50580 Denneville-Plage France |
From: Hugo V. <hvw...@ya...> - 2005-01-06 19:52:53
|
--- Jean-Daniel Pauget <jd...@di...> wrote: > On Wed, 5 Jan 2005, Hugo Vanwoerkom wrote: > > <snip> > we need more debug ! :) > the problem with bruby is : it allows the > machine to be used by two > people, so I cannot reboot mine every ten minute > just for testing the > new kernel, because of the other user of the > machine ! > I cannot plan to dig for pitch correction before > several days, sorry... I noticed that in /drivers/char/keyboard.c in kd_mksound 2 tests for SND_TONE and SND_BELL always both are true. So I changed line 3564 in your rc3 patch to "else if" instead of "if" and pitch is back. Regards, Hugo __________________________________ Do you Yahoo!? Yahoo! Mail - Find what you need with new enhanced search. http://info.mail.yahoo.com/mail_250 |