From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 5F174E00961; Tue, 21 Mar 2017 07:34:34 -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,RCVD_IN_DNSWL_NONE 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] * -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no * trust * [74.55.86.74 listed in list.dnswl.org] Received: from smtp.webfaction.com (mail6.webfaction.com [74.55.86.74]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id E90D4E00939 for ; Tue, 21 Mar 2017 07:34:32 -0700 (PDT) Received: from [192.168.1.14] (c-73-10-189-235.hsd1.nj.comcast.net [73.10.189.235]) by smtp.webfaction.com (Postfix) with ESMTP id C9FCE21DE740; Tue, 21 Mar 2017 14:34:31 +0000 (UTC) To: Chunrong Guo , meta-freescale@yoctoproject.org References: <1489483936-19124-1-git-send-email-B40290@freescale.com> <1489483936-19124-5-git-send-email-B40290@freescale.com> From: Bob Cochran Message-ID: <69b78d31-2c75-1093-53df-d80f29d62b8a@mindchasers.com> Date: Tue, 21 Mar 2017 10:34:30 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 In-Reply-To: <1489483936-19124-5-git-send-email-B40290@freescale.com> Subject: Re: [PATCH 05/17] ls1012ardb: add machine file 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, 21 Mar 2017 14:34:34 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit On 03/14/2017 05:32 AM, Chunrong Guo wrote: > From: Ting Liu > > Signed-off-by: Ting Liu > --- > conf/machine/ls1012ardb.conf | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > create mode 100644 conf/machine/ls1012ardb.conf > > diff --git a/conf/machine/ls1012ardb.conf b/conf/machine/ls1012ardb.conf > new file mode 100644 > index 0000000..9298a86 > --- /dev/null > +++ b/conf/machine/ls1012ardb.conf > @@ -0,0 +1,21 @@ > +#@TYPE: Machine > +#@NAME: NXP LS1012ARDB board > +#@SOC: LSCH2 > +#@DESCRIPTION: Machine configuration for NXP QorIQ LS1012ARDB > +# with ARM Cortext-A53 core > +#@MAINTAINER: Zongchun Yu > + > +MACHINEOVERRIDES =. "fsl-lsch2:ls1012a:" > + > +require conf/machine/include/qoriq-arm64.inc > +require conf/machine/include/arm/arch-arm64.inc > + > +UBOOT_CONFIG ??= "qspi-secure-boot qspi" > +UBOOT_CONFIG[qspi] = "ls1012ardb_qspi_defconfig,,u-boot-dtb.bin" > +UBOOT_CONFIG[qspi-secure-boot] = "ls1012ardb_qspi_SECURE_BOOT_defconfig,,u-boot-dtb.bin" > + > +KERNEL_DEVICETREE ?= "freescale/fsl-ls1012a-rdb.dtb" > +KERNEL_DEFCONFIG ?= "${S}/arch/arm64/configs/defconfig" > + > +EXTRA_IMAGEDEPENDS += "ppa ls2-rcw" Looking at meta-freescale master & master-next this morning, nothing provides ppa for the ls1012a machine conf files. Looks like you need to at least update COMPATIBLE_MACHINE in recipes-bsp/ppa/ppa_git.bb ( didn't see a patch for this on the mail list ), but maybe more than this is required? If it's only this change required, let me know if you want me to submit the patch: --- a/recipes-bsp/ppa/ppa_git.bb +++ b/recipes-bsp/ppa/ppa_git.bb @@ -45,5 +45,5 @@ FILES_${PN}-image += "/boot" CLEANBROKEN = "1" PARALLEL_MAKE = "" -COMPATIBLE_MACHINE = "(ls1043a|ls1046a)" +COMPATIBLE_MACHINE = "(ls1043a|ls1046a|ls1012a)" PACKAGE_ARCH = "${MACHINE_ARCH}" > +USE_VT = "0"