Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261945AbVAaH23 (ORCPT ); Mon, 31 Jan 2005 02:28:29 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261936AbVAaH0O (ORCPT ); Mon, 31 Jan 2005 02:26:14 -0500 Received: from waste.org ([216.27.176.166]:9708 "EHLO waste.org") by vger.kernel.org with ESMTP id S261938AbVAaHZz (ORCPT ); Mon, 31 Jan 2005 02:25:55 -0500 Date: Mon, 31 Jan 2005 01:25:51 -0600 From: Matt Mackall To: Andrew Morton X-PatchBomber: http://selenic.com/scripts/mailpatches Cc: linux-kernel@vger.kernel.org In-Reply-To: <1.687457650@selenic.com> Message-Id: <2.687457650@selenic.com> Subject: [PATCH 1/8] base-small: introduce the CONFIG_BASE_SMALL flag Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1094 Lines: 33 Add CONFIG_BASE_SMALL for miscellaneous core size that don't warrant their own options. Example users to follow. Signed-off-by: Matt Mackall Index: mm2/init/Kconfig =================================================================== --- mm2.orig/init/Kconfig 2005-01-30 21:26:29.000000000 -0800 +++ mm2/init/Kconfig 2005-01-30 21:51:08.000000000 -0800 @@ -286,6 +286,18 @@ reported. KALLSYMS_EXTRA_PASS is only a temporary workaround while you wait for kallsyms to be fixed. +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. + +config BASE_SMALL + int + default 0 if BASE_FULL + default 1 if !BASE_FULL + config FUTEX bool "Enable futex support" if EMBEDDED default y - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/