From patchwork Fri Jun 10 03:14:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Arnaud Lacombe X-Patchwork-Id: 867772 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p5A3Ecqx024192 for ; Fri, 10 Jun 2011 03:14:38 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752650Ab1FJDOQ (ORCPT ); Thu, 9 Jun 2011 23:14:16 -0400 Received: from mail-px0-f179.google.com ([209.85.212.179]:36458 "EHLO mail-px0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752547Ab1FJDON convert rfc822-to-8bit (ORCPT ); Thu, 9 Jun 2011 23:14:13 -0400 Received: by pxi2 with SMTP id 2so1416882pxi.10 for ; Thu, 09 Jun 2011 20:14:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=qSMnZlAy5uRhFA3NLNQRbnQK80aaYcgbmxoc8phx99c=; b=B5FBNoCRJzBRBFLy/F6f5KcP+rr99WOE1L2j6mf4Qq8A83W8+ZlMrDkNRaonwhw86V WQUzkXIP5jaAdJ2VViDPTLh5aPYOTpQqQncDbkHMIdu6nwLIXMEJYCSpmfXte6+X6XN8 f43R84/UE/26dRs+W1dOA6fFsdoWV7sKGjv0A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=ahcDMoiD6By15kgPSvngVsCD0i9JhFFFdHNv9zFrwWvORBAnEfyy6GUJqzcYxBbcBs 3t9XBAGwespBp0QFkR+z8ZF1uDNYLtxDDCu8DbD7j5Hw5rMKLsb0yRaM7sTV0I7xRBp4 O+MTx1uH1vw0ALmhPmWtlnkfGTDGpqIcHX6gM= MIME-Version: 1.0 Received: by 10.68.51.201 with SMTP id m9mr739174pbo.135.1307675653124; Thu, 09 Jun 2011 20:14:13 -0700 (PDT) Received: by 10.68.52.164 with HTTP; Thu, 9 Jun 2011 20:14:13 -0700 (PDT) In-Reply-To: References: <20110609214241.GA4849@sepie.suse.cz> Date: Thu, 9 Jun 2011 23:14:13 -0400 Message-ID: Subject: Re: [GIT] kbuild fixes for 3.0 From: Arnaud Lacombe To: Linus Torvalds Cc: Michal Marek , pefoley2@verizon.net, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Fri, 10 Jun 2011 03:15:18 +0000 (UTC) Hi, On Thu, Jun 9, 2011 at 8:10 PM, Linus Torvalds wrote: > On Thu, Jun 9, 2011 at 2:42 PM, Michal Marek wrote: >> >>      kbuild: Hack for depmod not handling X.Y versions > > This doesn't seem to be enough, I still get (on F-14): > >  sh /home/torvalds/v2.6/linux/arch/x86/boot/install.sh > 3.0-rc2-00251-g7f45e5cd1718-dirty arch/x86/boot/bzImage \ >        System.map "/boot" >  WARNING: Couldn't open directory > /tmp/initramfs.Z9p0zm/lib/modules/3.0.0-rc2-00191-g4c1f683a4a34-dirty: > No such file or directory >  FATAL: Could not open > /tmp/initramfs.Z9p0zm/lib/modules/3.0.0-rc2-00191-g4c1f683a4a34-dirty/modules.dep.temp > for writing: No such file or directory >  E: "depmod -a 3.0-rc2-00251-g7f45e5cd1718-dirty" failed. > > from "make install" when I try to remove the SUBLEVEL. > > As a result, the initrd is unusable, and has no modules in it. > any chance to share your .config ? x86-64's defconfig, plus Michal branch merged on top of the tip of your tree, plus the following patch removing the SUBLEVEL: install is fine for me. What bugs me is that "git grep '\.temp'" in that tree does not return anything relevant. Thanks, - Arnaud --- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/Makefile b/Makefile index 72c0e32..5c75864 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 0 -SUBLEVEL = 0 +SUBLEVEL = EXTRAVERSION = -rc2 NAME = Sneaky Weasel