From patchwork Thu Apr 14 13:39:57 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julien Boibessot X-Patchwork-Id: 610465 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 3qm2273qBzz9sC3 for ; Thu, 14 Apr 2016 23:43:42 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id C0D6C3300A; Thu, 14 Apr 2016 13:43:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id s9QGmTU-RKxs; Thu, 14 Apr 2016 13:43:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 3BFE13066D; Thu, 14 Apr 2016 13:43:40 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 1B0081C158F for ; Thu, 14 Apr 2016 13:43:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 16D6F83EDF for ; Thu, 14 Apr 2016 13:43:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id n548n9mk4RZm for ; Thu, 14 Apr 2016 13:43:37 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp3-g21.free.fr (smtp3-g21.free.fr [212.27.42.3]) by whitealder.osuosl.org (Postfix) with ESMTPS id B382F8CEA3 for ; Thu, 14 Apr 2016 13:43:37 +0000 (UTC) Received: from localhost.localdomain (unknown [78.249.46.175]) by smtp3-g21.free.fr (Postfix) with ESMTP id 6270A13F769; Thu, 14 Apr 2016 13:43:00 +0200 (CEST) From: julien.boibessot@free.fr To: buildroot@busybox.net Date: Thu, 14 Apr 2016 15:39:57 +0200 Message-Id: <1460641197-12610-1-git-send-email-julien.boibessot@free.fr> X-Mailer: git-send-email 2.1.4 Cc: Julien BOIBESSOT Subject: [Buildroot] [PATCH] configs: add Armadeus Systems APF6 SOM basic support X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" From: Julien BOIBESSOT APF6 is an i.MX6 based SOM with an optional Cyclone 5 GX FPGA. Signed-off-by: Julien BOIBESSOT --- configs/armadeus_apf6_defconfig | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 configs/armadeus_apf6_defconfig diff --git a/configs/armadeus_apf6_defconfig b/configs/armadeus_apf6_defconfig new file mode 100644 index 0000000..a51dd5f --- /dev/null +++ b/configs/armadeus_apf6_defconfig @@ -0,0 +1,27 @@ +BR2_arm=y +BR2_cortex_a9=y +BR2_ARM_ENABLE_NEON=y +BR2_ARM_ENABLE_VFP=y +BR2_ARM_FPU_VFPV3=y + +# Linux headers same as kernel, a 3.19 series +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_19=y + +# System +BR2_TARGET_GENERIC_HOSTNAME="apf6" +BR2_TARGET_GENERIC_ISSUE="Welcome to Armadeus development platform !" +BR2_TARGET_GENERIC_GETTY_PORT="ttymxc3" + +# Kernel +BR2_LINUX_KERNEL=y +BR2_LINUX_KERNEL_CUSTOM_VERSION=y +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.19.8" +BR2_LINUX_KERNEL_PATCH="http://sourceforge.net/projects/armadeus/files/armadeus/armadeus-6.0/patches/linux-3.19-armadeus.patch.tar.gz" +BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7" +BR2_LINUX_KERNEL_DTS_SUPPORT=y +BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6q-apf6dev imx6dl-apf6dev" +BR2_LINUX_KERNEL_INSTALL_TARGET=y + +# Filesystem +BR2_TARGET_ROOTFS_EXT2=y +BR2_TARGET_ROOTFS_EXT2_4=y