From patchwork Mon Sep 26 00:52:29 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg Ungerer X-Patchwork-Id: 9350029 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 9C780607F0 for ; Mon, 26 Sep 2016 00:54:58 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8D7FE28BEA for ; Mon, 26 Sep 2016 00:54:58 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8262928C49; Mon, 26 Sep 2016 00:54:58 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 3AA4A28BEA for ; Mon, 26 Sep 2016 00:54:58 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.85_2 #1 (Red Hat Linux)) id 1boKAx-00021C-QU; Mon, 26 Sep 2016 00:53:43 +0000 Received: from icp-osb-irony-out6.external.iinet.net.au ([203.59.1.106]) by bombadil.infradead.org with esmtp (Exim 4.85_2 #1 (Red Hat Linux)) id 1boKAF-0001rk-7E for linux-arm-kernel@lists.infradead.org; Mon, 26 Sep 2016 00:53:00 +0000 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2CGBgClcOhX/zXSMGdDGh0BBQELAYM7AQEBAQEeV3yjPQEBAQEBAQaTKIQTJIUwSgKBQEwBAgEBAQEBAl4nhGICBHkQGCcSVxmISg8tvUcBMIVtiTJ8ggALgmodBZl2j2qJe4VukGdUhRcsNAEBhSiCLgEBAQ X-IPAS-Result: A2CGBgClcOhX/zXSMGdDGh0BBQELAYM7AQEBAQEeV3yjPQEBAQEBAQaTKIQTJIUwSgKBQEwBAgEBAQEBAl4nhGICBHkQGCcSVxmISg8tvUcBMIVtiTJ8ggALgmodBZl2j2qJe4VukGdUhRcsNAEBhSiCLgEBAQ X-IronPort-AV: E=Sophos;i="5.30,396,1470672000"; d="scan'208";a="275841698" Received: from unknown (HELO goober.accelecon.com) ([103.48.210.53]) by icp-osb-irony-out6.iinet.net.au with ESMTP; 26 Sep 2016 08:52:35 +0800 From: Greg Ungerer To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 3/4] arm/versatile: empty Makefile.boot needed for no-MMU compile Date: Mon, 26 Sep 2016 10:52:29 +1000 Message-Id: <1474851150-12532-4-git-send-email-gerg@uclinux.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1474851150-12532-1-git-send-email-gerg@uclinux.org> References: <1474851150-12532-1-git-send-email-gerg@uclinux.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20160925_175259_529370_24582CF2 X-CRM114-Status: UNSURE ( 9.02 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Greg Ungerer MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP To compile the arm versatile board with the MMU disabled (!CONFIG_MMU) a Makefile.boot is required. Without it you get: SYSMAP System.map arch/arm/boot/Makefile:15: arch/arm/mach-versatile//Makefile.boot: No such file or directory make[2]: *** No rule to make target `arch/arm/mach-versatile//Makefile.boot'. Stop. Create an empty Makefile.boot for the versatile machine. This is a copy of the other empty machine Makefile.boot files. (A few have this same commented empty file: stm32, ep93xx, lpc18xx, efm32 and vexpress). Signed-off-by: Greg Ungerer --- arch/arm/mach-versatile/Makefile.boot | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 arch/arm/mach-versatile/Makefile.boot diff --git a/arch/arm/mach-versatile/Makefile.boot b/arch/arm/mach-versatile/Makefile.boot new file mode 100644 index 0000000..eacfc3f --- /dev/null +++ b/arch/arm/mach-versatile/Makefile.boot @@ -0,0 +1,3 @@ +# Empty file waiting for deletion once Makefile.boot isn't needed any more. +# Patch waits for application at +# http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7889/1 .