From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 3192AE00A6C; Wed, 17 Jun 2015 11:03:03 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [209.85.220.171 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily * valid * -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Received: from mail-qk0-f171.google.com (mail-qk0-f171.google.com [209.85.220.171]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id B70D1E00A54 for ; Wed, 17 Jun 2015 11:03:00 -0700 (PDT) Received: by qkeo142 with SMTP id o142so13449769qke.1 for ; Wed, 17 Jun 2015 11:03:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references :organization; bh=gIRJh7xPaNnEuUKzSqpsFBwuVCWukceDy/V3112SUK4=; b=IHoSuITHbpicuoenAm5lj3k5FjZWATlWATSrbJDDKoTNa+lRGy2ie8jNEZB4D48DKK RBRB/0EKZ9C+NRRI3QVxo7YYVzm3iPUJhBVEtaw9mi/m5gJD7k25tIVpyUvLrN3yPRD4 SosrfAahemm238ZvWOWs863A1PDyfn/H1MNjJoJJBv/bO8YXFwXWarXCv1ghnv9u3vov +iW3RkT8Akjdtxoy9OKT0RH4DUOesNoTMCLqHaDrm08F64TgeKiwxo6O9bfggALdIu5V 9F1SzQjYBVM1IgeqXLpONRizH/z7+1uSRp8COgfqXlZS7/UeuNc+AZNPWeWA/aRpvT/s cFHg== X-Received: by 10.55.22.74 with SMTP id g71mr15455442qkh.28.1434564180463; Wed, 17 Jun 2015 11:03:00 -0700 (PDT) Received: from localhost ([177.100.226.57]) by mx.google.com with ESMTPSA id 10sm2528680qkp.39.2015.06.17.11.02.55 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 17 Jun 2015 11:02:57 -0700 (PDT) Sender: Otavio Salvador Received: by localhost (sSMTP sendmail emulation); Wed, 17 Jun 2015 15:02:53 -0300 From: Otavio Salvador To: meta-freescale Mailing List Date: Wed, 17 Jun 2015 15:02:26 -0300 Message-Id: <1434564146-11377-4-git-send-email-otavio@ossystems.com.br> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1434564146-11377-1-git-send-email-otavio@ossystems.com.br> References: <1434564146-11377-1-git-send-email-otavio@ossystems.com.br> Organization: O.S. Systems Software LTDA. Cc: Otavio Salvador Subject: [meta-fsl-arm][PATCH 4/4] imx-base.inc: Use linux-fslc-mx6 for all i.MX6 by default X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 18:03:03 -0000 The linux-fslc-mx6 recipe provides the FSL Community's i.MX6 Linux which is a Linux kernel based on Freescale GA release, used by FSL Community BSP in order to provide support for i.MX6 based platforms. Every machine can override this value but by default the linux-fslc-mx6 is now used. Change-Id: Ia80ad8b9a0a8347197a64062513e18ca5e204a3a Signed-off-by: Otavio Salvador --- conf/machine/include/imx-base.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc index fc50ee1..f64ba6b 100644 --- a/conf/machine/include/imx-base.inc +++ b/conf/machine/include/imx-base.inc @@ -109,8 +109,11 @@ PREFERRED_PROVIDER_virtual/libgl_mx6sx ?= "imx-gpu-viv" PREFERRED_PROVIDER_virtual/libgl_mx6sl ?= "mesa" PREFERRED_PROVIDER_virtual/libg2d_mx6 ?= "imx-gpu-viv" -PREFERRED_PROVIDER_virtual/kernel ??= "linux-imx" -PREFERRED_PROVIDER_virtual/kernel_mx3 ?= "linux-fslc" +# Handle default kernel +IMX_DEFAULT_KERNEL = "linux-imx" +IMX_DEFAULT_KERNEL_mx3 = "linux-fslc" +IMX_DEFAULT_KERNEL_mx6 = "linux-fslc-mx6" +PREFERRED_PROVIDER_virtual/kernel ??= "${IMX_DEFAULT_KERNEL}" SDCARD_ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext3" IMAGE_FSTYPES ?= "tar.bz2 ext3 sdcard" -- 2.4.3