18 Sep 2011 06:18
19 Sep 2011 11:03
Where to download kernel source?
Chiefdome <chiefdome <at> googlemail.com>
2011-09-19 09:03:45 GMT
2011-09-19 09:03:45 GMT
Hi, I m a newbie to the mailing-list. Where can I download the latest kernel source? Maybe by git? How long will kernel.org stay offline? -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo <at> vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
19 Sep 2011 11:06
Re: Where to download kernel source?
sannikov <sannikov <at> cs.karelia.ru>
2011-09-19 09:06:41 GMT
2011-09-19 09:06:41 GMT
On Mon, 19 Sep 2011 11:03:45 +0200, Chiefdome <chiefdome <at> googlemail.com> wrote: > Hi, I m a newbie to the mailing-list. Where can I download the latest > kernel source? > Maybe by git? How long will kernel.org stay offline? Hi. Try this: https://github.com/torvalds/linux -- WBR, Alexander Sannikov -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo <at> vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
21 Sep 2011 07:23
Re: Where to download kernel source?
Chandrabhanu Mahapatra <chandrabhanu.anand <at> gmail.com>
2011-09-21 05:23:12 GMT
2011-09-21 05:23:12 GMT
On Mon, Sep 19, 2011 at 2:33 PM, Chiefdome <chiefdome <at> googlemail.com> wrote: > > Hi, I m a newbie to the mailing-list. Where can I download the latest kernel source? > Maybe by git? How long will kernel.org stay offline? Hi, You can also try You can also try http://gitorious.org/ -- Chandrabhanu Mahapatra -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo <at> vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
21 Sep 2011 07:21
Re: Where to download kernel source?
sannikov <sannikov <at> cs.karelia.ru>
2011-09-21 05:21:26 GMT
2011-09-21 05:21:26 GMT
AFAIK https://github.com/torvalds/linux is official. ;) and https://github.com/sfrothwell/linux-next is repository for linux-next branch. Or you can find linux-source-2.6.* package in repository of your distro. On Wed, 21 Sep 2011 10:29:49 +0530, Chandrabhanu Mahapatra <chandrabhanu.anand <at> gmail.com> wrote: > You can also try http://gitorious.org/ [1]. > > On Mon, Sep 19, 2011 at 2:36 PM, sannikov wrote: > On Mon, 19 Sep 2011 11:03:45 +0200, Chiefdome > wrote: > > Hi, I m a newbie to the mailing-list. Where can I download the latest > > kernel source? > > Maybe by git? How long will kernel.org [4] stay offline? > > Hi. > > Try this: https://github.com/torvalds/linux [5] I found a lot of linux ports for different platforms, but not about mainline kernel. -- WBR, Alexander Sannikov. -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo <at> vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html(Continue reading)
23 Sep 2011 07:51
String Functions in Linux Kernel
Chandrabhanu Mahapatra <chandrabhanu.anand <at> gmail.com>
2011-09-23 05:51:50 GMT
2011-09-23 05:51:50 GMT
Is it safe to use string.h functions in kernel which are mostly user level functions. What is the difference when I write #include<string.h> and #include<linux/string.h> Where does each of the above point to in the linux kernel directory? In Linux-3.0/include/linux/string.h I found an entry for #include<string.h> What does the above exactly mean? Are there string safe function present in linux as like in windows driver model? -- Chandrabhanu Mahapatra -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo <at> vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
23 Sep 2011 10:56
Re: String Functions in Linux Kernel
Chandrabhanu Mahapatra <chandrabhanu.anand <at> gmail.com>
2011-09-23 08:56:17 GMT
2011-09-23 08:56:17 GMT
#include<string.h> actually refers to /usr/include/string.h present on the system whereas #include<linux/string.h> refers to /usr/src/linux-headers-2.6.35-22-generic/include/linux/string.h if your linux kernel version is 2.6.535.22 or to corresponding kernel directory you have targeted the compiler to. linux/string.h contains functions optimized for kernel but I still dont understand why does it still include string.h. On Fri, Sep 23, 2011 at 11:21 AM, Chandrabhanu Mahapatra <chandrabhanu.anand <at> gmail.com> wrote: > Is it safe to use string.h functions in kernel which are mostly user > level functions. > What is the difference when I write > #include<string.h> > and > #include<linux/string.h> > Where does each of the above point to in the linux kernel directory? > In Linux-3.0/include/linux/string.h I found an entry for > #include<string.h> > What does the above exactly mean? > Are there string safe function present in linux as like in windows driver model? > > -- > Chandrabhanu Mahapatra > -- -- Chandrabhanu Mahapatra(Continue reading)
25 Sep 2011 22:09
Linux
Ozan Şengündüz <ozansen2001 <at> yahoo.com>
2011-09-25 20:09:31 GMT
2011-09-25 20:09:31 GMT
Any localization and translation service provider. Tercüme, çeviri http://www.tercume24.com -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo <at> vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
26 Sep 2011 12:21
Undefined Functions in use
Chandrabhanu Mahapatra <chandrabhanu.anand <at> gmail.com>
2011-09-26 10:21:53 GMT
2011-09-26 10:21:53 GMT
Where can I find the definition of TIMER_INITIALIZER, DECLARE_MUTEX, DECLARE_MUTEX_LOCKED, softirq_vec,__builtin_constant_p, INIT_WORK, etc.? -- -- Chandrabhanu Mahapatra -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo <at> vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
27 Sep 2011 12:21
Re: Undefined Functions in use
Chandrabhanu Mahapatra <chandrabhanu.anand <at> gmail.com>
2011-09-27 10:21:58 GMT
2011-09-27 10:21:58 GMT
I used cscope and vim editor but still I am only finding the usage of the above symbols but no definition. Are these symbols GCC builtin symbols or ARM specific symbols. On Mon, Sep 26, 2011 at 4:30 PM, Xu, Anhua <anhua.xu <at> intel.com> wrote: > Install your tools ctags and use it to track all the symbols in the source. > google ctags, you will find solutions > > -----Original Message----- > From: linux-newbie-owner <at> vger.kernel.org [mailto:linux-newbie-owner <at> vger.kernel.org] On Behalf Of Chandrabhanu Mahapatra > Sent: Monday, September 26, 2011 6:22 PM > To: linux-newbie > Subject: Undefined Functions in use > > Where can I find the definition of TIMER_INITIALIZER, DECLARE_MUTEX, > DECLARE_MUTEX_LOCKED, softirq_vec,__builtin_constant_p, INIT_WORK, > etc.? -- -- Chandrabhanu Mahapatra -- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to majordomo <at> vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
RSS Feed