From patchwork Fri Jan 11 17:55:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Hadjinlian X-Patchwork-Id: 211391 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 22DCC2C0334 for ; Sat, 12 Jan 2013 04:55:41 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id CFE8630DF5; Fri, 11 Jan 2013 17:55:39 +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 DDDr7gQE8zk5; Fri, 11 Jan 2013 17:55:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id AC34F20681; Fri, 11 Jan 2013 17:55:37 +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 B1C7E8F74B for ; Fri, 11 Jan 2013 17:55:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6815B8BE1B for ; Fri, 11 Jan 2013 17:55:36 +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 FZLwaz+qt09p for ; Fri, 11 Jan 2013 17:55:31 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f42.google.com (mail-ee0-f42.google.com [74.125.83.42]) by whitealder.osuosl.org (Postfix) with ESMTPS id 504D08C83B for ; Fri, 11 Jan 2013 17:55:14 +0000 (UTC) Received: by mail-ee0-f42.google.com with SMTP id b47so613453eek.29 for ; Fri, 11 Jan 2013 09:55:12 -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; bh=PUJdLexBHtWMMsVoUnng215OGxRdxEA60/8GYiLuC/4=; b=loyNmpvmrQP8xh801YIsd75epHQ2JwpeQbvjGNJ5K8K76RC6VjoVZIyjTP6Cj7WRxs Uurwl09gBGsIbmMzNTFBsKHaL3XnainpWp0s7FNHB8MEvEfjvKi8j0WZdvtycXS42mRx Opr1PayA71PXXDDjSAGwXHjxOMd8nulT+MboPG4/1BPwdF2L0A0iMv2dRlESUBhxZPhN EADFxQXHHHrgyHI1y5hcgvY1LKc/jcyT8MGAUHxjAV9Qk+JKFCqsdMoF6SIQOrvx4NFW ARkVPvsCaCGn3pt8inSfmXLCJB/Y7TbQy5+gkNSKHnc1Vjzlsteogizsr7HqYAOh/m3n wN3Q== X-Received: by 10.14.202.3 with SMTP id c3mr203819247eeo.4.1357926912492; Fri, 11 Jan 2013 09:55:12 -0800 (PST) Received: from localhost (193.5-14-84.ripe.coltfrance.com. [84.14.5.193]) by mx.google.com with ESMTPS id z8sm9353432eeo.11.2013.01.11.09.55.10 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 11 Jan 2013 09:55:11 -0800 (PST) From: Maxime Hadjinlian To: buildroot@busybox.net Date: Fri, 11 Jan 2013 18:55:05 +0100 Message-Id: <1357926905-26350-1-git-send-email-maxime.hadjinlian@gmail.com> X-Mailer: git-send-email 1.7.10.4 Subject: [Buildroot] [PATCH] rpi-firmware: Add default kernel name to config.txt 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 The default name of the kernel binary for the RaspberryPi is kernel.img, it's a only a zImage kernel renamed. Since buildroot will build a zImage, the default config uses that should use it instead of forcing the user to rename a file. Signed-off-by: Maxime Hadjinlian --- package/rpi-firmware/config.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/package/rpi-firmware/config.txt b/package/rpi-firmware/config.txt index 2cabd68..da212c4 100644 --- a/package/rpi-firmware/config.txt +++ b/package/rpi-firmware/config.txt @@ -6,6 +6,7 @@ arm_freq=700 core_freq=250 +kernel='zImage' disable_overscan=1 gpu_mem_256=100 gpu_mem_512=100