From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1MbL3x-0007mL-R6 for garchives@archives.gentoo.org; Wed, 12 Aug 2009 21:08:50 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EFFB5E03CD; Wed, 12 Aug 2009 21:08:46 +0000 (UTC) Received: from ey-out-1920.google.com (ey-out-1920.google.com [74.125.78.150]) by pigeon.gentoo.org (Postfix) with ESMTP id B2A5BE03CD for ; Wed, 12 Aug 2009 21:08:46 +0000 (UTC) Received: by ey-out-1920.google.com with SMTP id 5so105259eyb.10 for ; Wed, 12 Aug 2009 14:08:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:references:in-reply-to:mime-version:content-type :content-transfer-encoding:message-id; bh=3aiuOj6ZhGELf6PlgfV7vgO8wIqNlhDvuVuYYU6Krdc=; b=F1Ugmgo8BZu6xIkgDnxgE8AldGvDSuhUPtB2CamrHW+rEWAaboXkN3Jz8n/tbeqZSz C0YrzNqRGW1lvXiHnbx4XFJuaekSGhWdYjJ9BBX92pFozCQ1dgQTOjDKwIGojxFyY0Xv s9/qrm5SYp8aE1PtPD1mSLD1DbqMTHKNovhes= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=from:to:subject:date:user-agent:references:in-reply-to:mime-version :content-type:content-transfer-encoding:message-id; b=UbN2mN7WHirtnkd2UE4YE1iy1LTnnJ0fkW0DeIk7ELIHqZeWRvNPh6xmwhkvco9kGe TC2ciz1TqrarLlyQfj5Zltdi2cza/YQvpmqLuNKJ70tzlGmekGvtlqlFS2b5KcfKe0ly lwA7iXd96wHbIgXxiYccieODqX6oVhxSatkoM= Received: by 10.210.43.10 with SMTP id q10mr713292ebq.23.1250111326148; Wed, 12 Aug 2009 14:08:46 -0700 (PDT) Received: from energy.localnet (energy.heim10.tu-clausthal.de [139.174.197.94]) by mx.google.com with ESMTPS id 28sm1031662eyg.2.2009.08.12.14.08.45 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 12 Aug 2009 14:08:45 -0700 (PDT) From: Volker Armin Hemmann To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] Knock on wood Date: Wed, 12 Aug 2009 23:08:42 +0200 User-Agent: KMail/1.12.0 (Linux/2.6.30.4r4; KDE/4.3.0; x86_64; ; ) References: <7bef1f890908112213r5a7e08a4k7703ca14a9d9bcfb@mail.gmail.com> <2EFD06B3-C78E-40C8-B136-7692161B11F0@stellar.eclipse.co.uk> <4A832D0E.3070907@kutulu.org> In-Reply-To: <4A832D0E.3070907@kutulu.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200908122308.42284.volkerarmin@googlemail.com> X-Archives-Salt: c5ae99b1-2b83-4678-86a8-7725035c9136 X-Archives-Hash: e010c3457479707736137472c56c408a On Mittwoch 12 August 2009, Mike Edenfield wrote: > On 8/12/2009 4:19 PM, Stroller wrote: > > On 12 Aug 2009, at 15:20, Dale wrote: > >>> ... > >>> maske install does that for you, it also sets up the vmlinuz and > >>> vmlinuz.old symlinks so you don't need to mess with your GRUB config. > >> > >> But it doesn't do it the way that I do. I have used it a few times but > >> it didn't work like I do manually. > > > > +1 > > > > I don't know why anyone would choose to compile & install the kernel any > > way other than manually. It's only a handful of commands, after all. > > $ make && make modules_install > $ cp arch/x86/boot/bzImage /boot/vmlinuz-2.6.28-hardened-r1-wombat-4 > $ cp .config /boot/config-2.6.28-hardened-r1-wombat-4 > $ cp System.map /boot/System.map-2.6.28-hardened-r1-wombat-4 > $ cd /boot > $ mv vmlinuz vmlinuz.old > $ mv System.map System.map.old > $ mv config config.old > $ ln -sf vmlinuz-2.6.28-hardened-r1-wombat-4 vmlinuz > $ ln -sf config-2.6.28-hardened-r1-wombat-4 config > $ ln -sf System.map-2.6.28-hardened-r1-wombat-4 System.map > > vs. > > $ make && make modules_install && make install too much to type. make all modules_install install is much better.