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 739CA138247 for ; Fri, 20 Dec 2013 04:18:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BA9BE0B76; Fri, 20 Dec 2013 04:17:58 +0000 (UTC) Received: from qmta03.westchester.pa.mail.comcast.net (qmta03.westchester.pa.mail.comcast.net [76.96.62.32]) by pigeon.gentoo.org (Postfix) with ESMTP id CC9A2E0B76 for ; Fri, 20 Dec 2013 04:17:57 +0000 (UTC) Received: from omta20.westchester.pa.mail.comcast.net ([76.96.62.71]) by qmta03.westchester.pa.mail.comcast.net with comcast id 3gE31n0011YDfWL53gHxEK; Fri, 20 Dec 2013 04:17:57 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta20.westchester.pa.mail.comcast.net with comcast id 3gHv1n00f152l3L3ggHwak; Fri, 20 Dec 2013 04:17:57 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id 80BB4D9C53F; Thu, 19 Dec 2013 20:17:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387513075; bh=UtcDbaw1JjVxJOqg1fW73F2QGm7W5Rn/vwtMSxCNstI=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=fDCnsOQ0YYqrI7H0Cmi0eE20en4plJLLC/l9/HZ578QNOXwn3DluyimnK4b5x6Ac4 kZNKPUPZ50u0qb/PGkO2hFJkpzICpPbkOI7WCUXw3JrnHmnQQmPMfM/6RFliOe6QRB /UYUyPKo1PXjS3NGaoAlUHCtFzUb0CyInOSksVDE= From: "W. Trevor King" To: Catalyst Cc: "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v3] doc/HOWTO.txt: Fix stage descriptions Date: Thu, 19 Dec 2013 20:17:54 -0800 Message-Id: <3614940041744d107ceff3e460e8549204c9b498.1387512969.git.wking@tremily.us> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <949fa958e75793892ed08e1cd75c805f25861ab4.1387509300.git.wking@tremily.us> References: <949fa958e75793892ed08e1cd75c805f25861ab4.1387509300.git.wking@tremily.us> 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=1387513077; bh=M7vLn1D+FG3gNwaHICn8QGQata46LT43GgyGlbPOJZY=; h=Received:Received:Received:From:To:Subject:Date:Message-Id: MIME-Version:Content-Type; b=pz6xIgO9wRLGTusbIiJ0EsmQnno6DAQmNVIuziUKd2zbMP0sBSykbGTAiBAKxM//r ISworTA7zQeufAbcnsDl8lSR8wd7758WDrDS1D82tvqH3FyjHsZd5hxCwGtAcQtkkM DbyLoYBOr8ae/2l/EqbU9L79zmgD4PLjhP3TsfIfFfz9eEwv4OT3YtG0dwTcy4YkUs IU9bzzFRfbnqGew2WqwbphoAKaAqaSRuVZTUDanyM8otyiGSR9HoAxxsVZ7x5Qj4HO ULQLLe1qRrNBwfDZxvpZMkY8cMqihtasyerTsmGko1gTaD3OflLmoatqFS2nFbwFEj +PoQ9rzdCsfYg== X-Archives-Salt: 5e87680a-f736-4423-bea6-25fc6323d559 X-Archives-Hash: 765f88f0a976221f7a27ec43c1c7bd2c From: "W. Trevor King" Thanks to Zero_Chaos and dwfreed for clarification on #gentoo-releng. --- Changes from v2: * Don't mention "Portage" in stage1 → stage2 to avoid confusion between Porage-the-software and Portage-the-ebuild-tree. doc/HOWTO.txt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/HOWTO.txt b/doc/HOWTO.txt index 5717f80..20427cf 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 | Rebuild the toolchain with the package tree'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