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=-5.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham 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 0720AC4CEC9 for ; Wed, 18 Sep 2019 13:39:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C7113208C0 for ; Wed, 18 Sep 2019 13:39:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568813964; bh=Jo2Q3eLwLLOVPAG7qagoTwLMte9kxxS4Rgq7e1yQwqM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=I9UYQlurbQWLw/mKYtwDN+3y1fbisCXTP1ugEUNJoFOlq+w0ux5RqvonmNq9dyfSR 78HyHr9xqDmP+/YKoidA5e+MUFbFoeI7lJgcaG9o73MdtZFtfl61f4VTw7YF5u0+Al wRByl3i+aciCqo0TruAgc/EyXeL4bl16WfM99QV4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730730AbfIRNjV (ORCPT ); Wed, 18 Sep 2019 09:39:21 -0400 Received: from mail.kernel.org ([198.145.29.99]:48796 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730308AbfIRNjU (ORCPT ); Wed, 18 Sep 2019 09:39:20 -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 A394721927; Wed, 18 Sep 2019 13:39:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568813960; bh=Jo2Q3eLwLLOVPAG7qagoTwLMte9kxxS4Rgq7e1yQwqM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MXGavJj5LJor5X9x8pyJlovjnDv4m8q0CeOQ+UW58h3r3F308FQHGOMbHRi4AMOiM dxi+uriEuVnmz4bWe77ShOgzd5MzmjIlP+B+T5+eGyRithFDtHJQHj0nCqYIDGcM9e kT7HjeaohCtcrjVng+W22QHmiMAvmD+Pw1xW55WM= Date: Wed, 18 Sep 2019 15:39:17 +0200 From: Greg Kroah-Hartman To: Guenter Roeck Cc: stable@vger.kernel.org, Alexey Brodkin , Alexey Brodkin , Kevin Hilman , Vineet Gupta Subject: Re: [PATCH v4.4] ARC: configs: Remove CONFIG_INITRAMFS_SOURCE from defconfigs Message-ID: <20190918133917.GE1908968@kroah.com> References: <20190918133423.17639-1-linux@roeck-us.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190918133423.17639-1-linux@roeck-us.net> User-Agent: Mutt/1.12.1 (2019-06-15) Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org On Wed, Sep 18, 2019 at 06:34:23AM -0700, Guenter Roeck wrote: > From: Alexey Brodkin > > commit 64234961c145606b36eaa82c47b11be842b21049 upstream. > > We used to have pre-set CONFIG_INITRAMFS_SOURCE with local path > to intramfs in ARC defconfigs. This was quite convenient for > in-house development but not that convenient for newcomers > who obviusly don't have folders like "arc_initramfs" next to > the Linux source tree. Which leads to quite surprising failure > of defconfig building: > ------------------------------->8----------------------------- > ../scripts/gen_initramfs_list.sh: Cannot open '../../arc_initramfs_hs/' > ../usr/Makefile:57: recipe for target 'usr/initramfs_data.cpio.gz' failed > make[2]: *** [usr/initramfs_data.cpio.gz] Error 1 > ------------------------------->8----------------------------- > > So now when more and more people start to deal with our defconfigs > let's make their life easier with removal of CONFIG_INITRAMFS_SOURCE. > > Signed-off-by: Alexey Brodkin > Cc: Kevin Hilman > Cc: stable@vger.kernel.org > > Signed-off-by: Alexey Brodkin > Signed-off-by: Vineet Gupta > [backport: Fix context conflicts, drop non-existing configuration files] > Signed-off-by: Guenter Roeck > --- > This patch fixes various build errors observed at kernelci. Now queued up, thanks! greg k-h