From patchwork Tue Jul 21 08:46:04 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bamvor Jian Zhang X-Patchwork-Id: 498111 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 8360B140E0F for ; Tue, 21 Jul 2015 18:55:10 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4FA638B2AA; Tue, 21 Jul 2015 08:54:59 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9cZWf8XDD1CO; Tue, 21 Jul 2015 08:54:58 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 773488B38A; Tue, 21 Jul 2015 08:54:58 +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 955E11C15EF for ; Tue, 21 Jul 2015 08:54:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8F7E090F85 for ; Tue, 21 Jul 2015 08:54:16 +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 vxWbNCRENKYj for ; Tue, 21 Jul 2015 08:54:16 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from linux-j170.site (unknown [123.125.212.76]) by whitealder.osuosl.org (Postfix) with ESMTP id 1E68990FEF for ; Tue, 21 Jul 2015 08:54:16 +0000 (UTC) Received: by linux-j170.site (Postfix, from userid 1000) id B6AF41315; Tue, 21 Jul 2015 16:46:07 +0800 (CST) From: Bamvor Jian Zhang To: buildroot@busybox.net Date: Tue, 21 Jul 2015 16:46:04 +0800 Message-Id: <1437468364-19245-6-git-send-email-bamvor.zhangjian@huawei.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1437468364-19245-1-git-send-email-bamvor.zhangjian@huawei.com> References: <1437468364-19245-1-git-send-email-bamvor.zhangjian@huawei.com> Cc: thomas.petazzoni@free-electrons.com, gustavo.zacarias@free-electrons.com Subject: [Buildroot] [PATCH V3 5/5] aarch64: ilp32 defconfig examples 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" DO NOT APPLY. Test aarch64 lp64 through qemu_aarch64_virt_defconfig. Test aarch64 ilp32, aarch64_be lp64, aarch64_be ilp32 through the following config. Signed-off-by: Bamvor Jian Zhang --- configs/aarch64_be_defconfig | 2 ++ configs/aarch64_be_ilp32_defconfig | 8 ++++++++ configs/aarch64_ilp32_defconfig | 8 ++++++++ 3 files changed, 18 insertions(+) create mode 100644 configs/aarch64_be_defconfig create mode 100644 configs/aarch64_be_ilp32_defconfig create mode 100644 configs/aarch64_ilp32_defconfig diff --git a/configs/aarch64_be_defconfig b/configs/aarch64_be_defconfig new file mode 100644 index 0000000..6995953 --- /dev/null +++ b/configs/aarch64_be_defconfig @@ -0,0 +1,2 @@ +# Architecture +BR2_aarch64_be=y diff --git a/configs/aarch64_be_ilp32_defconfig b/configs/aarch64_be_ilp32_defconfig new file mode 100644 index 0000000..6a2848a --- /dev/null +++ b/configs/aarch64_be_ilp32_defconfig @@ -0,0 +1,8 @@ +# Architecture +BR2_aarch64_be=y +BR2_AARCH64_ILP32=y +BR2_TOOLCHAIN_EXTERNAL_PATH="/path/to/your/toolchain" +BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX="$(ARCH)-linux-gnu" +BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_16=y +BR2_TOOLCHAIN_EXTERNAL_INET_RPC=y +BR2_TOOLCHAIN_EXTERNAL_CXX=y diff --git a/configs/aarch64_ilp32_defconfig b/configs/aarch64_ilp32_defconfig new file mode 100644 index 0000000..2b59806 --- /dev/null +++ b/configs/aarch64_ilp32_defconfig @@ -0,0 +1,8 @@ +# Architecture +BR2_aarch64=y +BR2_AARCH64_ILP32=y +BR2_TOOLCHAIN_EXTERNAL_PATH="/home/bamvor/works/software/toolchain/gcc-linaro-4.9~git82c1251-aarch64_aarch64-ilp32-linux-gnu-20150310" +BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX="$(ARCH)-ilp32-linux-gnu" +BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_16=y +BR2_TOOLCHAIN_EXTERNAL_INET_RPC=y +BR2_TOOLCHAIN_EXTERNAL_CXX=y