From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D3B191387B1 for ; Fri, 20 Dec 2013 03:13:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9C8CE0A90; Fri, 20 Dec 2013 03:13:45 +0000 (UTC) Received: from qmta07.westchester.pa.mail.comcast.net (qmta07.westchester.pa.mail.comcast.net [76.96.62.64]) by pigeon.gentoo.org (Postfix) with ESMTP id 3816EE0A90 for ; Fri, 20 Dec 2013 03:13:44 +0000 (UTC) Received: from omta01.westchester.pa.mail.comcast.net ([76.96.62.11]) by qmta07.westchester.pa.mail.comcast.net with comcast id 3bKh1n0010EZKEL57fDk2r; Fri, 20 Dec 2013 03:13:44 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta01.westchester.pa.mail.comcast.net with comcast id 3fDj1n008152l3L3MfDjSE; Fri, 20 Dec 2013 03:13:44 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id 74F92D9BFEE; Thu, 19 Dec 2013 19:13:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387509222; bh=NV3mI3z6a7zcw/zOKlkAfduhRpJHmwh1WEHIyNCg6fc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=DG4Cih+/OBmT4AVa5EU71xegTAOCs7nvc1WsHRMOZPOj1z9OMAplEkY815fJiB/PP GpK9xowbWHHNACxB9U8uqUO12Q+uhbuod3aUF0To9k9kMahuW3aPGy6dUZJILzybEY EkDs4L2bDccF6prHBYiyYpZ8J61yHXPhvcNa6Jp0= From: "W. Trevor King" To: Catalyst Cc: "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v2] doc/HOWTO.txt: Fix stage descriptions Date: Thu, 19 Dec 2013 19:13:40 -0800 Message-Id: <949fa958e75793892ed08e1cd75c805f25861ab4.1387509300.git.wking@tremily.us> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <52B3B0CF.2030404@gentoo.org> References: <52B3B0CF.2030404@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1387509224; bh=zQbZAJO7dPS2jPlg0KKr3GH24trOJDVGM7IRTxP7lLM=; h=Received:Received:Received:From:To:Subject:Date:Message-Id: MIME-Version:Content-Type; b=qbbYAHHyG4DPMomL8B5NrxmvIz2HohSIt6hFOs0CUAi8eywku1Bb1oxvoEL1EpQN/ 2htN/LBpQepZSBSUNT4Weo6yJ58yfe77FjEKsMmyKcQfyaEIXpjM5pN41r0jS4xoBN reAw0JF260qh9ERtgKrvc8Vj03GQWyQtnrRdAWperQyth6n2WtKo7wkixVgKOdHWz3 YNsEgAqBDaQU948E7y/9MUDmMRjSoM55gFk0SGvNMKLWhRo4uFxRxlax/dH/67G4Bs IQJlC76mewX/G3A5WCJ9973JNr7i3sxnd5JKwUijtkWS+WJn7U3YtJ2kzoc3kJQoqV TLFex2G6XRWUw== X-Archives-Salt: 9a35eef6-94e4-4187-8fb9-710d3f5c0122 X-Archives-Hash: c9710079d00fb8c0d077dc4ffc42bbdf From: "W. Trevor King" Thanks to Zero_Chaos and dwfreed for clarification on #gentoo-releng. --- doc/HOWTO.txt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/HOWTO.txt b/doc/HOWTO.txt index 5717f80..6b0fdf2 100644 --- a/doc/HOWTO.txt +++ b/doc/HOWTO.txt @@ -136,11 +136,14 @@ compiled toolchain, which is where Gentoo's stages come in. The “base system” contains the necessary build tools and supporting infrastructure to get things going. The stages are: -1. System must be bootstrapped and the base system must be compiled - (a new toolchain built with external seed tools). -2. Stage1 + bootstrapped (a new toolchain build with stage1 tools). -3. Stage2 + base system compiled (the base system built with stage2 tools). -4. Stage3 + non-base packages. +[options="header",frame="topbot",grid="none"] +|============================================================================ +| Source | Action | Result +| seed stage3 | Bootstrap a profile's `packages.build` toolchain | stage1 +| stage1 | Bootstrap Portage with Portage's `bootstrap.sh` | stage2 +| stage2 | Compile the base `@system` packages | stage3 +| stage3 | Compile additional `@world` packages | stage4 +|============================================================================ For more details on the differences between the stages, look at the target helper scripts (e.g. `targets/stage1/*.sh`). -- 1.8.4