From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 81B11E00871; Tue, 23 Sep 2014 01:31:45 -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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mail.tekno-soft.it (li153-180.members.linode.com [109.74.206.180]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id AD4ABE00853 for ; Tue, 23 Sep 2014 01:31:42 -0700 (PDT) Received: from dragon.tekno-soft.it (host142-53-static.94-94-b.business.telecomitalia.it [94.94.53.142]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: robyf@tekno-soft.it) by mail.tekno-soft.it (Postfix) with ESMTPSA id 0B69217727 for ; Tue, 23 Sep 2014 08:37:32 +0000 (UTC) Message-ID: <54212FDB.4090405@tekno-soft.it> Date: Tue, 23 Sep 2014 10:31:23 +0200 From: Roberto Fichera Organization: TeknoSOFT User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.1.0 MIME-Version: 1.0 To: meta-freescale@yoctoproject.org X-Intuitive-System-MailScanner-Information: Please contact the ISP for more information X-Intuitive-System-MailScanner-ID: 0B69217727.A4E2E X-Intuitive-System-MailScanner: Found to be clean X-Intuitive-System-MailScanner-From: kernel@tekno-soft.it Subject: fdt_file u-boot variable not set correctly 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: Tue, 23 Sep 2014 08:31:45 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Hi All, I'm working on a custom board based on iMX6SLEVK, so I've created a new machine configuration you can find below: #@TYPE: Machine #@NAME: Freescale i.MX6SL QuadPlay #@SOC: i.MX6SL #@DESCRIPTION: Machine configuration for Freescale i.MX6SL QuadPlay Project #@MAINTAINER: Roberto Fichera include conf/machine/include/imx-base.inc include conf/machine/include/tune-cortexa9.inc SOC_FAMILY = "mx6:mx6sl" #KERNEL_DEVICETREE = "imx6sl-evk.dtb imx6sl-evk-csi.dtb imx6sl-evk-ldo.dtb" KERNEL_DEVICETREE = "quadplay-imx6sl.dtb quadplay-imx6sl-csi.dtb quadplay-imx6sl-ldo.dtb" UBOOT_CONFIG ??= "sd" UBOOT_CONFIG[sd] = "mx6slevk_config,sdcard" UBOOT_CONFIG[spinor] = "mx6slevk_spinor_config" UBOOT_CONFIG[mfgtool] = "mx6slevk_config" SERIAL_CONSOLE = "115200 ttymxc0" MACHINE_FEATURES += " pci" MACHINE_FIRMWARE += "linux-firmware-ath6k" PREFERRED_PROVIDER_virtual/kernel ?= "linux-quadplay" I've replace the KERNEL_DEVICETREE with my own DTS changes still derived from the imx6sl-evk. So far so good, once the sdcard build terminate and the image is dd'ed to the microSD, I've notice that the last quadplay-imx6sl-ldo.dtb is not set as fdt_file uboot environment variable but instead imx6sl-evk-ldo.dtb still used. I've also tried to do "bitbake u-boot-fslc -c cleansstate" before to bake the image but nothing still keeping the imx6sl-evk-ldo.dtb. Does anyone can suggest how to fix it? Thanks in advance, Roberto Fichera.