From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-da0-f48.google.com (mail-da0-f48.google.com [209.85.210.48]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by yocto-www.yoctoproject.org (Postfix) with ESMTPS id 38A4CE0144A for ; Tue, 19 Feb 2013 19:56:09 -0800 (PST) Received: by mail-da0-f48.google.com with SMTP id v40so3320021dad.21 for ; Tue, 19 Feb 2013 19:56:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=JXRJpi+FEmGvOOA4VXZw1rw70U02h+EPZuqmxEpimHE=; b=DmSID1RcTov77JAF4NyyMmglgibtUTcgbhC871hZJerX4ufTFudQWLagDALFKX3E+c aHBAkSKKBp2QsEPbJ007YD2VVSmvRgmwuSz+oFtYGSnf7LgfeHdFMPLUlX6RDyxrMK6v nDnXA+pnLezURd0EQBWDGizciWxfkoyo9ftxYiJu29Yq9TaaxGmGCKFCuRZjzgcFqKrJ 8wHRueLip/gsq4k1KEedfLQksvMQR2Lf97+TAQSGEOEH17L10k1rBnyFVxbrfooMt23P wQA+eSuruZf2hiaZ9p7MWKMCg1QUyc48o8sY2JCuMlyEWR0+zIqASN8u8Fauj17sxTO7 2btw== X-Received: by 10.66.85.1 with SMTP id d1mr51287625paz.81.1361332568970; Tue, 19 Feb 2013 19:56:08 -0800 (PST) Received: from localhost.localdomain (mobile-166-137-186-006.mycingular.net. [166.137.186.6]) by mx.google.com with ESMTPS id u10sm59559530pax.14.2013.02.19.19.56.07 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 19 Feb 2013 19:56:08 -0800 (PST) From: John Weber To: meta-freescale@yoctoproject.org Date: Tue, 19 Feb 2013 21:55:59 -0600 Message-Id: <1361332559-3399-2-git-send-email-rjohnweber@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1361332559-3399-1-git-send-email-rjohnweber@gmail.com> References: <1361332559-3399-1-git-send-email-rjohnweber@gmail.com> Subject: [meta-fsl-arm-extra][PATCH v2 2/2] Add wandboard dual machine conf 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, 20 Feb 2013 03:56:09 -0000 This patch adds conf/machine file for Wandboard Dual to meta-fsl-arm-extra. Upstream-Status: Submitted [meta-freescale@yoctoproject.org] Changes since v1: Added description Added upstream-status Reversed the patch order Signed-off-by: John Weber --- conf/machine/wandboard-dual.conf | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 conf/machine/wandboard-dual.conf diff --git a/conf/machine/wandboard-dual.conf b/conf/machine/wandboard-dual.conf new file mode 100644 index 0000000..483efc4 --- /dev/null +++ b/conf/machine/wandboard-dual.conf @@ -0,0 +1,20 @@ +#@TYPE: Machine +#@NAME: i.MX6 Wandboard Dual +#@DESCRIPTION: Machine configuration for i.MX6 Wandboard Dual + +include conf/machine/include/imx-base.inc +include conf/machine/include/tune-cortexa9.inc + +SOC_FAMILY = "mx6dl:mx6" + +KERNEL_DEVICETREE = "${S}/arch/arm/boot/dts/imx6dl-wandboard.dts" + +PREFERRED_PROVIDER_u-boot = "u-boot-imx" + +UBOOT_MACHINE = "wandboard_config" +UBOOT_SUFFIX = "bin" +UBOOT_PADDING = "2" + +SERIAL_CONSOLE = "115200 ttymxc1" + +MACHINE_FEATURES += " pci wifi bluetooth" -- 1.7.9.5