From patchwork Fri Apr 23 13:54:26 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Whitcroft X-Patchwork-Id: 50815 X-Patchwork-Delegate: apw@canonical.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id A2853B7D1E for ; Fri, 23 Apr 2010 23:54:40 +1000 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.69) (envelope-from ) id 1O5JKw-00088n-Jb; Fri, 23 Apr 2010 14:54:30 +0100 Received: from adelie.canonical.com ([91.189.90.139]) by chlorine.canonical.com with esmtp (Exim 4.69) (envelope-from ) id 1O5JKu-00088g-U3 for kernel-team@lists.ubuntu.com; Fri, 23 Apr 2010 14:54:28 +0100 Received: from hutte.canonical.com ([91.189.90.181]) by adelie.canonical.com with esmtp (Exim 4.69 #1 (Debian)) id 1O5JKu-0002qm-RO for ; Fri, 23 Apr 2010 14:54:28 +0100 Received: from 79-70-103-73.dynamic.dsl.as9105.com ([79.70.103.73] helo=localhost.localdomain) by hutte.canonical.com with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1O5JKu-0008TQ-M6 for kernel-team@lists.ubuntu.com; Fri, 23 Apr 2010 14:54:28 +0100 From: Andy Whitcroft To: kernel-team@lists.ubuntu.com Subject: [PATCH 1/1] UBUNTU: [Config] enforce -- ensure dm_mod is built-in for LVM Date: Fri, 23 Apr 2010 14:54:26 +0100 Message-Id: <1272030866-15373-1-git-send-email-apw@canonical.com> X-Mailer: git-send-email 1.7.0.4 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.9 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com BugLink: http://bugs.launchpad.net/bugs/560717 We much build-in dm-mod otherwise LVM cannot activate on boot, ensure this is so. Signed-off-by: Andy Whitcroft Acked-by: Stefan Bader Acked-by: Tim Gardner --- debian/config/enforce | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/debian/config/enforce b/debian/config/enforce index f879680..8180e94 100644 --- a/debian/config/enforce +++ b/debian/config/enforce @@ -32,3 +32,6 @@ value CONFIG_DEVTMPFS_MOUNT y # Ramdisk size should be a minimum of 64M value CONFIG_BLK_DEV_RAM_SIZE 65536 + +# LVM requires dm_mod built in to activate correctly (LP: #560717) +value CONFIG_BLK_DEV_DM y