From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E18D01382C5 for ; Mon, 18 Jan 2021 20:22:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21173E081A; Mon, 18 Jan 2021 20:22:02 +0000 (UTC) Received: from mail-qk1-f169.google.com (mail-qk1-f169.google.com [209.85.222.169]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19B6EE081A for ; Mon, 18 Jan 2021 20:22:02 +0000 (UTC) Received: by mail-qk1-f169.google.com with SMTP id c7so19880096qke.1 for ; Mon, 18 Jan 2021 12:22:02 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=CaswQxIFWwReR9pmFzfxJU98xne6wDePJGYMXvPsIkM=; b=NDfvvEozvnWxWNgL5qQTOuY3m/fypghZaX4vddOWScmKiykSXZb7ZkIu9cy6Eo3gtP kJxdu7nB31hcdnMbmyuT4ZZ2dwiBw0hizlFkMtSZWiz8spyz6FNl8l5TeofgvDj/XGgO PcTo7v1N04R0376N8Ml4Y9XHJz5elCV+7/FuBib305nkHETgzRbd4Va8tYyYS9r8dlT6 ManDs7wlOhO+Ntfkxr0pHlXfko8hKQ6HiApoPM9beW1stFrFQOzUv3kAZ0JPDrBbsYct T0VXIjfLH1iFbYOx/nPhbmRxZhQJYpyORemlgOxPcN4pT3jg0ALFZFFQVID5iHSmpF/K Yo2g== X-Gm-Message-State: AOAM5339poMicrTvg0vESsT0gG81jiz0xWFqjqmQTFIH88aw4ZuFRqVd GZkIf9gl5GjhE9gGZMwIHkVVnT58hds= X-Google-Smtp-Source: ABdhPJwO1a0pIuUassQ8doiEKS2GcSV+zons0xt1egpysgfGROKjeH8Knid0RVKYMOT1GBPaa+PgMw== X-Received: by 2002:a05:620a:6c3:: with SMTP id 3mr1316633qky.43.1611001321088; Mon, 18 Jan 2021 12:22:01 -0800 (PST) Received: from localhost ([208.104.103.123]) by smtp.gmail.com with ESMTPSA id s186sm11216265qka.98.2021.01.18.12.22.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 18 Jan 2021 12:22:00 -0800 (PST) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 03/11] targets: Update seed stage's sys-apps/portage Date: Mon, 18 Jan 2021 15:21:44 -0500 Message-Id: <20210118202152.374078-3-mattst88@gentoo.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20210118202152.374078-1-mattst88@gentoo.org> References: <20210118202152.374078-1-mattst88@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 X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: f47edd62-f548-40c3-873a-929ad5240425 X-Archives-Hash: 2c25c5175dea9ba13aa9f6c19e03c847 We'll want to use some new features that have been added specifically for catalyst. It's probably a good idea to use the latest stable portage anyway. Signed-off-by: Matt Turner --- targets/stage1/chroot.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/targets/stage1/chroot.sh b/targets/stage1/chroot.sh index 50afef4a..1085641e 100755 --- a/targets/stage1/chroot.sh +++ b/targets/stage1/chroot.sh @@ -32,6 +32,9 @@ FEATURES="${FEATURES} nodoc noman noinfo" if [ -n "${clst_update_seed}" ]; then if [ "${clst_update_seed}" == "yes" ]; then echo "Updating seed stage..." + + ROOT=/ USE=-rsync-verify run_merge --oneshot --update sys-apps/portage + if [ -n "${clst_update_seed_command}" ]; then ROOT=/ run_merge --buildpkg=n "${clst_update_seed_command}" else -- 2.26.2