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 C8A411382C5 for ; Fri, 5 Jun 2020 21:13:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAB78E08A4; Fri, 5 Jun 2020 21:13:57 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C6196E08A4 for ; Fri, 5 Jun 2020 21:13:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C761F34EF18 for ; Fri, 5 Jun 2020 21:13:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7FCD3232 for ; Fri, 5 Jun 2020 21:13:51 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1591390944.bb83032e1c2c299aca7a82ea765adaa1c44d6707.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/targets/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/targets/embedded.py X-VCS-Directories: catalyst/targets/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: bb83032e1c2c299aca7a82ea765adaa1c44d6707 X-VCS-Branch: master Date: Fri, 5 Jun 2020 21:13:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 057c76c2-4f40-48a2-ac49-0eda18ecd90b X-Archives-Hash: 5d4dab733686ad07fd9e84321f43200f commit: bb83032e1c2c299aca7a82ea765adaa1c44d6707 Author: Daniel Cordero 0xdc io> AuthorDate: Thu May 21 17:32:44 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Jun 5 21:02:24 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=bb83032e embedded: remove dir_setup action dir_setup() hasn't existed since 2005. Fixes: 1dafb5fa06d2 (Add locking support. ...) Signed-off-by: Matt Turner gentoo.org> 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",