From patchwork Fri Jan 11 07:48:48 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 211218 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 0BF5C2C0086 for ; Fri, 11 Jan 2013 18:49:00 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7B8CF308B3; Fri, 11 Jan 2013 07:48:58 +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 GOI-Xih25rfP; Fri, 11 Jan 2013 07:48:55 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 9FE7C31256; Fri, 11 Jan 2013 07:48:55 +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 DBE178F74B for ; Fri, 11 Jan 2013 07:49:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8DB4F8BBDE for ; Fri, 11 Jan 2013 07:48:54 +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 iRETWC2DAM5l for ; Fri, 11 Jan 2013 07:48:53 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f171.google.com (mail-wi0-f171.google.com [209.85.212.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 6EA118B5C8 for ; Fri, 11 Jan 2013 07:48:53 +0000 (UTC) Received: by mail-wi0-f171.google.com with SMTP id hn14so1756763wib.4 for ; Thu, 10 Jan 2013 23:48:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:subject:date:message-id:x-mailer; bh=RUgR0W8Y58YXLZwYyeylb0wK3GzdeGgnJyR/fG2UrJE=; b=oDWBgRAxkjm6wU9TUb97BqX4N3vWuSQHCHqwTFi+/pDVNWKTtXhP37J9wchsP8Dvt9 AdkapjBHT6BFXzuJg/ID08cYO0hCSH8qkCVBuhltkk87+Y3v7X9kgmo/sC9agU5dt6Xf czQE66Vuykbnl+mvQc3qVyZfCYkDBaQlHT2+DX1liLhRJxHji1zz/8XZN1iYY2h53SZE JK37Wj//MoE6+B6Z06IGVlHRYWvnKKn1c4aeOAZETf9cjcCxmYmF9Ib58Xj3smNdP4p1 INqrd82h2rGhKmbVOixAd4PNEzSAFM5l60RSHvF1JBDZPapPCxayY6rxAPXOz8d07n+t AXww== X-Received: by 10.194.142.162 with SMTP id rx2mr7165504wjb.17.1357890531537; Thu, 10 Jan 2013 23:48:51 -0800 (PST) Received: from localhost.localdomain (host86-151-161-85.range86-151.btcentralplus.com. [86.151.161.85]) by mx.google.com with ESMTPS id p2sm5940365wic.7.2013.01.10.23.48.49 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 10 Jan 2013 23:48:50 -0800 (PST) From: spdawson@gmail.com To: buildroot@busybox.net Date: Fri, 11 Jan 2013 07:48:48 +0000 Message-Id: <1357890528-3005-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.10.4 Subject: [Buildroot] [PATCH] empty: needs MMU 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 From: Simon Dawson The empty package uses the fork() system call, and so requires MMU. Fixed autobuilder failures such as the following. http://autobuild.buildroot.net/results/4ad23e07b1bfe7bfd622aed8d54fa243b72eed59/build-end.log Signed-off-by: Simon Dawson --- package/empty/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/empty/Config.in b/package/empty/Config.in index 67b09fc..7fd0877 100644 --- a/package/empty/Config.in +++ b/package/empty/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_EMPTY bool "empty" + depends on BR2_USE_MMU # uses fork() help Run processes and applications under pseudo-terminal (PTY) sessions.