GSoC proposal review

2013-05-03 Thread Rushil Paul
Hi, Can somebody review my proposal here and see if it can be further improved? http://www.google-melange.com/gsoc/proposal/review/google/gsoc2013/rushilpaul/12001 -- Regards, Rushil ___ freebsd-hackers@freebsd.org mailing list

GSoC: PKGNG GUI Proposal Available for Review

2013-05-03 Thread Justin Edward Muniz
Thank you everyone for helping me create a suitable project to propose. I have submitted a draft of my proposal, though I am still in the process of enhancing it. If anyone has the time, please check it out and I'll gladly accept any feedback. I am new to Google Summer of Code, and just

Re: My GSOC proposal for review

2013-05-03 Thread Wojciech Puchar
point c. is what i would like the most and is really the most important for NON embedded system. others for embedded ones. d. won't really cut much f. may not save much but slow things down i wish you a success. On Thu, 2 May 2013, Amit Rawat wrote: Hi, I am attaching my gsoc proposal with

GSoC project proposal for review (Port GlusterFS to FreeBSD)

2013-05-03 Thread Mike Ma
Hi all, I'm planning to port GlusterFS as a GSoC project this year. And you can find the more information of the proposal here: http://www.google-melange.com/gsoc/proposal/review/google/gsoc2013/mikemandarine/26018 Any suggestions or comments are more than welcome. I'm looking forward to connect

Re: GSoC: PKGNG GUI Proposal Available for Review

2013-05-03 Thread Wojciech Puchar
good for today and future ladmins that cannot type a command. Any USEFUL proposals that add some real functionality? On Fri, 3 May 2013, Justin Edward Muniz wrote: Thank you everyone for helping me create a suitable project to propose. I have submitted a draft of my proposal, though I am

Linux/Cdorked.A and the tool provided by welivesecurity

2013-05-03 Thread Florent Peterschmitt
Hi, I read a news about a malware called Linux/Cdorked.A : http://www.welivesecurity.com/2013/04/26/linuxcdorked-new-apache-backdoor-in-the-wild-serves-blackhole/ They give a tool to know if our system is infected or not. Well, I have two questions : * Is this malware relevant on FreeBSD/*BSD

Re: GSoC: PKGNG GUI Proposal Available for Review

2013-05-03 Thread Teske, Devin
On May 3, 2013, at 1:33 AM, Wojciech Puchar wrote: good for today and future ladmins that cannot type a command. Any USEFUL proposals that add some real functionality? WIth great respect, I disagree with the dismissal that a GUI itself cannot bring value that a command-line tool couldn't

Re: GSoC: PKGNG GUI Proposal Available for Review

2013-05-03 Thread Kris Moore
On 05/03/2013 04:33, Wojciech Puchar wrote: good for today and future ladmins that cannot type a command. Any USEFUL proposals that add some real functionality? Since this will enable more people to run FreeBSD that otherwise wouldn't give it a second glance, I would say it is VERY useful.

Re: GSoC: PKGNG GUI Proposal Available for Review

2013-05-03 Thread Matt Olander
On Fri, May 3, 2013 at 6:57 AM, Kris Moore k...@pcbsd.org wrote: On 05/03/2013 04:33, Wojciech Puchar wrote: good for today and future ladmins that cannot type a command. Any USEFUL proposals that add some real functionality? Since this will enable more people to run FreeBSD that otherwise

Re: GSoC: PKGNG GUI Proposal Available for Review

2013-05-03 Thread Justin Edward Muniz
On Fri, May 3, 2013 at 1:51 PM, Matt Olander m...@ixsystems.com wrote: Great proposal, Justin! I look forward to seeing your work ;) Cheers, -matt Thank you very much for your support, Matt! As soon as I start committing code, I will share a link to my repository on this mailing-list.

ladmins that cannot type a command

2013-05-03 Thread Dieter BSD
good for today and future ladmins that cannot type a command. Any USEFUL proposals that add some real functionality? Since this will enable more people to run FreeBSD that otherwise wouldn't give it a second glance, I would say it is VERY useful. Really? How useful is FreeBSD going to be

net/udpxy occasional stream issuses

2013-05-03 Thread rank1seeker
I have udpxy-1.0.23 running for over 2 months now. Under 9.1-p3, it's streams over WiFI local net, occasionally hang or start skipping with static squares appearing ... Anyone tuned something to fix this? Bandwith of local WiFi net, is more than double sufficient. # /usr/local/sbin/udpxy -p

What is the correct way to declare assembler global variable ?

2013-05-03 Thread Yuri
I am trying to compile this code fragment into my program (taken from lib/libc/amd64/sys/sbrk.S): void my_func() { ... __asm__ __volatile__( movq .curbrk(%%rip), %%rax; lea .curbrk(%%rip), %%rdx; movq %%rax, %0; movq %%rdx, %1; : =r (my_curbrk), =r

Re: What is the correct way to declare assembler global variable ?

2013-05-03 Thread Konstantin Belousov
On Fri, May 03, 2013 at 01:10:29PM -0700, Yuri wrote: I am trying to compile this code fragment into my program (taken from lib/libc/amd64/sys/sbrk.S): void my_func() { ... __asm__ __volatile__( movq .curbrk(%%rip), %%rax; lea .curbrk(%%rip), %%rdx; movq %%rax,

Re: GSoC: PKGNG GUI Proposal Available for Review

2013-05-03 Thread Fernando ApesteguĆ­a
El 03/05/2013 20:00, Justin Edward Muniz justin.mu...@maine.edu escribiĆ³: On Fri, May 3, 2013 at 1:51 PM, Matt Olander m...@ixsystems.com wrote: Great proposal, Justin! I look forward to seeing your work ;) Cheers, -matt Thank you very much for your support, Matt! As soon as I

Re: What is the correct way to declare assembler global variable ?

2013-05-03 Thread Yuri
On 05/03/2013 13:30, Konstantin Belousov wrote: Formal answer is for you to read about the .type directive in the GNU as manual. Also, you need to read about either common symbols, or about the .size directive. But, note that you cannot access hidden libc symbols from the code which links to