Eudyptula Challenge Task 01
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below "Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time." And my make file is like this ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default: make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules The paramater for -C should be a variable. Allow it to be changed. Thanks, On Tue, Apr 29, 2014 at 12:10 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default: make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default
I hope you understand the -C switch :
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!? What you suggest me to use! Regards, N.G On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default
I hope you understand the -C switch :
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
what you suggest me to use!
Try Thunderbird ! Does a lot more than simply send email :)
Regards, N.G
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default
I hope you understand the -C switch :
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against
any
kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
On Fri, 13 Jun 2014 01:40:34 +0300, Nada Saif said:
Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
Personally, I use exmh. But that's pretty hardcore fringe. And I'm not moving off it, because I have somewhere north of 1 million archived emails and a 900+ line .procmailrc, and converting everything to something else would be *painful*. But "best" is a subjective term. You're almost certainly better off finding out how to make your preferred email software behave itself than moving to a client you don't know and understand just to submit tasks. % more /usr/src/linux/Documentation/email-clients.txt
-----Original Message----- From: kernelnewbies-bounces@kernelnewbies.org [mailto:kernelnewbies-bounces@kernelnewbies.org] On Behalf Of Valdis.Kletnieks@vt.edu Sent: Thursday, June 12, 2014 4:44 PM To: Nada Saif Cc: me storage; Pranay Srivastava; kernelnewbies Subject: Re: Eudyptula Challenge Task 01
On Fri, 13 Jun 2014 01:40:34 +0300, Nada Saif said:
Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
But "best" is a subjective term. You're almost certainly better off finding out how to make your preferred email software behave itself than moving to a client you don't know and understand just to submit tasks.
Unless you happened to be consigned to using Outlook because your employer's IT is all MS, through which it is impossible to send a plain text email without it getting munged one way or another. Jeff Haran
Jeff Haran <Jeff.Haran@citrix.com> writes:
Unless you happened to be consigned to using Outlook because your employer's IT is all MS, through which it is impossible to send a plain text email without it getting munged one way or another.
emacs runs fine on Windows too, so using Gnus is always an option for the most hardcore GNU evangelists. And I am sure there are a number of other email clients which will do a good job even if they run on Windows systems. If your aren't allowed to run anything but Outlook, then you just have to teach your employer about the BYOD hype :-) Bjørn (who have been using OS/2, Windows, Solaris and Linux based desktop systems at work, but never moved away from Gnus as primary email client)
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
Hi All, You can use yahoo or gmail email ids, Only care you need to select. Yahoo --- >> "Switch to Plain Text" Gmail ---->> "Rich Text" This option will disable the html formatting of the mails. -Anand Moon
is Really we need to use Email Client ? Don't we have another option using GMAIL ? Regards Sanjeev Sharma On Sun, Jun 15, 2014 at 2:57 PM, Abhishek Sharma <asharma.es@gmail.com> wrote:
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
You should not use Gmail since it will BASE64-encode your attachments (patches should be sent as plain text). Use a sane client like Alpine or Mutt instead. On Mon, Jun 16, 2014 at 1:47 PM, Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote:
On Mon, Jun 16, 2014 at 5:07 PM, sanjeev sharma <sanjeevsharmaengg@gmail.com> wrote:
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
I have tried to send in plain text mode using gmail , but it was rejected by "Little Penguin"
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
On Mon, Jun 16, 2014 at 5:22 PM, Kristofer Hallin <kristofer.hallin@gmail.com> wrote:
You should not use Gmail since it will BASE64-encode your attachments (patches should be sent as plain text). Use a sane client like Alpine or Mutt instead.
And thunderbird also working fine , if u select plain text mode .
On Mon, Jun 16, 2014 at 1:47 PM, Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote:
On Mon, Jun 16, 2014 at 5:07 PM, sanjeev sharma <sanjeevsharmaengg@gmail.com> wrote:
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
I have tried to send in plain text mode using gmail , but it was rejected by "Little Penguin"
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
so Installation of Email client is must.Let me see if any other way and probably we should have another way. Regards Sanjeev Sharma On Mon, Jun 16, 2014 at 5:38 PM, Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote:
On Mon, Jun 16, 2014 at 5:22 PM, Kristofer Hallin <kristofer.hallin@gmail.com> wrote:
You should not use Gmail since it will BASE64-encode your attachments (patches should be sent as plain text). Use a sane client like Alpine or Mutt instead.
And thunderbird also working fine , if u select plain text mode .
On Mon, Jun 16, 2014 at 1:47 PM, Sudip Mukherjee <sudipm.mukherjee@gmail.com> wrote:
On Mon, Jun 16, 2014 at 5:07 PM, sanjeev sharma <sanjeevsharmaengg@gmail.com> wrote:
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
I have tried to send in plain text mode using gmail , but it was rejected by "Little Penguin"
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
Hi Sanjeev, Please *read* the initial welcome email you received when you signed up for the Eudyptula Challenge. It 'specifically' states no HTML email, or base64-mime attachments and tells us, *don't* use Gmail or Microsoft Exchange for this set of tasks. 'I' also had difficulty understanding the reason behind this, so going through the link below helped me to understand why ? What is wrong with sending HTML or MIME messages? <http://www.linuxfromscratch.org/faq/nomime.html> And this will help configuring most email clients to send plain text : http://email.about.com/od/netiquettetips/qt/When-In-Doubt-Send-Plain-Text-Em... ( Keep in mind though plain text attachments might still be sent using base64 ) You can send email using git and through the command line if you have sendmail or postfix configured correctly. When there are delays in response time from Little Penguin, it is because the 'human's behind the scripts have other things to do ? They may have extremely busy work schedules and commitments just like us ? So have patience from experince I can say it may take a while but Little will always get back to you :) Good luck and have fun ! Aruna On Mon, Jun 16, 2014 at 7:37 AM, sanjeev sharma <sanjeevsharmaengg@gmail.com> wrote:
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
Regards Sanjeev Sharma
On Sun, Jun 15, 2014 at 2:57 PM, Abhishek Sharma <asharma.es@gmail.com>
wrote:
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com>
wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
On Mon, Jun 16, 2014 at 05:07:05PM +0530, sanjeev sharma wrote:
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
I met the same problem when I sent first mail to Eudyptula Challenge. I thinke below two links are helpful for configuring mutt mail client: http://nongeekshandbook.blogspot.fi/2009/02/mutt-email-client-that-sucks-les... http://nongeekshandbook.blogspot.fi/2009/03/mutt-color-configuration.html
Regards Sanjeev Sharma
On Sun, Jun 15, 2014 at 2:57 PM, Abhishek Sharma <asharma.es@gmail.com> wrote:
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- Best regards, Chen Weixiang (Alex)
On Mon, Jun 16, 2014 at 5:31 PM, Chen Weixiang <weixiangchen@gmail.com> wrote:
On Mon, Jun 16, 2014 at 05:07:05PM +0530, sanjeev sharma wrote:
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
I don't know why but I never had any problem sending my first exercises attachments (I'm now at 8) with gmail webmail. I just select "Plain text mode" and it's ok...
I met the same problem when I sent first mail to Eudyptula Challenge. I thinke below two links are helpful for configuring mutt mail client:
http://nongeekshandbook.blogspot.fi/2009/02/mutt-email-client-that-sucks-les... http://nongeekshandbook.blogspot.fi/2009/03/mutt-color-configuration.html
Regards Sanjeev Sharma
On Sun, Jun 15, 2014 at 2:57 PM, Abhishek Sharma <asharma.es@gmail.com> wrote:
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- Best regards, Chen Weixiang (Alex)
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
I just use the attached script from command line to send mails via gmail. Its much more convenient than configuring a new client. You'll need to change your mail and eudyptula id. Thanks - Manish On Mon, Jun 16, 2014 at 8:44 AM, Oussama Jabbari <oussama.jabbari@gmail.com> wrote:
On Mon, Jun 16, 2014 at 5:31 PM, Chen Weixiang <weixiangchen@gmail.com> wrote:
On Mon, Jun 16, 2014 at 05:07:05PM +0530, sanjeev sharma wrote:
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
I don't know why but I never had any problem sending my first exercises attachments (I'm now at 8) with gmail webmail. I just select "Plain text mode" and it's ok...
I met the same problem when I sent first mail to Eudyptula Challenge. I thinke below two links are helpful for configuring mutt mail client:
http://nongeekshandbook.blogspot.fi/2009/02/mutt-email-client-that-sucks-les... http://nongeekshandbook.blogspot.fi/2009/03/mutt-color-configuration.html
Regards Sanjeev Sharma
On Sun, Jun 15, 2014 at 2:57 PM, Abhishek Sharma <asharma.es@gmail.com> wrote:
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- Best regards, Chen Weixiang (Alex)
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
I have sent exercise attachment in zip file and may be i.e root cause of the problem .BTW i did select Plain text mode option but it didn't work and i get complain from Little Penguin. Regars Sanjeev Sharma On Mon, Jun 16, 2014 at 9:55 PM, Manish Katiyar <mkatiyar@gmail.com> wrote:
I just use the attached script from command line to send mails via gmail. Its much more convenient than configuring a new client. You'll need to change your mail and eudyptula id. Thanks - Manish
On Mon, Jun 16, 2014 at 8:44 AM, Oussama Jabbari <oussama.jabbari@gmail.com> wrote:
On Mon, Jun 16, 2014 at 5:31 PM, Chen Weixiang <weixiangchen@gmail.com> wrote:
On Mon, Jun 16, 2014 at 05:07:05PM +0530, sanjeev sharma wrote:
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
I don't know why but I never had any problem sending my first exercises attachments (I'm now at 8) with gmail webmail. I just select "Plain text mode" and it's ok...
I met the same problem when I sent first mail to Eudyptula Challenge. I thinke below two links are helpful for configuring mutt mail client:
http://nongeekshandbook.blogspot.fi/2009/02/mutt-email-client-that-sucks-les... http://nongeekshandbook.blogspot.fi/2009/03/mutt-color-configuration.html
Regards Sanjeev Sharma
On Sun, Jun 15, 2014 at 2:57 PM, Abhishek Sharma <asharma.es@gmail.com> wrote:
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- Best regards, Chen Weixiang (Alex)
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Attached a ZIP file? If you _read_ the instructions for the challenge, it states that 'but for all tasks you can't send base64 attachments, as I don't know what to do with them. Just a "normal" attachment, in text form, is fine, and preferred.' Just insert patches as plain text, nothing else. On Tue, Jun 17, 2014 at 6:20 AM, sanjeev sharma <sanjeevsharmaengg@gmail.com> wrote:
I have sent exercise attachment in zip file and may be i.e root cause of the problem .BTW i did select Plain text mode option but it didn't work and i get complain from Little Penguin.
Regars Sanjeev Sharma
On Mon, Jun 16, 2014 at 9:55 PM, Manish Katiyar <mkatiyar@gmail.com> wrote:
I just use the attached script from command line to send mails via gmail. Its much more convenient than configuring a new client. You'll need to change your mail and eudyptula id. Thanks - Manish
On Mon, Jun 16, 2014 at 8:44 AM, Oussama Jabbari <oussama.jabbari@gmail.com> wrote:
On Mon, Jun 16, 2014 at 5:31 PM, Chen Weixiang <weixiangchen@gmail.com> wrote:
On Mon, Jun 16, 2014 at 05:07:05PM +0530, sanjeev sharma wrote:
is Really we need to use Email Client ? Don't we have another option using GMAIL ?
I don't know why but I never had any problem sending my first exercises attachments (I'm now at 8) with gmail webmail. I just select "Plain text mode" and it's ok...
I met the same problem when I sent first mail to Eudyptula Challenge. I thinke below two links are helpful for configuring mutt mail client:
http://nongeekshandbook.blogspot.fi/2009/02/mutt-email-client-that-sucks-les... http://nongeekshandbook.blogspot.fi/2009/03/mutt-color-configuration.html
Regards Sanjeev Sharma
On Sun, Jun 15, 2014 at 2:57 PM, Abhishek Sharma <asharma.es@gmail.com> wrote:
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- Best regards, Chen Weixiang (Alex)
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
So Thunderbird client can work out of Box to submit Assignment & We can also attach ".c" ".h" files too if required against the Assignment. Regards Sanjeev Sharma On Sun, Jun 15, 2014 at 2:57 PM, Abhishek Sharma <asharma.es@gmail.com> wrote:
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Hi Sanjeev, Please share the steps to configure Thunderbird so that it benefits all of us. -Anand Moon On Wednesday, June 18, 2014 4:37 PM, sanjeev sharma <sanjeevsharmaengg@gmail.com> wrote: So Thunderbird client can work out of Box to submit Assignment & We can also attach ".c" ".h" files too if required against the Assignment. Regards Sanjeev Sharma On Sun, Jun 15, 2014 at 2:57 PM, Abhishek Sharma <asharma.es@gmail.com> wrote:
On 13-06-2014 AM 04:10, Nada Saif wrote:
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Regards, N.G Thunderbird
Regards, Abhishek Sharma
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default I hope you understand the -C switch : make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
--- This email is free from viruses and malware because avast! Antivirus protection is active. http://www.avast.com
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
On Wed, 18 Jun 2014 10:43:42 -0700, Anand Moon said:
Hi Sanjeev, Please share the steps to configure Thunderbird so that it benefits all of us.
% grep -i thunder /usr/src/linux-next/Documentation/email-clients.txt Thunderbird (GUI) Thunderbird is an Outlook clone that likes to mangle text, but there are ways The easiest thing to do with Thunderbird and patches is to use an - Edit your Thunderbird config settings so that it won't use format=flowed. thunderbird's registry editor. If you're doing the challenge, you have the info already in your source tree....
There may be chance that http://lxr.free-electrons.com/source/Documentation/email-clients.txt may confuses most of us because Editor Instruction is not very clear so we should follow following steps after installing ThunderBird Email Client. 1:Select compose New Email option by clicking on Write button. 2:Go to "options->formats and select "Plain Text only" 3:Go to "options->Character Encoding and select "Unicode (UTF 8) you are ready to submit your assignment. Regards Sanjeev Sharma On Wed, Jun 18, 2014 at 11:38 PM, <Valdis.Kletnieks@vt.edu> wrote:
On Wed, 18 Jun 2014 10:43:42 -0700, Anand Moon said:
Hi Sanjeev, Please share the steps to configure Thunderbird so that it benefits all of us.
% grep -i thunder /usr/src/linux-next/Documentation/email-clients.txt Thunderbird (GUI) Thunderbird is an Outlook clone that likes to mangle text, but there are ways The easiest thing to do with Thunderbird and patches is to use an - Edit your Thunderbird config settings so that it won't use format=flowed. thunderbird's registry editor.
If you're doing the challenge, you have the info already in your source tree....
Hi, Which email client is best to submit tasks . I use gmail , and I get a problem with attachment base64!?
What you suggest me to use!
Mutt
Regards, N.G
On Tue, Apr 29, 2014 at 6:34 PM, Pranay Srivastava <pranjas@gmail.com> wrote:
On Tue, Apr 29, 2014 at 8:40 PM, me storage <me.storage126@gmail.com> wrote:
Hi i every one i am new to linux kernel programming .I am participating in Eudyptula Challenge .Recently i submitted my solutions to Task 01 but i gives me reply like the below
"Please read the requirements for the Makefile and allow the module to be built against any kernel source tree on the filesystem, not just those kernels that happened to be installed in /lib/ at some point in time."
And my make file is like this
ifneq ($(KERNELRELEASE),) obj-m += helloworld.o else default
I hope you understand the -C switch :
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules clean: make -C /lib/modules/$(shell uname -r)/bulid M=$(PWD) clean end
If not then find it out and see what you need to change.
So can any please tell me how to allow the module to be built against any kernel source tree on the filesystem? or can any one pleae tell me what does it mean? Thank you
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- ---P.K.S
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies
-- Vlad Ungureanu
participants (19)
-
Abhishek Sharma -
Anand Moon -
Anurudh Tiwari -
Aruna Hewapathirane -
Bjørn Mork -
Chen Weixiang -
Jeff Haran -
Kai Bojens -
Kristofer Hallin -
Manish Katiyar -
me storage -
Nada Saif -
Oussama Jabbari -
Pranay Srivastava -
sanjeev sharma -
Sudip Mukherjee -
Valdis.Kletnieks@vt.edu -
Vitor Braga -
Vlad Ungureanu