From patchwork Fri Feb 13 22:22:30 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: James Hebden X-Patchwork-Id: 439668 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 81FC51402A8 for ; Sat, 14 Feb 2015 09:22:43 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 746D29609A; Fri, 13 Feb 2015 22:22:42 +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 LyojqKp8XYDm; Fri, 13 Feb 2015 22:22:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 9C26496094; Fri, 13 Feb 2015 22:22:41 +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 9BA311C201E for ; Fri, 13 Feb 2015 22:22:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 94F7991CD2 for ; Fri, 13 Feb 2015 22:22:40 +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 Gh+C+KNmGmah for ; Fri, 13 Feb 2015 22:22:39 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.hebden.net.au (web-01.hebden.net.au [103.16.128.203]) by whitealder.osuosl.org (Postfix) with ESMTP id 22D998B41F for ; Fri, 13 Feb 2015 22:22:39 +0000 (UTC) Received: from yggdrasil.babs.loc (unknown [59.167.226.90]) by mail.hebden.net.au (Postfix) with ESMTPSA id 6B31C486003; Sat, 14 Feb 2015 09:22:35 +1100 (AEDT) From: James Hebden To: buildroot@busybox.net Date: Sat, 14 Feb 2015 09:22:30 +1100 Message-Id: <1423866150-23697-1-git-send-email-james@hebden.net.au> X-Mailer: git-send-email 2.1.4 Subject: [Buildroot] [PATCH 1/1] Added Raspberry Pi 2 defconfig 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" Changes v2 -> v3 - Reformatted defonfig using make savedefconfig Changes v1 -> v2 - Removed custom kernel configuration, used default kernel config for bcm2709 - Removed changes to rpi-firmware package, separate patch coming - Enabled EABIhf Signed-off-by: James Hebden --- configs/raspberrypi2_defconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 configs/raspberrypi2_defconfig diff --git a/configs/raspberrypi2_defconfig b/configs/raspberrypi2_defconfig new file mode 100644 index 0000000..571b026 --- /dev/null +++ b/configs/raspberrypi2_defconfig @@ -0,0 +1,14 @@ +BR2_arm=y +BR2_cortex_a7=y +BR2_ARM_EABIHF=y +BR2_ARM_FPU_NEON_VFPV4=y +BR2_TOOLCHAIN_BUILDROOT_LARGEFILE=y +BR2_TOOLCHAIN_BUILDROOT_CXX=y +BR2_TARGET_GENERIC_GETTY_PORT="tty1" +BR2_LINUX_KERNEL=y +BR2_LINUX_KERNEL_CUSTOM_GIT=y +BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/raspberrypi/linux.git" +BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="087966e5e3bafdeb9f9ac7578f4995c7cc7ecf1d" +BR2_LINUX_KERNEL_DEFCONFIG="bcm2709" +BR2_LINUX_KERNEL_ZIMAGE=y +BR2_PACKAGE_RPI_FIRMWARE=y