From: Ryan Wang on 4 Aug 2010 04:40 Hi all, I noticed CONFIG_BASE_SMALL in different parts of the kernel code, with ifdef/ifndef. I wonder what does CONFIG_BASE_SMALL mean? And how can I configure it, e.g. through make menuconfig? thanks, -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
From: Yong Zhang on 4 Aug 2010 05:10 On Wed, Aug 04, 2010 at 04:38:12PM +0800, Ryan Wang wrote: > Hi all, > > I noticed CONFIG_BASE_SMALL in different parts > of the kernel code, with ifdef/ifndef. > I wonder what does CONFIG_BASE_SMALL mean? > And how can I configure it, e.g. through make menuconfig? Yeah, here: init/Kconfig: .... config BASE_SMALL int default 0 if BASE_FULL default 1 if !BASE_FULL .... config BASE_FULL default y bool "Enable full-sized data structures for core" if EMBEDDED help Disabling this option reduces the size of miscellaneous core kernel data structures. This saves memory on small machines, > > thanks, > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo(a)vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|
Pages: 1 Prev: Input: sysrq - drop tty argument from sysrq ops handlers Next: [GIT PULL] percpu for v2.6.36 |