From patchwork Thu Nov 7 19:09:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 289463 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 42E3A2C0099 for ; Fri, 8 Nov 2013 06:09:54 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 38E7A8B181; Thu, 7 Nov 2013 19:09:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RSG-dtjFpI01; Thu, 7 Nov 2013 19:09:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id D71758B0FA; Thu, 7 Nov 2013 19:09:51 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 671971C21E1 for ; Thu, 7 Nov 2013 19:09:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 601168E874 for ; Thu, 7 Nov 2013 19:09:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ecnUkK1btW8x for ; Thu, 7 Nov 2013 19:09:50 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by whitealder.osuosl.org (Postfix) with ESMTP id AC94588E91 for ; Thu, 7 Nov 2013 19:09:50 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id B08CD823; Thu, 7 Nov 2013 20:10:02 +0100 (CET) Received: from localhost (AToulouse-651-1-1-143.w92-149.abo.wanadoo.fr [92.149.56.143]) by mail.free-electrons.com (Postfix) with ESMTPSA id 616A1818 for ; Thu, 7 Nov 2013 20:10:02 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Thu, 7 Nov 2013 20:09:48 +0100 Message-Id: <1383851388-28586-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.8.1.2 Subject: [Buildroot] [PATCH] Config.in.legacy: select BR2_LEGACY for module-init-tools legacy option X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Commit 94c72087f3 ("module-init-tools: remove package") removed the module-init-tools package and therefore added the corresponding config option in Config.in.legacy. However, the commit forgot to add the "select BR2_LEGACY" that ensures the build cannot proceed until the user has acknowledged the change (i.e kmod replacing module-init-tools). This commit adds this missing "select BR2_LEGACY". Signed-off-by: Thomas Petazzoni Acked-by: Thomas De Schampheleire Acked-by: Arnout Vandecappelle (Essensium/Mind) --- Config.in.legacy | 1 + 1 file changed, 1 insertion(+) diff --git a/Config.in.legacy b/Config.in.legacy index d02f0a6..587afe1 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -123,6 +123,7 @@ config BR2_PACKAGE_MODULE_INIT_TOOLS bool "module-init-tools replaced by kmod" select BR2_PACKAGE_KMOD select BR2_PACKAGE_KMOD_TOOLS + select BR2_LEGACY help The 'module-init-tools' package has been removed, since it has been depracated upstream and replaced by 'kmod'.