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 9CC4F1382C5 for ; Thu, 21 May 2020 17:34:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B788BE0971; Thu, 21 May 2020 17:34:49 +0000 (UTC) Received: from rs234.mailgun.us (rs234.mailgun.us [209.61.151.234]) (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 C3502E0971 for ; Thu, 21 May 2020 17:34:46 +0000 (UTC) DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=0xdc.io; q=dns/txt; s=smtp; t=1590082489; h=Content-Transfer-Encoding: MIME-Version: Message-Id: Date: Subject: To: From: Sender; bh=KLq0r1+sjOkqguHbCH5lA7RsjcgOpg3dR1q2CEq/q7s=; b=dYJrEJT0wDuRlGxmnzjnGDssUXU04Qx3QLOhpyxiscuVD7Kn4RN1/3r5Xb2O0N+g0V8ki5zn vpZQPVWJRecSjsxkNgdCBOeyKTZu2vl/VLplJTShR52ysBk5t+CstRUzAIxME5kCYRayu8Zd Y7UevKZnnpMif6Mhsoz1ivJLCGI= X-Mailgun-Sending-Ip: 209.61.151.234 X-Mailgun-Sid: WyJiZmIxMyIsICJnZW50b28tY2F0YWx5c3RAbGlzdHMuZ2VudG9vLm9yZyIsICJmNjc0NGUiXQ== Received: from mail.0xdc.io (ip-54-37-0.eu [54.37.0.172]) by smtp-out-n01.prod.us-west-2.postgun.com with SMTP id 5ec6bbaf569a62550d5d1f5c (version=TLS1.3, cipher=TLS_AES_128_GCM_SHA256); Thu, 21 May 2020 17:34:39 GMT Sender: gentoo.catalyst=xxoo.ws@0xdc.io Received: from dysnomia (3.f.9.0.f.7.d.0.1.a.c.c.2.5.c.c.0.a.4.7.9.0.c.0.0.b.8.0.1.0.0.2.ip6.arpa [IPv6:2001:8b0:c09:74a0:cc52:cca1:d7f:9f3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.0xdc.io (Postfix) with ESMTPSA id 5B309102CE7 for ; Thu, 21 May 2020 17:40:17 +0000 (UTC) From: Daniel Cordero To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH 1/5] embedded: remove actions that are broken by default Date: Thu, 21 May 2020 17:32:44 +0000 Message-Id: <20200521173248.2297765-1-gentoo.catalyst@xxoo.ws> X-Mailer: git-send-email 2.26.2 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: 1983ad19-c065-4b5a-b719-e2056543359f X-Archives-Hash: 690ff0422bc1d273e3d001b599ff7dd1 From: Daniel Cordero dir_setup() doesn't exist, bootloader() exists but requires specific tools to be installed in the seed stage and doesn't check that they are, causing the build to fail. --- If I have misconstrued the purpose of bootloader, then documentation needs to be written. catalyst/targets/embedded.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/catalyst/targets/embedded.py b/catalyst/targets/embedded.py index aa23f5b3..1b4ad9d6 100644 --- a/catalyst/targets/embedded.py +++ b/catalyst/targets/embedded.py @@ -41,7 +41,6 @@ class embedded(StageBase): def set_action_sequence(self): self.settings['action_sequence'] = [ - "dir_setup", "unpack", "config_profile_link", "setup_confdir", @@ -51,7 +50,6 @@ class embedded(StageBase): "setup_environment", "build_kernel", "build_packages", - "bootloader", "root_overlay", "fsscript", "unmerge", -- 2.26.2