From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.0 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,T_DKIMWL_WL_HIGH,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 54DCDC468BE for ; Sun, 9 Jun 2019 17:19:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 24BDA20652 for ; Sun, 9 Jun 2019 17:19:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560100780; bh=RraCkwXdzglEq/7vdS33A/72ye87OZQO/agCNTF+Lok=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=RUh77qPPyQC/Ni6AR+tnX5WOYA+4dAxToa1J7Xu6LMOQqLGLNoQ4aAifw6sSBClGk xe+w5NNf91LNxtcmU3Msk9cpQ+rTdbkuZ+b3hWqCvJO4H1iSnIK1Vw0Q7QfCFyjaBd xfHAJjD+jqIShD5EvVrr+QCRf6vQjxvn7yoCajAk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731241AbfFIQsh (ORCPT ); Sun, 9 Jun 2019 12:48:37 -0400 Received: from mail.kernel.org ([198.145.29.99]:47710 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731232AbfFIQsf (ORCPT ); Sun, 9 Jun 2019 12:48:35 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 28246205ED; Sun, 9 Jun 2019 16:48:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1560098914; bh=RraCkwXdzglEq/7vdS33A/72ye87OZQO/agCNTF+Lok=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ccsxcei6/nm0gUVfv/9l3kkUGB9aZwrhP7XKlFfm8XgYrCkziI0I7wGPV2/h5eeV4 7NyZVox0MW0h/Qz5gsTxHcuNIs22MAGZMZpFytd4keIRDqMx4AYUf5SF/xw697Wv/z uVM9L3l55QWhfKWeS51FryLywk6V6ypXS1oKNASo= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Paul Burton , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Kevin Hilman , linux-mips@vger.kernel.org Subject: [PATCH 4.19 33/51] MIPS: pistachio: Build uImage.gz by default Date: Sun, 9 Jun 2019 18:42:14 +0200 Message-Id: <20190609164129.245033949@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190609164127.123076536@linuxfoundation.org> References: <20190609164127.123076536@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Paul Burton commit e4f2d1af7163becb181419af9dece9206001e0a6 upstream. The pistachio platform uses the U-Boot bootloader & generally boots a kernel in the uImage format. As such it's useful to build one when building the kernel, but to do so currently requires the user to manually specify a uImage target on the make command line. Make uImage.gz the pistachio platform's default build target, so that the default is to build a kernel image that we can actually boot on a board such as the MIPS Creator Ci40. Marked for stable backport as far as v4.1 where pistachio support was introduced. This is primarily useful for CI systems such as kernelci.org which will benefit from us building a suitable image which can then be booted as part of automated testing, extending our test coverage to the affected stable branches. Signed-off-by: Paul Burton Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Kevin Hilman Tested-by: Kevin Hilman URL: https://groups.io/g/kernelci/message/388 Cc: stable@vger.kernel.org # v4.1+ Cc: linux-mips@vger.kernel.org Signed-off-by: Greg Kroah-Hartman --- arch/mips/pistachio/Platform | 1 + 1 file changed, 1 insertion(+) --- a/arch/mips/pistachio/Platform +++ b/arch/mips/pistachio/Platform @@ -6,3 +6,4 @@ cflags-$(CONFIG_MACH_PISTACHIO) += \ -I$(srctree)/arch/mips/include/asm/mach-pistachio load-$(CONFIG_MACH_PISTACHIO) += 0xffffffff80400000 zload-$(CONFIG_MACH_PISTACHIO) += 0xffffffff81000000 +all-$(CONFIG_MACH_PISTACHIO) := uImage.gz