From patchwork Fri Jan 4 19:27:57 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 209524 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 63DC82C0080 for ; Sat, 5 Jan 2013 06:28:23 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 70F688B493; Fri, 4 Jan 2013 19:28:19 +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 IHuvmwHAPFsV; Fri, 4 Jan 2013 19:28:14 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id C0D068B343; Fri, 4 Jan 2013 19:28:13 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 8891D8F753 for ; Fri, 4 Jan 2013 19:28:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 676CD8B316 for ; Fri, 4 Jan 2013 19:28:12 +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 XBgirHhn792x for ; Fri, 4 Jan 2013 19:28:08 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id D3F998B343 for ; Fri, 4 Jan 2013 19:28:07 +0000 (UTC) Received: from asgard (host4.190-138-192.telecom.net.ar [190.138.192.4]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id r04JS0PG027675 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 4 Jan 2013 19:28:02 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1357327684; bh=FKjnyqk75/P+fBfbl9OMgc4TSiWuwX3pLTFdOZIpghg=; h=From:To:Cc:Subject:Date; b=H10aDtpDC6bMKjRVMTxBJs0BwOcwjQL+5Gm9E8Ur3x9t32HFL+9IWWczGyLPjtGlN 68MzjcfHBlsW06FDY2ONmrzuo2h4qvAyc+8jE1ZdKTiMX9C5r9M/7U4PzgOStZo8nV cmWT7elWrWpTnAcE1EZN9CJtzmJ9/u0taJprrrB0= Received: by asgard (sSMTP sendmail emulation); Fri, 04 Jan 2013 16:27:58 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 4 Jan 2013 16:27:57 -0300 Message-Id: <1357327677-12112-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] qemu/arm-nuri: add new sample config X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Add the new arm-nuri sample qemu config. Samsung Exynos4210 Cortex-A9 dual-core testing. Signed-off-by: Gustavo Zacarias --- board/qemu/arm-nuri/readme.txt | 10 ++++++++++ configs/qemu_arm_nuri_defconfig | 25 +++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 0 deletions(-) create mode 100644 board/qemu/arm-nuri/readme.txt create mode 100644 configs/qemu_arm_nuri_defconfig diff --git a/board/qemu/arm-nuri/readme.txt b/board/qemu/arm-nuri/readme.txt new file mode 100644 index 0000000..3925ab9 --- /dev/null +++ b/board/qemu/arm-nuri/readme.txt @@ -0,0 +1,10 @@ +Run the emulation with: + + qemu-system-arm -M nuri -kernel output/images/zImage -append "console=ttySAC1,115200" -smp 2 -serial null -serial stdio + +The login prompt will appear in the terminal that started Qemu. The +graphical window is the framebuffer. + +Startup time is slow because of the SMP CPU emulation so be patient. + +Tested with QEMU 1.3.0 diff --git a/configs/qemu_arm_nuri_defconfig b/configs/qemu_arm_nuri_defconfig new file mode 100644 index 0000000..0ae0de6 --- /dev/null +++ b/configs/qemu_arm_nuri_defconfig @@ -0,0 +1,25 @@ +# Architecture +BR2_arm=y +BR2_cortex_a9=y +BR2_ARM_ENABLE_NEON=y +BR2_VFP_FLOAT=y +# BR2_SOFT_FLOAT is not set + +# System +BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y +BR2_TARGET_GENERIC_GETTY=y +BR2_TARGET_GENERIC_GETTY_PORT="ttySAC1" + +# Filesystem +# BR2_TARGET_ROOTFS_TAR is not set +BR2_TARGET_ROOTFS_INITRAMFS=y + +# Lock to 3.7 headers to avoid breaking with newer kernels +BR2_KERNEL_HEADERS_3_7=y + +# Kernel +BR2_LINUX_KERNEL=y +BR2_LINUX_KERNEL_CUSTOM_VERSION=y +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="3.7.1" +BR2_LINUX_KERNEL_DEFCONFIG="exynos4" +BR2_LINUX_KERNEL_ZIMAGE=y